From dda6f297d85a9642bf0b0f2e29d9bb0633ac5f29 Mon Sep 17 00:00:00 2001 From: Ryan Breen Date: Wed, 11 Sep 2024 18:47:40 -0400 Subject: [PATCH] docs: boolean value in docker-compose examples not deserializable in env variables (#4130) Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com> --- .../docs/documentation/getting-started/installation/postgres.md | 2 +- docs/docs/documentation/getting-started/installation/sqlite.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/documentation/getting-started/installation/postgres.md b/docs/docs/documentation/getting-started/installation/postgres.md index 27473d234915..cb5dda152e12 100644 --- a/docs/docs/documentation/getting-started/installation/postgres.md +++ b/docs/docs/documentation/getting-started/installation/postgres.md @@ -20,7 +20,7 @@ services: - mealie-data:/app/data/ environment: # Set Backend ENV Variables Here - ALLOW_SIGNUP: false + ALLOW_SIGNUP: "false" PUID: 1000 PGID: 1000 TZ: America/Anchorage diff --git a/docs/docs/documentation/getting-started/installation/sqlite.md b/docs/docs/documentation/getting-started/installation/sqlite.md index 129974fc63c5..2b38280c834c 100644 --- a/docs/docs/documentation/getting-started/installation/sqlite.md +++ b/docs/docs/documentation/getting-started/installation/sqlite.md @@ -24,7 +24,7 @@ services: - mealie-data:/app/data/ environment: # Set Backend ENV Variables Here - ALLOW_SIGNUP: false + ALLOW_SIGNUP: "false" PUID: 1000 PGID: 1000 TZ: America/Anchorage