Files
chore/docker-compose.test.yml
Ryan Kegel 10216f49c9
All checks were successful
Chore App Build, Test, and Push Docker Images / build-and-push (push) Successful in 2m7s
fix: update service names and image paths to reflect new repository structure
2026-02-20 09:47:08 -05:00

30 lines
890 B
YAML

# yaml
version: "3.8"
services:
chores-test-app-backend: # Test backend service name
image: git.ryankegel.com:3000/kegel/chores/backend:next # Use latest next tag
ports:
- "5004:5000" # Host 5004 -> Container 5000
environment:
- FLASK_ENV=development
- FRONTEND_URL=https://devserver.lan:446 # Add this for test env
# Add volumes, networks, etc., as needed
chores-test-app-frontend: # Test frontend service name
image: git.ryankegel.com:3000/kegel/chores/frontend:next # Use latest next tag
ports:
- "446:443" # Host 446 -> Container 443 (HTTPS)
environment:
- BACKEND_HOST=chores-test-app-backend # Points to internal backend service
depends_on:
- chores-test-app-backend
# Add volumes, networks, etc., as needed
networks:
chores-test-app-net:
driver: bridge
volumes:
chores-test-app-backend-data: {}