wiki/docs/portainer-stacks/Dillinger.md
sthope 402c2ea94c
All checks were successful
continuous-integration/drone/push Build is passing
update
2022-08-07 15:15:35 +02:00

594 B

Portainer Stack:

---
version: "3.8"
services:
  dillinger:
    image: lscr.io/linuxserver/dillinger:${TAG-latest}
    container_name: dillinger
    environment:
      - PUID=${PUID-1000}
      - PGID=${PGID-1000}
      - TZ=${TZ-Europe/Amsterdam}
    volumes:
      - dillinger:/config
    ports:
      - 8080:8080
    restart: ${RST-unless-stopped}
    labels:
      - com.centurylinklabs.watchtower.enable=${AutoUpdate-true}

volumes:
  dillinger:

Environments:

TAG=latest
RST=unless-stopped
NET=bridge
PUID=${PUID-1000}
PGID=${PGID-1000}
TZ=Europe/Lisbon
AutoUpdate=true