You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
589 B
Bash

# [digiKam]({{ project_url }}): Professional Photo Management with the Power of
# Open Source
source ./.env
docker run -d \
--name=digikam \
--net=host `# Use Host Networking` \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-p 3000:3000 `# optional` `# digiKam desktop gui` \
-v ${BASEDIR:-/volume1/docker}/digikam/config:/config `# Users home directory in the container, stores database.` \
--restart unless-stopped \
ghcr.io/linuxserver/digikam