You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/dev-osx-install.md
+12-3
Original file line number
Diff line number
Diff line change
@@ -427,12 +427,21 @@ Note: Augur will run on port 5000 by default (you probably need to change that i
427
427
## Stopping your Augur Instance
428
428
You can stop augur with `augur backend stop`, followed by `augur backend kill`. We recommend waiting 5 minutes between commands so Augur can shutdown more gently. There is no issue with data integrity if you issue them seconds apart, its just that stopping is nicer than killing.
429
429
430
-
###Docker
430
+
## Docker
431
431
1. Make sure docker, and docker compose are both installed
432
432
2. Modify the `environment.txt` file in the root of the repository to include your GitHub and GitLab API keys.
433
433
3. If you are already running postgresql on your server you have two choices:
434
434
- Change the port mappings in the `docker-compose.yml` file to match ports for Postgresql not currently in use.
435
-
- Change to variables in `environment.txt` to include the correct values for your local, non-docker-container database.
435
+
- Change the variables in `environment.txt` to include the correct values for your local, non-docker-container database.
_Note: `AUGUR\_DB` and `RABBIT\_*` variables are optional when using the default docker-comopse.yml. `docker-compose-externalDB` does require `AUGUR\_DB` set to a postgresql installation._
Copy file name to clipboardExpand all lines: docs/new-install.md
+5-13
Original file line number
Diff line number
Diff line change
@@ -370,24 +370,16 @@ Note: Augur will run on port 5000 by default (you probably need to change that i
370
370
## Stopping your Augur Instance
371
371
You can stop augur with `augur backend stop`, followed by `augur backend kill`. We recommend waiting 5 minutes between commands so Augur can shutdown more gently. There is no issue with data integrity if you issue them seconds apart, its just that stopping is nicer than killing.
372
372
373
-
###Docker
373
+
## Docker
374
374
*Note: `sudo` is not necessary on OSX or Windows
375
375
376
376
1. Make sure docker, and docker compose are both installed
377
377
2. Modify the `environment.txt` file in the root of the repository to include your GitHub and GitLab API keys.
378
378
3. If you are already running postgresql on your server you have two choices:
379
379
- Change the port mappings in the `docker-compose.yml` file to match ports for Postgresql not currently in use.
380
-
- Change to variables in `environment.txt` to include the correct values for your local, non-docker-container database.
5.`sudo docker compose --env-file ./environment.txt --file docker-compose.yml up` to run the database in a Docker Container or
383
-
`sudo docker compose --env-file ./environment.txt --file docker-compose.yml up` to connect to an already running database. *Note*: Environment file would be modified to point to an already running database.
383
+
`sudo docker compose --env-file ./environment.txt --file docker-compose-externalDB.yml up` to connect to an already running database. *Note*: Environment file would be modified to point to an already running database.
_Note: `AUGUR\_DB` and `RABBIT\_*` variables are optional when using the default docker-comopse.yml. `docker-compose-externalDB` does require `AUGUR\_DB` set to a postgresql installation._
385
+
_Note: `AUGUR\_DB` and `RABBIT\_*` variables are optional when using the default docker-comopse.yml. `docker-compose-externalDB` does require `AUGUR\_DB` set to a postgresql installation._
0 commit comments