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