Files
profilarr/docker-compose.yml
santiagosayshey 525d86063d Initial Commit
2025-02-05 16:09:58 +10:30

19 lines
313 B
YAML

version: '3.8'
services:
frontend:
build: ./frontend
ports:
- "3000:3000"
volumes:
- ./frontend:/app
- /app/node_modules
environment:
- VITE_API_URL=http://localhost:5000
backend:
build: ./backend
ports:
- "5000:5000"
volumes:
- ./backend:/app