1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2024-12-22 15:02:19 +00:00

Remove quotes from docker compose envs

This commit is contained in:
Alexandre Iooss 2020-09-15 09:34:03 +02:00
parent bfb542e8d0
commit 5980f50bf3
No known key found for this signature in database
GPG Key ID: 6C79278F3FCDCC02

View File

@ -31,12 +31,12 @@ services:
ghostream:
build: ../
environment:
- FLASK_CONFIG="production"
- LDAP_URI="ldap://127.0.0.1:389"
- LDAP_USER_DN="cn=Users,dc=example,dc=com"
- SITE_NAME="Ghostream"
- SITE_HOSTNAME="localhost"
- FAVICON="/favicon.ico"
- FLASK_CONFIG=production
- LDAP_URI=ldap://127.0.0.1:389
- LDAP_USER_DN=cn=Users,dc=example,dc=com
- SITE_NAME=Ghostream
- SITE_HOSTNAME=localhost
- FAVICON=/favicon.ico
labels:
- "traefik.enable=true"
- "traefik.http.routers.ghostream.rule=Host(`stream.example.com`)"