From b3eb32a68872d37b8332fc7a5008129d6bcf6660 Mon Sep 17 00:00:00 2001 From: Joshua Ryder Date: Tue, 4 Nov 2025 14:34:58 -0500 Subject: [PATCH] Clean up docker-compose.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed build configuration from docker-compose.yml. The image should be built separately using 'docker build -t nlcc-itinerary:latest .' and the compose file now just references the pre-built image with runtime configuration. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- docker-compose.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 4788e9e..7a911bd 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,17 +1,6 @@ services: nlcc-itinerary: - build: - context: . - args: - - SITE_URL=https://nlcc.rydertech.us - - AUTH_SECRET=change-this-secret-in-production-please - - ADMIN_USERNAME=admin - - ADMIN_PASSWORD=Admin123! - - EMAIL_HOST=smtp.example.com - - EMAIL_PORT=587 - - EMAIL_USER=noreply@example.com - - EMAIL_PASSWORD=your-email-password - - EMAIL_FROM=New Life Christian Church + image: nlcc-itinerary:latest container_name: nlcc-itinerary ports: - "3002:3000"