mirror of
https://github.com/taigaio/taiga-docker.git
synced 2025-07-28 16:34:13 +02:00
Env vars in docker
This commit is contained in:
parent
1ae321e530
commit
bc50ddcb99
12
README.md
12
README.md
@ -45,6 +45,13 @@ Is the secret key of Taiga. Should be the same as this var in `taiga-events` and
|
||||
|
||||
Should have the url where this is served: https[://]taiga.mycompany.com
|
||||
|
||||
#### Registration Settings
|
||||
|
||||
##### `PUBLIC_REGISTER_ENABLED`
|
||||
|
||||
If you want to allow a public register, configure this variable to "True". By default is "False".
|
||||
Should be the same as this var in `taiga-front`.
|
||||
|
||||
#### Telemetry Settings
|
||||
|
||||
Telemetry anonymous data is collected in order to learn about the use of Taiga and improve the platform based on real scenarios.
|
||||
@ -114,6 +121,11 @@ Where this Taiga instance should be served. It should be the same as `TAIGA_SITE
|
||||
|
||||
To connect to the events. This should have the same value as `TAIGA_SITES_DOMAIN`, ie: ws://taiga.mycompany.com
|
||||
|
||||
##### `PUBLIC_REGISTER_ENABLED`
|
||||
|
||||
If you want to allow a public register, configure this variable to "true". By default is "false".
|
||||
Should be the same as this var in `taiga-back`.
|
||||
|
||||
##### `GITHUB_CLIENT_ID`
|
||||
|
||||
Used for login with Github.
|
||||
|
@ -20,6 +20,8 @@ x-environment:
|
||||
# EMAIL_PORT: 587
|
||||
# EMAIL_HOST_USER: "user"
|
||||
# EMAIL_HOST_PASSWORD: "password"
|
||||
# Registration
|
||||
PUBLIC_REGISTER_ENABLED: "False"
|
||||
# Telemetry settings
|
||||
ENABLE_TELEMETRY: "True"
|
||||
# Rabbitmq settings
|
||||
@ -97,6 +99,7 @@ services:
|
||||
environment:
|
||||
TAIGA_URL: "http://localhost:9000"
|
||||
TAIGA_WEBSOCKETS_URL: "ws://localhost:9000"
|
||||
PUBLIC_REGISTER_ENABLED: "false"
|
||||
# Get these in your profile https://github.com/settings/apps
|
||||
# or in your organization profile https://github.com/organizations/{ORGANIZATION-SLUG}/settings/applications
|
||||
GITHUB_CLIENT_ID: "github-client-id"
|
||||
|
Loading…
x
Reference in New Issue
Block a user