26 lines
559 B
YAML
26 lines
559 B
YAML
networks:
|
|
default:
|
|
external:
|
|
name: npm-network
|
|
|
|
services:
|
|
dashy:
|
|
image: lissy93/dashy
|
|
container_name: dashy
|
|
volumes:
|
|
- /srv/dashy:/app/user-data
|
|
ports:
|
|
- 9000:8080
|
|
environment:
|
|
- NODE_ENV=production
|
|
- VIRTUAL_HOST=dashy.kolpacksoftware.com
|
|
- VIRTUAL_PORT=8080
|
|
- LETSENCRYPT_HOST=dashy.kolpacksoftware.com
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ['CMD', 'node', '/app/services/healthcheck']
|
|
interval: 1m30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|