From c67b26a164906c1f42079798a9504c8bba7b9258 Mon Sep 17 00:00:00 2001 From: Mawoka Date: Mon, 17 Oct 2022 15:20:13 +0200 Subject: [PATCH] :bug: Fixed docker-compose file for running instances --- docker-compose.yml | 2 +- frontend/src/routes/docs/self-host/+page.svelte | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index a718afe..b3b0d73 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -39,7 +39,7 @@ services: test: [ "CMD", "redis-cli","ping" ] db: - image: postgres:alpine + image: postgres:14-alpine restart: always healthcheck: test: [ "CMD-SHELL", "pg_isready -U postgres" ] diff --git a/frontend/src/routes/docs/self-host/+page.svelte b/frontend/src/routes/docs/self-host/+page.svelte index b8f7721..0a97830 100644 --- a/frontend/src/routes/docs/self-host/+page.svelte +++ b/frontend/src/routes/docs/self-host/+page.svelte @@ -179,6 +179,7 @@ services: MAIL_USERNAME: "classquiz@mawoka.eu" # Email-Username (change it) MAIL_SERVER: "smtp.gmail.com" # SMTP-Server (change it) MAIL_PORT: "587" # SMTP-Port + SKIP_EMAIL_VERIFICATION: True # Set this to skip sending emails MAX_WORKERS: "1" # Very important and don't change it! REDIS: "redis://redis:6379/0?decode_responses=True" # don't change SECRET_KEY: "TOP_SECRET" # openssl rand -hex 32 @@ -210,7 +211,7 @@ services: test: [ "CMD", "redis-cli","ping" ] db: - image: postgres:alpine + image: postgres:14-alpine restart: always healthcheck: test: [ "CMD-SHELL", "pg_isready -U postgres" ]