From 1aafd6d5a38db70d5025b8b3496407f55788f3e1 Mon Sep 17 00:00:00 2001 From: nocci Date: Sat, 6 Dec 2025 13:43:10 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(docker):=20update=20docker?= =?UTF-8?q?-compose=20for=20encryption=20key?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - modify ENCRYPTION_KEY to use environment variable for flexibility - ensure default configuration retains security settings --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 7c5bc24..d1c8f44 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,7 +12,7 @@ services: # Set to 0 only for local HTTP testing; keep secure (default) in production - SESSION_COOKIE_SECURE=${SESSION_COOKIE_SECURE:-1} # Optional: encryption key for management passwords (Fernet key) - # - ENCRYPTION_KEY=your_fernet_key_here + - ENCRYPTION_KEY=${ENCRYPTION_KEY:-} volumes: - ./data:/app/data restart: unless-stopped