15 lines
309 B
YAML
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
|