Files
wled-controller/docker-compose.yml
2025-12-10 18:07:21 +00:00

28 lines
464 B
YAML

version: '3.8'
services:
backend:
build: ./backend
container_name: wled-backend
ports:
- "3000:3000"
environment:
- PORT=3000
- DATABASE_URL=file:/data/wled.db
- LOG_LEVEL=info
volumes:
- wled-data:/data
restart: unless-stopped
frontend:
build: ./frontend
container_name: wled-frontend
ports:
- "80:80"
depends_on:
- backend
restart: unless-stopped
volumes:
wled-data: