Files
test_dashboard/docker-compose.yml
T

20 lines
379 B
YAML
Raw Normal View History

2026-05-26 14:36:34 -04:00
services:
backend:
build: ./server
container_name: dashboard-backend
ports:
- "3001:3001"
volumes:
2026-05-28 11:01:47 -04:00
- type: bind
source: ./server
target: /app
2026-05-26 14:36:34 -04:00
restart: unless-stopped
frontend:
build: ./dashboard
container_name: dashboard-frontend
ports:
- "5173:80"
depends_on:
- backend
restart: unless-stopped