Audiobookshelf •
Audiobookshelf is a self-hosted book, audiobook and podcast streaming media server. Leverage open databases to keep your media metadata up-to-date. By creating user accounts, you can share media with friends and family.
Overview
Audiobookshelf is a self-hosted book, audiobook and podcast streaming media server. Leverage open databases to keep your media metadata up-to-date. By creating user accounts, you can share media with friends and family.
Tryout an Audiobookshelf demo.
- Keep track of progress across all of your books, audiobooks and podcasts.
- Subscribe to podcasts using the iOS and Android apps to download them automatically.
- Upload media directly from your web browser and search for metadata.
Media
Screenshots
Audiobookshelf v2.19.5
Setup & Configuration
We need to install the service through Portainer and configure any necessary settings.
Preparation
There are some things we need to do in preparation to install this service.
Volumes
Persistent Data
This is where the service will store its own application data and ensures we can quickly update the service image.
Ensure your user has permissions to access the folder.
Media Folders
This service will need access to the folders where you store your media files.
Ensure your user has permissions to access the folder.
Environment
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:
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
Updating
Re-Deploy the Stack
This service has been optimized for running in Docker.
This allows you to re-deploy the stack through Portainer to download the latest updates.
User Manual
Development
This software is released under the GPL-3.0 license.
You can learn more about how to contribute to Audiobookshelf through their documentation.