mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 23:41:07 +00:00
feat: docker compose files for new homelab services
This commit is contained in:
parent
c63c73e20f
commit
78f4f39789
30 changed files with 1337 additions and 21 deletions
22
dashy/docker-compose.yaml
Normal file
22
dashy/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
services:
|
||||
dashy:
|
||||
image: lissy93/dashy:latest
|
||||
container_name: dashy
|
||||
volumes:
|
||||
- ./config.yml:/app/user-data/conf.yml
|
||||
ports:
|
||||
- 9999:8080
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
# Specify your user ID and group ID. You can find this by running `id -u` and `id -g`
|
||||
- UID=1000
|
||||
- GID=1000
|
||||
# Specify restart policy
|
||||
restart: unless-stopped
|
||||
# Configure healthchecks
|
||||
healthcheck:
|
||||
test: ['CMD', 'node', '/app/services/healthcheck']
|
||||
interval: 1m30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 40s
|
||||
Loading…
Add table
Add a link
Reference in a new issue