-
Notifications
You must be signed in to change notification settings - Fork 234
Open
Labels
Milestone
Description
Hi, I'm using PiGallery2 with docker (latest-alpine) on a x86_64 plateform with Ubuntu 22.04. I updated my docker version to version 26.1.0, build 9714adc (latest deb available) and compose to v2.26.1 and the update seems to have broken PiGallery2.
Here is my compose section:
pigallery2:
image: bpatrik/pigallery2:latest-alpine
container_name: pigallery2
environment:
- NODE_ENV=production
- TZ=Europe/Paris
- PUID=1026
- PGID=100
networks:
- t2_proxy
security_opt:
- no-new-privileges:true
restart: always
volumes:
- "./pigallery2/config:/app/data/config"
- "./pigallery2/db-data:/app/data/db"
- "/mnt/photo:/app/data/images:ro"
- "./pigallery2/tmp:/app/data/tmp"
labels:
- "traefik.enable=true"
- "traefik.http.routers.pigall-rtr.entrypoints=https"
- "traefik.http.routers.pigall-rtr.rule=Host(`pigall.mydomain.wtf`)"
- "traefik.http.routers.pigall-rtr.tls=true"
- "traefik.http.routers.pigall-rtr.service=pigall-svc"
- "traefik.http.services.pigall-svc.loadbalancer.server.port=80"
- "traefik.http.routers.pigall-rtr.middlewares=localip"
I tried with edge-alpine and lastest images, same issue.
Is there someone else affected by this bug ? Is there anything I can do to help fixing that bug ?