21 lines
343 B
YAML
21 lines
343 B
YAML
services:
|
|
backend:
|
|
build: ./backend
|
|
ports:
|
|
- "${PORT:-8080}:8080"
|
|
env_file: .env
|
|
volumes:
|
|
- ./data:/app/data
|
|
restart: unless-stopped
|
|
|
|
frontend:
|
|
build:
|
|
context: ./frontend
|
|
args:
|
|
VITE_API_URL: ""
|
|
ports:
|
|
- "3000:80"
|
|
depends_on:
|
|
- backend
|
|
restart: unless-stopped
|