From 37ffc6c5fac27c35c30c7597003decc57289374d Mon Sep 17 00:00:00 2001 From: Hyperling Date: Thu, 4 Jun 2026 17:10:34 -0700 Subject: [PATCH] Add initial compose file for Lychee. --- Config/Lychee/docker-compose.example.yml | 26 ++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Config/Lychee/docker-compose.example.yml diff --git a/Config/Lychee/docker-compose.example.yml b/Config/Lychee/docker-compose.example.yml new file mode 100644 index 0000000..1773745 --- /dev/null +++ b/Config/Lychee/docker-compose.example.yml @@ -0,0 +1,26 @@ +# https://hub.docker.com/r/linuxserver/lychee +# Still a work in progress, unsure if DB vars need filled. +--- +services: + lychee: + image: lscr.io/linuxserver/lychee:latest + container_name: lychee + environment: + - PUID=1000 + - PGID=1000 + - TZ=Etc/UTC + - DB_CONNECTION= + - DB_HOST= + - DB_PORT= + - DB_USERNAME= + - DB_PASSWORD= + - DB_DATABASE= + - APP_NAME=Lychee #optional + - APP_URL= #optional + - TRUSTED_PROXIES= #optional + volumes: + - /path/to/lychee/config:/config + - /path/to/pictures:/pictures + ports: + - 80:80 + restart: unless-stopped