refactored all to dev

This commit is contained in:
2025-11-26 21:48:53 -08:00
parent a8066686bc
commit f8ca733307
170 changed files with 12 additions and 29 deletions
+9
View File
@@ -0,0 +1,9 @@
# piwigo
Last Updated: Thu August 08, 2024 14:13:59 PDT
## Overview
Docker Hub: https://hub.docker.com/r/linuxserver/piwigo/tags/
Project: https://piwigo.org/
Docker Compose Example: https://hub.docker.com/r/linuxserver/piwigo
Proxy Port: 80
+11
View File
@@ -0,0 +1,11 @@
services:
piwigo:
image: ${PIWIGO_IMAGE:-lscr.io/linuxserver/piwigo:latest}
restart: unless-stopped
environment:
- PUID=${PIWIGO_PUID:-1000}
- PGID=${PIWIGO_PGID:-1000}
- TZ=${TZ:-America/Vancouver}
volumes:
- ${VOL_PATH:-./data}/piwigo:/config
- ${VOL_PATH:-./data}/gallery:/gallery
+9
View File
@@ -0,0 +1,9 @@
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
TZ=America/Vancouver
VOL_PATH=./data #HELP: volpath
# piwigo
PIWIGO_IMAGE=lscr.io/linuxserver/piwigo:latest
PIWIGO_PUID=1000
PIWIGO_PGID=1000