2021-04-21 00:55:42 +00:00
|
|
|
# [Lazylibrarian](https://lazylibrarian.gitlab.io/) 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.
|
2021-04-10 10:16:29 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
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
|
2021-04-13 00:58:58 +00:00
|
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
2021-04-10 10:16:29 +00:00
|
|
|
# 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
|
2021-06-23 00:42:12 +00:00
|
|
|
- ${BASEDIR:-/volume1/docker}/lazylibrarian/books:/books # optional
|
2021-04-10 10:16:29 +00:00
|
|
|
ports:
|
|
|
|
# The port for the LazyLibrarian webinterface
|
|
|
|
- 5299:5299
|
|
|
|
restart: unless-stopped
|