Installation
The service can be installed through the Portainer web interface.
Learn about creating a new stack.
Docker Compose
Use the following code to install the service:
---
services:
lazylibrarian:
image: lscr.io/linuxserver/lazylibrarian:latest
container_name: lazylibrarian
network_mode: bridge
environment:
- PUID=1000
- PGID=1000
- TZ=America/Vancouver
- DOCKER_MODS=linuxserver/mods:universal-calibre|linuxserver/mods:lazylibrarian-ffmpeg
volumes:
# Persistent Data
- /srv/lazylibrarian:/config
# Download Folders
- /mnt/downloads:/downloads
# Media Folders
- /mnt/books:/books
ports:
- 5299:5299
restart: unless-stopped