update docker-compose.yml

This commit is contained in:
agatha 2024-04-06 17:50:34 -04:00
parent 8f2d6b1613
commit db4ea90a99

View File

@ -4,6 +4,16 @@ services:
build: build:
context: ./backend context: ./backend
dockerfile: Dockerfile dockerfile: Dockerfile
ports:
- '8001:8000'
restart: unless-stopped
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
ports: ports:
- '8000:8000' - '8000:8000'
restart: unless-stopped restart: unless-stopped
depends_on:
- backend