|
@@ -8,17 +8,21 @@ This git project contains everything required to start labkey as a docker contai
|
|
|
|
|
|
- Install [`docker`][docker] and [`docker-compose`][dockerCompose]
|
|
|
- create a user `labkey` with `docker` privileges
|
|
|
+
|
|
|
```bash
|
|
|
sudo adduser labkey
|
|
|
sudo -G docker labkey
|
|
|
```
|
|
|
+
|
|
|
- clone the software directly into home
|
|
|
+
|
|
|
```bash
|
|
|
sudo su labkey
|
|
|
git init .
|
|
|
git remote add origin <repository-url>
|
|
|
git pull origin master
|
|
|
```
|
|
|
+
|
|
|
- run `bin/installLabkey.sh 22.3` to unzip the enclosed LabKey binary code and make appropriate links.
|
|
|
- copy `bin/env.sh.sample` to `bin/env.sh` and set a secret `$PGPASS`, other settings are probably OK,
|
|
|
check `$DOCKERCOMPOSE`
|