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
ports:
- 7070:80
restart: unless-stopped
services:
audiobookshelf:
image: ghcr.io/advplyr/audiobookshelf:latest
network_mode: bridge
restart: unless-stopped
ports:
- 13378:80
volumes:
- /media/libraries/Audiobooks:/audiobooks
- /media/libraries/Podcasts:/podcasts
- /home/subspace/volumes/audiobookshelf/_data:/config
- /home/subspace/volumes/audiobookshelf/_data:/metadata