From e1a45e2c992d33b2cb5ead46e29ac9caa0666e0a Mon Sep 17 00:00:00 2001 From: scyto Date: Sat, 10 Jan 2026 16:59:10 -0800 Subject: [PATCH] Reorganize volume entries in docker-compose I moved the comments for the volume, anyone new to docker (there are always people who are new) will not realize their compose is failing because yaml doesn't support comments on a line of content (annoys me to this day that yaml doesn't, but hey ho) --- docker/docker-compose.prod.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docker/docker-compose.prod.yml b/docker/docker-compose.prod.yml index 8ae5eaf2..34ec6b32 100644 --- a/docker/docker-compose.prod.yml +++ b/docker/docker-compose.prod.yml @@ -5,9 +5,12 @@ services: restart: unless-stopped network_mode: host volumes: - - ./data:/app/data # SQLite, configs, license - - ./ssh-keys:/app/ssh-keys:ro # Optional: SSH keys for agent deployment - - ./logs:/app/logs # Application logs + # SQLite, configs, license + - ./data:/app/data + # Optional: SSH keys for agent deployment + - ./ssh-keys:/app/ssh-keys:ro + # Application logs + - ./logs:/app/logs environment: - TZ=${TZ:-America/Chicago} # Bind to localhost only (for reverse proxy) or all interfaces (direct access)