mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-14 18:12:47 +00:00
32 lines
1.2 KiB
YAML
32 lines
1.2 KiB
YAML
|
# 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
|