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.

28 lines
886 B
YAML

# [Photoshow](https://github.com/thibaud-rohmer/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 UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
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