Advertisement
txhermit

Docker-Compose: Darktable

Feb 17th, 2025
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.76 KB | None | 0 0
  1. services:
  2.   darktable:
  3.     container_name: Darktable
  4.     image: ghcr.io/linuxserver/darktable
  5.     healthcheck:
  6.       test: timeout 10s bash -c ':> /dev/tcp/127.0.0.1/3000' || exit 1
  7.       interval: 10s
  8.       timeout: 5s
  9.       retries: 3
  10.       start_period: 90s
  11.     security_opt:
  12.      - no-new-privileges:true
  13.       - seccomp:unconfined
  14.     ports:
  15.      - 7450:3000
  16.     volumes:
  17.      - /home/baker/docker/darktable:/config:rw
  18.     environment:
  19.      DOCKER_MODS: linuxserver/mods:universal-package-install
  20.      CUSTOM_USER: baker
  21.      PASSWORD: pw_ bhere
  22.      #LC_ALL: de_DE.UTF-8 #Remove # in front of LC_ALL to add different languages de_DE for German it_IT for Italian etc.
  23.      TZ: America/Chicago
  24.      PUID: 1000
  25.      PGID: 1000
  26.     restart: on-failure:5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement