Skip to content

Commit

Permalink
[ENH] Add COMPOSE_PROJECT_NAME to template.env (#48)
Browse files Browse the repository at this point in the history
* Add COMPOSE_PROJECT_NAME to template.env

Co-authored-by: Sebastian Urchs <[email protected]>

---------

Co-authored-by: Sebastian Urchs <[email protected]>
  • Loading branch information
alyssadai and surchs authored Apr 23, 2024
1 parent 7bc5311 commit 29dcca7
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions template.env
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@
# Tip: To verify your changes to the .env have taken effect, run the command: docker compose config
# For more information on each environment variable, see the Neurobagel documentation.

# ---- PROJECT NAME ----
# Controls the base name of the docker compose services when launched.
# Replace neurobagel_node with an informative name based on your data and/or deployment profile
# This is optional but will be used to group together your Neurobagel Docker containers in the list of running containers (i.e., `docker ps`),
# making them easier to identify if you need to run multiple Neurobagel service stacks on different ports.
#
# e.g., If you wish to deploy the local_node profile to set up a local Neurobagel node for the ABIDE database,
# and the local_federation profile to also set up local federation,
# you could set COMPOSE_PROJECT_NAME=abide and COMPOSE_PROJECT_NAME=federation, respectively, in the .env file for each recipe.
#
# Note: Must not include any spaces or uppercase letters.
COMPOSE_PROJECT_NAME=neurobagel_node

# ---- CONFIGURATION FOR graph ----
# Replace ADMINPASSWORD with the secure password you want to set for the admin user
NB_GRAPH_ADMIN_PASSWORD=ADMINPASSWORD
Expand Down

0 comments on commit 29dcca7

Please sign in to comment.