Installation
Audiobookshelf can be installed by following the Portainer guide for creating a new stack. Learn about configuring a Docker stacks and then use the following Docker Compose code to run this app:
---
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