You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
803 B
YAML

3 years ago
# [Piwigo](http://piwigo.org/) is a photo gallery software for the web that
# comes with powerful features to publish and manage your collection of
# pictures.
3 years ago
---
version: "2.1"
services:
piwigo:
image: ghcr.io/linuxserver/piwigo
container_name: piwigo
environment:
# for UserID
2 years ago
- PUID=${PUID:-1024}
# for GroupID
3 years ago
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
3 years ago
- TZ=${TZ:-Europe/Amsterdam}
3 years ago
volumes:
4 months ago
# Persistent config files
3 years ago
- ${BASEDIR:-/volume1/docker}/piwigo/config:/config
2 years ago
# Image storage for Piwigo
3 years ago
- ${BASEDIR:-/volume1/docker}/piwigo/gallery:/gallery
3 years ago
ports:
# Application WebUI
- 80:80
restart: unless-stopped