Installation
AudiobookshelfThe service can be installed by followingthrough the Portainer guideweb forinterface.
Learn about creating a new stack.
Docker stacks
Compose
Use the following Docker Compose code to runinstall thisthe app:service:
---
services:
audiobookshelf:
image: ghcr.io/advplyr/audiobookshelf:latest
container_name: audiobookshelf
network_mode: bridge
environment:
- TZ=America/Vancouver
volumes:
# Persistent Data
- /srv/audiobookshelf/config:/config
- /srv/audiobookshelf/metadata:/metadata
# Media Folders
- /mnt/audiobooks:/mmt/audiobooks
- /mnt/books:/mmt/books
- /mnt/podcasts:/mmt/podcasts
ports:
- 7070:80
restart: unless-stopped