You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.2 KiB
YAML

4 years ago
# Lazylibrarian is a program to follow authors and grab metadata for all your
# digital reading needs. It uses a combination of Goodreads Librarything and
# optionally GoogleBooks as sources for author info and book info. This
# container is based on the DobyTang fork.
---
version: "2.1"
services:
lazylibrarian:
image: ghcr.io/linuxserver/lazylibrarian
container_name: lazylibrarian
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=Europe/Amsterdam
# Allows additional functionality to be added, e.g. the Calibredb import program (optional, more info below)
- DOCKER_MODS=linuxserver/calibre-web:calibre|linuxserver/mods:lazylibrarian-ffmpeg # optional
volumes:
# LazyLibrarian config
- ${BASEDIR:-/volume1/docker}/lazylibrarian/config:/config
# Download location
- ${BASEDIR:-/volume1/docker}/lazylibrarian/downloads:/downloads
# Books location
- ${BASEDIR:-/volume1/docker}/lazylibrarian/books:/books
ports:
# The port for the LazyLibrarian webinterface
- 5299:5299
restart: unless-stopped