26 lines
524 B
YAML
26 lines
524 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
dashy:
|
|
image: lissy93/dashy:latest
|
|
container_name: Dashy
|
|
# 掛載您的 Dashy 配置檔案
|
|
volumes:
|
|
- ./conf.yml:/app/user-data/conf.yml
|
|
- dashy_data:/app/user-data
|
|
ports:
|
|
- "9070:8080"
|
|
environment:
|
|
- NODE_ENV=production
|
|
restart: unless-stopped
|
|
# 健康檢查
|
|
healthcheck:
|
|
test: ['CMD', 'node', '/app/services/healthcheck']
|
|
interval: 1m30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
|
|
volumes:
|
|
dashy_data:
|