From 19c179cfd03292755dff41ad11f5b31b1b7e1920 Mon Sep 17 00:00:00 2001 From: poprhythm Date: Sat, 13 Sep 2025 02:20:10 +0000 Subject: [PATCH] Add dashy/docker-compose.yml --- dashy/docker-compose.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 dashy/docker-compose.yml diff --git a/dashy/docker-compose.yml b/dashy/docker-compose.yml new file mode 100644 index 0000000..82f663c --- /dev/null +++ b/dashy/docker-compose.yml @@ -0,0 +1,26 @@ +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: + - /srv/dashy:/app/user-data + ports: + - 9000:8080 + # 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 \ No newline at end of file