snppla 16fff0f51d Update 'Dockerfile' | 5 жил өмнө | |
---|---|---|
.github | 8 жил өмнө | |
root | 5 жил өмнө | |
.dockerignore | 8 жил өмнө | |
.gitattributes | 8 жил өмнө | |
.gitignore | 8 жил өмнө | |
Dockerfile | 5 жил өмнө | |
Dockerfile.aarch64 | 5 жил өмнө | |
Dockerfile.armhf | 5 жил өмнө | |
Jenkinsfile | 5 жил өмнө | |
LICENSE | 5 жил өмнө | |
README.md | 5 жил өмнө | |
jenkins-vars.yml | 5 жил өмнө | |
package_versions.txt | 5 жил өмнө | |
readme-vars.yml | 5 жил өмнө |
The LinuxServer.io team brings you another container release featuring :-
Find us at:
#linuxserver.io
. Our primary support channel is Discord.Photoshow is gallery software at its easiest, it doesn't even require a database.
Our images support multiple architectures such as x86-64
, arm64
and armhf
. We utilise the docker manifest for multi-platform awareness. More information is available from docker here and our announcement here.
Simply pulling linuxserver/photoshow
should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
The architectures supported by this image are:
Architecture | Tag |
---|---|
x86-64 | amd64-latest |
arm64 | arm64v8-latest |
armhf | arm32v7-latest |
Here are some example snippets to help you get started creating a container.
docker create \
--name=photoshow \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-p 80:80 \
-v <path to data>:/config \
-v <path to pictures>:/Pictures:ro \
-v <path to store thumbs>:/Thumbs \
--restart unless-stopped \
linuxserver/photoshow
Compatible with docker-compose v2 schemas.
---
version: "2"
services:
photoshow:
image: linuxserver/photoshow
container_name: photoshow
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- <path to data>:/config
- <path to pictures>:/Pictures:ro
- <path to store thumbs>:/Thumbs
ports:
- 80:80
restart: unless-stopped
Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate <external>:<internal>
respectively. For example, -p 8080:80
would expose port 80
from inside the container to be accessible from the host's IP on port 8080
outside the container.
Parameter | Function |
---|---|
-p 80 |
WebUI |
-e PUID=1000 |
for UserID - see below for explanation |
-e PGID=1000 |
for GroupID - see below for explanation |
-e TZ=Europe/London |
Specify a timezone to use EG Europe/London. |
-v /config |
Stores config and logs for nginx base. |
-v /Pictures:ro |
Your local folder of photos you wish to share. |
-v /Thumbs |
Local folder to store thumbnails of your images. |
When using volumes (-v
flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user PUID
and group PGID
.
Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.
In this instance PUID=1000
and PGID=1000
, to find yours use id user
as below:
$ id username
uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup)
On first run create an admin account, any folder and its subfolders that you map to /Pictures will be presented as a webgallery. Config settings are persistent and stored as a subfolder of the /Thumbs mapping.
docker exec -it photoshow /bin/bash
docker logs -f photoshow
docker inspect -f '{{ index .Config.Labels "build_version" }}' photoshow
docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/photoshow
Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (ie. nextcloud, plex), we do not recommend or support updating apps inside the container. Please consult the Application Setup section above to see if it is recommended for the image.
Below are the instructions for updating containers:
docker pull linuxserver/photoshow
docker stop photoshow
docker rm photoshow
/config
folder and settings will be preserved)docker start photoshow
docker image prune
docker-compose pull
docker-compose pull photoshow
docker-compose up -d
docker-compose up -d photoshow
docker image prune
Pull the latest image at its tag and replace it with the same env variables in one run:
docker run --rm \
-v /var/run/docker.sock:/var/run/docker.sock \
containrrr/watchtower \
--run-once photoshow
You can also remove the old dangling images: docker image prune
If you want to make local modifications to these images for development purposes or just to customize the logic:
git clone https://github.com/linuxserver/docker-photoshow.git
cd docker-photoshow
docker build \
--no-cache \
--pull \
-t linuxserver/photoshow:latest .
The ARM variants can be built on x86_64 hardware using multiarch/qemu-user-static
docker run --rm --privileged multiarch/qemu-user-static:register --reset
Once registered you can define the dockerfile to use with -f Dockerfile.aarch64
.