Dashy

Portainer Stack:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
version: "3.9"
services:
  dashy:
    image: lissy93/dashy:${TAG-latest}
    container_name: dashy
    network_mode: ${NET-bridge}
    ports:
      - ${PORT-80}:80
    environment:
      - NODE_ENV=production
      - UID=${PUID-1000}
      - GID=${PGID-1000}
    restart: ${RST-unless-stopped}
    healthcheck:
      test: ['CMD', 'node', '/app/services/healthcheck']
      interval: 1m30s
      timeout: 10s
      retries: 3
      start_period: 40s
    labels:
      - com.centurylinklabs.watchtower.enable=${AutoUpdate-true}

Environments:

1
2
3
4
5
6
7
TAG=latest
RST=unless-stopped
NET=bridge
PUID=${PUID-1000}
PGID=${PGID-1000}
AutoUpdate=true
PORT=80