Files
dashlio/docker-compose.yml
Daryn 7fa65a9ee3
Some checks failed
ci / ci (22, ubuntu-latest) (push) Has been cancelled
Add docker and build scripts
2026-04-29 10:01:33 +01:00

15 lines
309 B
YAML

version: '3.8'
services:
dashlio:
build: .
container_name: dashlio
ports:
- "3000:3000"
volumes:
# Mount dashboard.yml so user can edit it outside the container
- ./app/dashboard.yml:/app/app/dashboard.yml
environment:
- NUXT_HOST=0.0.0.0
- NUXT_PORT=3000