-test environment
All checks were successful
Chore App Build and Push Docker Images / build-and-push (push) Successful in 1m38s

This commit is contained in:
2026-02-11 21:36:45 -05:00
parent e604870e26
commit a21cb60aeb
2 changed files with 33 additions and 27 deletions

View File

@@ -2,23 +2,23 @@
version: "3.8"
services:
chore-test-app-backend: # Renamed for clarity
image: git.ryankegel.com:3000/ryan/backend:next-1.0.4-20260211
chore-test-app-backend: # Test backend service name
image: git.ryankegel.com:3000/ryan/backend:next-1.0.4-20260211 # Use dev tag
ports:
- "5001:5000" # Map external 5001 to internal 5000
- "5004:5000" # Host 5004 -> Container 5000
environment:
- FLASK_ENV=development
# Add other env vars, volumes, or networks as needed (mirror production but adjust ports)
# Add volumes, networks, etc., as needed
chore-test-app-frontend: # Renamed for clarity
image: git.ryankegel.com:3000/ryan/frontend:next-1.0.4-20260211
chore-test-app-frontend: # Test frontend service name
image: git.ryankegel.com:3000/ryan/frontend:next-1.0.4-20260211 # Use dev tag
ports:
- "443:443" # Map host 443 to container 443 for HTTPS
- "446:443" # Host 446 -> Container 443 (HTTPS)
environment:
- BACKEND_HOST=chore-test-app-backend # Override for test env
- BACKEND_HOST=chore-test-app-backend # Points to internal backend service
depends_on:
- chore-test-app-backend
# If the frontend proxy needs to point to the dev backend, ensure the Nginx config uses the internal backend service name or IP
# Add volumes, networks, etc., as needed
networks:
chore-test-app-net: