-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.env
25 lines (25 loc) · 1.33 KB
/
common.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Docker compose variables common for a given deployment (e.g. organization).
# Put instance-specific variables into hosts/<host-name>/site.env
#
# Note that you can put env variables for Docker compose here,
# but they cannot be interpreted when defining other variables
# in the docker-compose.yaml. For variable interpolation, the variables must
# come from the shell. In our setup, you should put them into shell.env,
# and call ./docker_deploy.sh script that will source that file before
# calling docker stack deploy. Remember that shell envars:
# - are not passed into the container unless used in envar sections of compose file w/o value
# - must have string literals quoted when necessary, while compose vars treat quotes literally
GALAXY_CONFIG_SMTP_SERVER=localhost
GALAXY_DEFAULT_ADMIN_USER=admin_ge
GALAXY_CONFIG_BRAND=NGS-MSTB
# Set to True for GCP
GALAXY_CONFIG_REQUIRE_LOGIN=False
GALAXY_CONFIG_SHOW_WELCOME_WITH_LOGIN=True
GALAXY_CONFIG_SESSION_DURATION=15
GALAXY_CONFIG_NEW_USER_DATASET_ACCESS_ROLE_DEFAULT_PRIVATE=True
# For GCP, you are supposed to use external user management through
# LDAP in auth_conf.xml, and set this variable to False
GALAXY_CONFIG_ALLOW_USER_CREATION=True