mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
14 lines
348 B
YAML
14 lines
348 B
YAML
version: '3.8'
|
|
|
|
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
|