initial commit

This commit is contained in:
John Lancaster
2024-01-27 12:20:31 -06:00
commit 74d8afee6d
3 changed files with 56 additions and 0 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
version: '3.9'
services:
dashy:
image: lissy93/dashy
container_name: dashy
restart: unless-stopped
ports:
- 4000:80
volumes:
- ./dashy:/app/public
user: 1000:1000
healthcheck:
test: ['CMD', 'node', '/app/services/healthcheck']
interval: 1m30s
timeout: 10s
retries: 3
start_period: 40s