install.fairie/home/dot_config/docker/templates/dashy.docker-stack.yml.tmpl
Brian Zalewski 42060c43c3 Update 19 files
- /home/.chezmoiscripts/universal/run_onchange_after_40-firefox.tmpl
- /home/dot_config/VirtualBox/VirtualBox.xml.tmpl
- /home/dot_config/docker/templates/healthchecks.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/dashy.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/portainer.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/sonatype.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/statping.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/wazuh.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/wireguard.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/rundeck.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/nginx.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/htpc.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/gitlab.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/code-server.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/instapy.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/josh.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/nextcloud.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/nginx-proxy-manager.docker-stack.yml.tmpl
- /home/dot_config/docker/templates/thelounge.docker-stack.yml.tmpl
2023-02-05 05:55:09 +00:00

28 lines
No EOL
818 B
Cheetah

---
version: "3.8"
services:
dashy:
# To build from source, replace 'image: lissy93/dashy' with 'build: .'
# build: .
image: lissy93/dashy
container_name: Dashy
# Pass in your config file below, by specifying the path on your host machine
volumes:
- /root/my-config.yml:{{ .user.home }}/config/dashy/conf.yml
ports:
- 4000:80
# Set any environmental variables
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