diff --git a/docs/portainer-stacks/PhotoView.md b/docs/portainer-stacks/PhotoView.md index 3e09c1d..42a0f3c 100644 --- a/docs/portainer-stacks/PhotoView.md +++ b/docs/portainer-stacks/PhotoView.md @@ -35,6 +35,8 @@ services: # to the following: `/home/user/photos:/photos:ro`. # You can mount multiple paths, if your photos are spread across multiple directories. - ./photos_path:/photos:ro + labels: + - com.centurylinklabs.watchtower.enable=true photoview_db: image: lscr.io/linuxserver/mariadb:latest @@ -49,6 +51,8 @@ services: - MYSQL_ROOT_PASSWORD=photoviewadmin volumes: - photoview_db_data:/config + labels: + - com.centurylinklabs.watchtower.enable=true volumes: photoview_db_data: diff --git a/docs/portainer-stacks/digiKam.md b/docs/portainer-stacks/digiKam.md new file mode 100644 index 0000000..cf6d6bc --- /dev/null +++ b/docs/portainer-stacks/digiKam.md @@ -0,0 +1,23 @@ +Portainer Stack: +```yaml +--- +version: "3.8" +services: + digikam: + image: lscr.io/linuxserver/digikam:latest + container_name: digikam + network_mode: host + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Amsterdam + - SUBFOLDER=/ + - KEYBOARD=en-us-qwerty + volumes: + - digikam:/config + ports: + - 3000:3000 + restart: unless-stopped + labels: + - com.centurylinklabs.watchtower.enable=true +``` \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index 8ced64c..e2a39e8 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -84,6 +84,7 @@ nav: - Authentik: portainer-stacks/Authentik.md - Bazarr: portainer-stacks/bazarr.md - Bitwarden: portainer-stacks/Bitwarden.md + - digiKam: portainer-stacks/digiKam.md - Drone: portainer-stacks/Drone.md - Gitea: portainer-stacks/Gitea.md - Heimdall: portainer-stacks/heimdall.md