Skip to content
Snippets Groups Projects
Commit 5d063f27 authored by Loraine Gueguen's avatar Loraine Gueguen
Browse files

Add GALAXY_DEFAULT_ADMIN_KEY to galaxy service env variable

parent f2a6dd10
No related branches found
No related tags found
2 merge requests!24Run wf,!18Release v2.1.0
This commit is part of merge request !18. Comments created here will be created in the context of that merge request.
...@@ -39,6 +39,7 @@ CONF_ALL_AUTHELIA_DB_POSTGRES_PASSWORD = "authelia_db_postgres_password" ...@@ -39,6 +39,7 @@ CONF_ALL_AUTHELIA_DB_POSTGRES_PASSWORD = "authelia_db_postgres_password"
CONF_GALAXY_DEFAULT_ADMIN_EMAIL = "galaxy_default_admin_email" CONF_GALAXY_DEFAULT_ADMIN_EMAIL = "galaxy_default_admin_email"
CONF_GALAXY_DEFAULT_ADMIN_USER = "galaxy_default_admin_user" CONF_GALAXY_DEFAULT_ADMIN_USER = "galaxy_default_admin_user"
CONF_GALAXY_DEFAULT_ADMIN_PASSWORD = "galaxy_default_admin_password" CONF_GALAXY_DEFAULT_ADMIN_PASSWORD = "galaxy_default_admin_password"
CONF_GALAXY_DEFAULT_ADMIN_KEY = "galaxy_default_admin_key"
CONF_GALAXY_CONFIG_REMOTE_USER_MAILDOMAIN = "galaxy_config_remote_user_maildomain" CONF_GALAXY_CONFIG_REMOTE_USER_MAILDOMAIN = "galaxy_config_remote_user_maildomain"
CONF_GALAXY_PERSIST_DATA = "galaxy_persist_data" CONF_GALAXY_PERSIST_DATA = "galaxy_persist_data"
CONF_TRIPAL_PASSWORD = "tripal_password" CONF_TRIPAL_PASSWORD = "tripal_password"
......
...@@ -14,6 +14,7 @@ authelia_db_postgres_password: psqlpwd # Required for Authelia. ...@@ -14,6 +14,7 @@ authelia_db_postgres_password: psqlpwd # Required for Authelia.
galaxy_default_admin_email: gga@galaxy.org # Required galaxy_default_admin_email: gga@galaxy.org # Required
galaxy_default_admin_user: gga # Required galaxy_default_admin_user: gga # Required
galaxy_default_admin_password: password # Required galaxy_default_admin_password: password # Required
galaxy_default_admin_key: myfakekey # Required
galaxy_config_remote_user_maildomain: mydomain.com # Required. The maildomain used by Galaxy authentication galaxy_config_remote_user_maildomain: mydomain.com # Required. The maildomain used by Galaxy authentication
galaxy_persist_data: "True" # Optional (default: True). If False, docker data will NOT be persisted on your host's file system and will be lost any time the galaxy container is recreated. Do not set this variable to "False" for production galaxy_persist_data: "True" # Optional (default: True). If False, docker data will NOT be persisted on your host's file system and will be lost any time the galaxy container is recreated. Do not set this variable to "False" for production
......
...@@ -143,6 +143,7 @@ services: ...@@ -143,6 +143,7 @@ services:
GALAXY_DEFAULT_ADMIN_EMAIL: "{{ galaxy_default_admin_email }}" GALAXY_DEFAULT_ADMIN_EMAIL: "{{ galaxy_default_admin_email }}"
GALAXY_DEFAULT_ADMIN_USER: "{{ galaxy_default_admin_user }}" GALAXY_DEFAULT_ADMIN_USER: "{{ galaxy_default_admin_user }}"
GALAXY_DEFAULT_ADMIN_PASSWORD: "{{ galaxy_default_admin_password }}" GALAXY_DEFAULT_ADMIN_PASSWORD: "{{ galaxy_default_admin_password }}"
GALAXY_DEFAULT_ADMIN_KEY: "{{ galaxy_default_admin_key }}"
GALAXY_CONFIG_ADMIN_USERS: "admin@galaxy.org,{{ galaxy_default_admin_email }}" # admin@galaxy.org is the default (leave it), galaxy_default_admin_email is a shared ldap user we use to connect GALAXY_CONFIG_ADMIN_USERS: "admin@galaxy.org,{{ galaxy_default_admin_email }}" # admin@galaxy.org is the default (leave it), galaxy_default_admin_email is a shared ldap user we use to connect
ENABLE_FIX_PERMS: 0 ENABLE_FIX_PERMS: 0
PROXY_PREFIX: /sp/{{ genus_species }}/galaxy PROXY_PREFIX: /sp/{{ genus_species }}/galaxy
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment