mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-05 00:00:32 +00:00
25 lines
671 B
YAML
25 lines
671 B
YAML
# [digiKam](https://www.digikam.org/): Professional Photo Management with the
|
|
# Power of Open Source
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
digikam:
|
|
image: ghcr.io/linuxserver/digikam
|
|
container_name: digikam
|
|
network_mode: host
|
|
environment:
|
|
# for GroupID
|
|
- PUID=${PUID:-1024}
|
|
# for UserID
|
|
- PGID=${PGID:-100}
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
volumes:
|
|
# Users home directory in the container, stores database.
|
|
- ${BASEDIR:-/volume1/docker}/digikam/config:/config
|
|
ports:
|
|
# digiKam desktop gui
|
|
- 3000:3000 # optional
|
|
restart: unless-stopped
|