Title logo
linuxserver/pixapop.

17,208 7 arm64 arm amd64 Deprecated

Build Information

General build information for this image

Docker Hub linuxserver/pixapop
Build Time 14 Oct 2022 17:59:45
Base Image lsiobase/alpine-nginx:3.12
Category Productivity
Synchronised Yes
Stable Yes
Deprecated Yes

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 1.2.20221014 14 Oct 2022 at 17:59:45

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  pixapop:
    image: linuxserver/pixapop:1.2.20221014
    container_name: pixapop
    restart: unless-stopped
    environment:
      - TZ=Europe/London # Specify a timezone to use
      - PUID=1000 # User ID to run as
      - PGID=1000 # Group ID to run as
      - APP_USERNAME=admin # Optional - specify a username to enable auth
      - APP_PASSWORD=password # Optional - specify a password to enable auth
    volumes:
      - /host/path/to/photos:/photos # Your local folder of photos
      - /host/path/to/config:/config # Contains all relevant configuration files.
    ports:
      - 80:80/tcp # Web UI

CLI

docker create \
  --name=pixapop \
  -e TZ=Europe/London `# Specify a timezone to use` \
  -e PUID=1000 `# User ID to run as` \
  -e PGID=1000 `# Group ID to run as` \
  -e APP_USERNAME=admin `# Optional - specify a username to enable auth` \
  -e APP_PASSWORD=password `# Optional - specify a password to enable auth` \
  -v /host/path/to/photos:/photos `# Your local folder of photos` \
  -v /host/path/to/config:/config `# Contains all relevant configuration files.` \
  -p 80:80/tcp `# Web UI` \
  --restart unless-stopped \
  linuxserver/pixapop:1.2.20221014