From f8e73a8abadf7af09d0e18078483c8635362447c Mon Sep 17 00:00:00 2001 From: nuron Date: Sat, 22 May 2021 14:41:18 +0200 Subject: [PATCH] Fix docker startup issue caused by missing quotes (#6) Reviewed-on: https://codeberg.org/timelimit/timelimit-server/pulls/6 Co-authored-by: nuron Co-committed-by: nuron --- docs/usage/docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/usage/docker.md b/docs/usage/docker.md index 438abf1..ad476e4 100644 --- a/docs/usage/docker.md +++ b/docs/usage/docker.md @@ -26,7 +26,7 @@ services: PORT: 8080 MAIL_SENDER: me@my.timelimit.server MAIL_TRANSPORT: '{"host": "localhost", "port": 25}' - ALWAYS_PRO: yes + ALWAYS_PRO: 'yes' # put additional config variables here ports: - "8080:8080" @@ -72,7 +72,7 @@ services: PORT: 8080 MAIL_SENDER: me@my.timelimit.server MAIL_TRANSPORT: '{"host": "localhost", "port": 25}' - ALWAYS_PRO: yes + ALWAYS_PRO: 'yes' # put additional config variables here restart: always # you can enable logging during testing by commenting this out,