docker-bits/lsio/piwigo/docker-compose.yaml

27 lines
761 B
YAML
Raw Normal View History

2021-04-21 00:55:42 +00:00
# [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.
2021-04-10 10:16:29 +00:00
---
version: "2.1"
services:
piwigo:
image: ghcr.io/linuxserver/piwigo
container_name: piwigo
environment:
# for UserID
2022-04-02 00:45:58 +00:00
- PUID=${PUID:-1024}
# for GroupID
2021-04-10 10:16:29 +00:00
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
2021-04-13 00:58:58 +00:00
- TZ=${TZ:-Europe/Amsterdam}
2021-04-10 10:16:29 +00:00
volumes:
# Configuration files.
- ${BASEDIR:-/volume1/docker}/piwigo/config:/config
2021-05-23 01:00:48 +00:00
# Image, plugin, & theme storage for Piwigo
- ${BASEDIR:-/volume1/docker}/piwigo/gallery:/gallery
2021-04-10 10:16:29 +00:00
ports:
# Application WebUI
- 80:80
restart: unless-stopped