Files
COMP-2707-final-project/docker-compose.yml

34 lines
630 B
YAML

version: '3'
services:
frontend:
image: comp2707-frontend
build: frontend/
depends_on:
- backend
container_name: comp2707-frontend
ports:
- 8080:8080
backend:
image: comp2707-backend
build: backend/
depends_on:
- db
container_name: comp2707-backend
environment:
- DATABASE_URL=mysql://root:mama@db/2707
ports:
- 5001:5000
db:
image: mariadb:latest
environment:
- MARIADB_ROOT_PASSWORD=mama
- MARIADB_DATABASE=2707
volumes:
- db-volume:/var/lib/mysql
ports:
- 3406:3306
volumes:
db-volume:
driver: local