mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-18 15:25:41 +00:00
30 lines
920 B
YAML
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 UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- 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
|