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

28 lines
839 B
YAML
Raw Normal View History

2021-04-10 10:16:29 +00:00
# Photoshow is gallery software at its easiest, it doesn't even require a
# database.
---
version: "2.1"
services:
photoshow:
image: ghcr.io/linuxserver/photoshow
container_name: photoshow
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- 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:
# Stores config and logs for nginx base.
- ${BASEDIR:-/volume1/docker}/photoshow/config:/config
# Your local folder of photos you wish to share.
- ${BASEDIR:-/volume1/docker}/photoshow/Pictures:ro:/Pictures:ro
# Local folder to store thumbnails of your images.
- ${BASEDIR:-/volume1/docker}/photoshow/Thumbs:/Thumbs
ports:
# WebUI
- 80:80
restart: unless-stopped