# [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. --- 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=${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