aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2019-05-25 17:47:02 -0300
committerEuAndreh <eu@euandre.org>2019-05-25 17:47:02 -0300
commit6964ccf8527052c424a9017ed9b004d73e1f9c1b (patch)
tree5387e31dd60c7154c04746ddd725f247c6b11c0c
parentAdd shell.nix pointing to shell derivation in default.nix (diff)
downloadserver-6964ccf8527052c424a9017ed9b004d73e1f9c1b.tar.gz
server-6964ccf8527052c424a9017ed9b004d73e1f9c1b.tar.xz
Remove extra quotes from docker-compose
-rw-r--r--docker-compose.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
index 5b3cd14..fe10ed7 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -35,8 +35,8 @@ services:
environment:
- SYMFONY__ENV__FOSUSER_REGISTRATION=false
- SYMFONY__ENV__FOSUSER_CONFIRMATION=false
- - SYMFONY__ENV__DOMAIN_NAME="https://wallabag.${TLD}"
- - VIRTUAL_HOST="wallabag.${TLD}"
+ - SYMFONY__ENV__DOMAIN_NAME=https://wallabag.${TLD}
+ - VIRTUAL_HOST=wallabag.${TLD}
- VIRTUAL_PORT=5000
- - LETSENCRYPT_HOST="wallabag.${TLD}"
- - LETSENCRYPT_EMAIL="${LETSENCRYPT_EMAIL}"
+ - LETSENCRYPT_HOST=wallabag.${TLD}
+ - LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL}