Files
CICD_Learning/docker-compose.yml
2025-09-02 22:44:23 +08:00

26 lines
380 B
YAML

version: '3.8'
services:
frontend:
build:
context: ./front
dockerfile: dockerfile
ports:
- "80:80"
depends_on:
- backend
networks:
- app-network
backend:
build:
context: ./backend
dockerfile: dockerfile
ports:
- "5000:5000"
networks:
- app-network
networks:
app-network:
driver: bridge