# [darktable](https://www.darktable.org/) is an open source photography workflow # 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 - PUID=${PUID:-1024} # for GroupID - PGID=${PGID:-100} # specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). - TZ=${TZ:-Europe/Amsterdam} volumes: # Users home directory in the container, stores program settings and images - ${BASEDIR:-/volume1/docker}/darktable/config:/config ports: # Darktable desktop gui. - 3000:3000 # Darktable desktop gui HTTPS. - 3001:3001 restart: unless-stopped