diff options
| author | EuAndreh <eu@euandre.org> | 2019-05-25 17:47:02 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2019-05-25 17:47:02 -0300 |
| commit | 6964ccf8527052c424a9017ed9b004d73e1f9c1b (patch) | |
| tree | 5387e31dd60c7154c04746ddd725f247c6b11c0c | |
| parent | Add shell.nix pointing to shell derivation in default.nix (diff) | |
| download | server-6964ccf8527052c424a9017ed9b004d73e1f9c1b.tar.gz server-6964ccf8527052c424a9017ed9b004d73e1f9c1b.tar.xz | |
Remove extra quotes from docker-compose
| -rw-r--r-- | docker-compose.yml | 8 |
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} |
