mirror of
https://git.myvelabs.com/docker/docker-compose.yaml.git
synced 2025-12-17 21:26:17 +00:00
Reboot
This commit is contained in:
parent
b7336a277f
commit
e650d80b1e
58 changed files with 1747 additions and 0 deletions
9
dashy/.env
Normal file
9
dashy/.env
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# Environment file for docker-compose.yaml
|
||||
# Generate new passwords with:
|
||||
# openssl rand -hex 32
|
||||
|
||||
# Fill in registry
|
||||
REGISTRY=
|
||||
|
||||
# Dashy
|
||||
DASHY_PORT=
|
||||
25
dashy/docker-compose.yaml
Normal file
25
dashy/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
services:
|
||||
|
||||
# dashy (https://github.com/Lissy93/dashy/blob/master/docker-compose.yml)
|
||||
dashy:
|
||||
image: ${REGISTRY}/dashy
|
||||
container_name: dashy
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- ${DASHY_PORT:-8080}:8080
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
healthcheck:
|
||||
test: ['CMD', 'node', '/app/services/healthcheck']
|
||||
interval: 1m30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 40s
|
||||
volumes:
|
||||
- ./conf.yml:/app/user-data/conf.yml
|
||||
networks:
|
||||
- dashy
|
||||
|
||||
networks:
|
||||
dashy:
|
||||
external: false
|
||||
Loading…
Add table
Add a link
Reference in a new issue