forum-app/docker-compose.yml

20 lines
328 B
YAML
Raw Permalink Normal View History

2024-04-01 02:43:44 +00:00
version: '3'
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
2024-04-06 21:50:34 +00:00
ports:
2024-04-09 21:53:50 +00:00
- '8000:8000'
2024-04-06 21:50:34 +00:00
restart: unless-stopped
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
2024-04-01 02:43:44 +00:00
ports:
2024-04-09 21:53:50 +00:00
- '3000:3000'
2024-04-01 02:43:44 +00:00
restart: unless-stopped
2024-04-06 21:50:34 +00:00
depends_on:
2024-04-09 21:53:50 +00:00
- backend