mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-13 21:02:18 +08:00
30 lines
650 B
YAML
30 lines
650 B
YAML
version: '3'
|
|
services:
|
|
dashy:
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:8080"
|
|
volumes:
|
|
- ./data/user-data/conf.yml:/app/user-data/conf.yml
|
|
- ./data/item-icons:/app/user-data/item-icons
|
|
environment:
|
|
- NODE_ENV=production
|
|
- UID=1000
|
|
- GID=1000
|
|
healthcheck:
|
|
test: ['CMD', 'node', '/app/services/healthcheck']
|
|
interval: 1m30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
image: lissy93/dashy:3.0.0
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|