linuxserver/digikam.

416,895 31 amd64 arm64

Build Information

General build information for this image

Docker Hub linuxserver/digikam
Build Time 19 Apr 2024 18:47:22
Category Photography
Synchronised Yes
Stable Yes
Deprecated No

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest version-2024-04-19 19 Apr 2024 at 18:47:22

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  digikam:
    image: linuxserver/digikam:version-2024-04-19
    container_name: digikam
    network_mode: host
    restart: unless-stopped
    environment:
      - TZ=America/New_York	 # Specify a timezone to use EG America/New_York.
      - PUID=1000 # for UserID
      - PGID=1000 # for GroupID
    volumes:
      - /host/path/to/config:/config # Users home directory in the container, stores database.

CLI

docker create \
  --name=digikam \
  --net=host \
  -e TZ=America/New_York	 `# Specify a timezone to use EG America/New_York.` \
  -e PUID=1000 `# for UserID` \
  -e PGID=1000 `# for GroupID` \
  -v /host/path/to/config:/config `# Users home directory in the container, stores database.` \
  --restart unless-stopped \
  linuxserver/digikam:version-2024-04-19