mirror of
https://github.com/Haxxnet/Compose-Examples.git
synced 2025-11-23 17:04:27 +01:00
cleanup repo
This commit is contained in:
3
examples/dashy/README.md
Normal file
3
examples/dashy/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# References
|
||||
|
||||
- https://github.com/Lissy93/dashy
|
||||
21
examples/dashy/docker-compose.yml
Normal file
21
examples/dashy/docker-compose.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
version: "3.8"
|
||||
services:
|
||||
dashy:
|
||||
container_name: dashy
|
||||
hostname: dashy
|
||||
image: lissy93/dashy
|
||||
volumes:
|
||||
- /mnt/docker-volumes/dashy/config/config.yml:/app/public/conf.yml
|
||||
- /mnt/docker-volumes/dashy/icons:/app/public/item-icons
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
- UID=1000
|
||||
- GID=1000
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test: ['CMD', 'node', '/app/services/healthcheck']
|
||||
interval: 1m30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 40s
|
||||
Reference in New Issue
Block a user