From f1cafab5251da328616139f2c1ed9ff93b357d39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Sun, 14 Jun 2026 22:14:35 +0200 Subject: [PATCH] Change the default APP_URL in docker-compose.yml --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 3750be4..87831ae 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,7 +11,7 @@ services: - SECRET_KEY=${SECRET_KEY} - TZ=${TZ:-Europe/Prague} # APP_URL drives ALLOWED_HOSTS and CSRF_TRUSTED_ORIGINS unless overridden. - - APP_URL=${APP_URL:-https://tracker.kucharczyk.xyz} + - APP_URL=${APP_URL:-http://localhost:8000} - PUID=${PUID:-1000} - PGID=${PGID:-100} - DATA_DIR=${DATA_DIR:-/home/timetracker/app/data}