mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-18 15:25:41 +00:00
17 lines
816 B
Bash
17 lines
816 B
Bash
# [Pixapop](https://github.com/bierdok/pixapop) is an open-source single page
|
|
# application to view your photos in the easiest way possible.
|
|
|
|
source ./.env
|
|
docker run -d \
|
|
--name=pixapop \
|
|
-e PUID=${PUID:-1024} `# for UserID` \
|
|
-e PGID=${PGID:-100} `# for GroupID` \
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
|
|
-e APP_USERNAME=admin `# optional` `# Specify a username to enable authentication.` \
|
|
-e APP_PASSWORD=admin `# optional` `# Specify a password to enable authentication.` \
|
|
-p 80:80 `# WebUI` \
|
|
-v ${BASEDIR:-/volume1/docker}/pixapop/config:/config `# Stores config and logs for nginx base.` \
|
|
-v ${BASEDIR:-/volume1/docker}/pixapop/photos:/photos `# Your local folder of photos.` \
|
|
--restart unless-stopped \
|
|
ghcr.io/linuxserver/pixapop
|