Sthope db59715d36
All checks were successful
continuous-integration/drone/push Build is passing
first commit
2022-05-16 14:26:58 +02:00

666 B

Portainer Stack:

---
version: "3.8"
services:
  digikam:
    image: lscr.io/linuxserver/digikam:${tag-latest}
    container_name: digikam
    network_mode: ${NET-bridge}
    environment:
      - PUID=${PUID-1000}
      - PGID=${PGID-1000}
      - TZ=${TZ-Europe/Amsterdam}
      - SUBFOLDER=/
      - KEYBOARD=en-us-qwerty
    volumes:
      - digikam:/config
    ports:
      - 3000:3000
    restart: ${RST-unless-stopped}
    labels:
      - com.centurylinklabs.watchtower.enable=${AutoUpdate-true}

volumes:
  digikam:

Environments:

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