28 lines
464 B
YAML
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:
|