Portainer Templates

Booksonic-air

Libraryserver

[Booksonic-air](https://booksonic.org) is a platform for accessing the audibooks you own wherever you are. At the moment the platform consists of Booksonic Air - A server for streaming your audiobooks, successor to the original Booksonic server and based on Airsonic. Booksonic App - An DSub based Android app for connection to Booksonic-Air servers. .

Pulls: 3.1M
Stars: 34
User: linuxserver
Created: Sep 20, 2020
Updated: 16 days ago
Status: active
Type Container Platform linux Image linuxserver/booksonic-air:latest Ports

4040:4040/tcp

Volumes

/config : /volume1/docker/booksonic-air/config /audiobooks : /volume1/docker/booksonic-air/audiobooks /podcasts : /volume1/docker/booksonic-air/podcasts /othermedia : /volume1/docker/booksonic-air/othermedia

Restart Policy unless-stopped Env Vars

PUID=1024PGID=100TZ=Europe/AmsterdamCONTEXT_PATH=url-base

Installation

Via Portainer

  1. Ensure both Docker and Portainer are installed, and up-to-date
  2. Log into your Portainer web UI
  3. Under Settings → App Templates, paste the below URL
  4. Head to Home → App Templates, and the list of apps will show up
  5. Select the app you wish to deploy, fill in any config options, and hit Deploy

Template Import URL

https://raw.githubusercontent.com/Lissy93/portainer-templates/main/templates.json
Show Me demo

Via Docker Run

docker run -d \ 
  -p 4040:4040/tcp \
  -e PUID=${PUID} \
  -e PGID=${PGID} \
  -e TZ=${TZ} \
  -e CONTEXT_PATH=${CONTEXT_PATH} \
  -v /volume1/docker/booksonic-air/config:/config \
  -v /volume1/docker/booksonic-air/audiobooks:/audiobooks \
  -v /volume1/docker/booksonic-air/podcasts:/podcasts \
  -v /volume1/docker/booksonic-air/othermedia:/othermedia \
  --restart=unless-stopped \
  linuxserver/booksonic-air:latest

Via Docker Compose

Save this file as docker-compose.yml and run docker-compose up -d
Use this only as a guide.

version: '3.8'
services:
  booksonic-air:
    image: linuxserver/booksonic-air:latest
    ports:
      - 4040:4040:tcp
    environment:
      PUID: ''
      PGID: ''
      TZ: ''
      CONTEXT_PATH: ''
    volumes:
      - /volume1/docker/booksonic-air/config:/config
      - /volume1/docker/booksonic-air/audiobooks:/audiobooks
      - /volume1/docker/booksonic-air/podcasts:/podcasts
      - /volume1/docker/booksonic-air/othermedia:/othermedia

Alternative Methods

For more installation options, see the Documentation in the GitHub repo

Container Documentation