19 lines
358 B
YAML
19 lines
358 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
dashy:
|
|
image: lissy93/dashy
|
|
container_name: dashy
|
|
restart: unless-stopped
|
|
ports:
|
|
- 4000:80
|
|
volumes:
|
|
- ./dashy:/app/public
|
|
user: 1000:1000
|
|
healthcheck:
|
|
test: ['CMD', 'node', '/app/services/healthcheck']
|
|
interval: 1m30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|