1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2024-12-22 19:42:20 +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: ghostream:
build: ../ build: ../
environment: environment:
- FLASK_CONFIG="production" - FLASK_CONFIG=production
- LDAP_URI="ldap://127.0.0.1:389" - LDAP_URI=ldap://127.0.0.1:389
- LDAP_USER_DN="cn=Users,dc=example,dc=com" - LDAP_USER_DN=cn=Users,dc=example,dc=com
- SITE_NAME="Ghostream" - SITE_NAME=Ghostream
- SITE_HOSTNAME="localhost" - SITE_HOSTNAME=localhost
- FAVICON="/favicon.ico" - FAVICON=/favicon.ico
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"
- "traefik.http.routers.ghostream.rule=Host(`stream.example.com`)" - "traefik.http.routers.ghostream.rule=Host(`stream.example.com`)"