From 85c4b835fdd063f204cb49484c8162809435d6b0 Mon Sep 17 00:00:00 2001 From: poduck Date: Wed, 3 Dec 2025 13:40:57 -0500 Subject: [PATCH] fix(mail): Copy SSH keys into Docker image instead of volume mount MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove volume mount for SSH keys and rely on Dockerfile COPY instruction to bake SSH keys into the image during build. This ensures proper permissions and ownership for the django user. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- smoothschedule/docker-compose.production.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/smoothschedule/docker-compose.production.yml b/smoothschedule/docker-compose.production.yml index e3b8aa6..0f1788d 100644 --- a/smoothschedule/docker-compose.production.yml +++ b/smoothschedule/docker-compose.production.yml @@ -18,8 +18,6 @@ services: env_file: - ./.envs/.production/.django - ./.envs/.production/.postgres - volumes: - - ./.ssh:/app/.ssh:ro command: /start postgres: