docker-bits/lsio/darktable/docker-compose.yaml

27 lines
892 B
YAML
Raw Normal View History

2021-04-21 00:55:42 +00:00
# [darktable](https://www.darktable.org/) is an open source photography workflow
2021-04-10 10:16:29 +00:00
# application and raw developer. A virtual lighttable and darkroom for
# photographers. It manages your digital negatives in a database, lets you view
# them through a zoomable lighttable and enables you to develop raw images and
# enhance them.
---
version: "2.1"
services:
darktable:
image: ghcr.io/linuxserver/darktable
container_name: darktable
environment:
# for UserID
2022-04-02 00:45:58 +00:00
- PUID=${PUID:-1024}
# for GroupID
2021-04-10 10:16:29 +00:00
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
2021-04-13 00:58:58 +00:00
- TZ=${TZ:-Europe/Amsterdam}
2021-04-10 10:16:29 +00:00
volumes:
# Users home directory in the container, stores program settings and images
- ${BASEDIR:-/volume1/docker}/darktable/config:/config
ports:
# Darktable desktop gui.
- 3000:3000
restart: unless-stopped