Skip to main content

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