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.

30 lines
920 B
YAML

# [Pixapop](https://github.com/bierdok/pixapop) is an open-source single page
# application to view your photos in the easiest way possible.
---
version: "2.1"
services:
pixapop:
image: ghcr.io/linuxserver/pixapop
container_name: pixapop
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
# Specify a username to enable authentication.
- APP_USERNAME=admin # optional
# Specify a password to enable authentication.
- APP_PASSWORD=admin # optional
volumes:
# Stores config and logs for nginx base.
- ${BASEDIR:-/volume1/docker}/pixapop/config:/config
# Your local folder of photos.
- ${BASEDIR:-/volume1/docker}/pixapop/photos:/photos
ports:
# WebUI
- 80:80
restart: unless-stopped