Add docker and build scripts
Some checks failed
ci / ci (22, ubuntu-latest) (push) Has been cancelled

This commit is contained in:
2026-04-29 10:01:33 +01:00
parent 08bb142c0a
commit 7fa65a9ee3
4 changed files with 94 additions and 0 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
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