Booksonic-air
[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. .
linux
Image
linuxserver/booksonic-air:latest
Ports
4040:4040/tcp
/config : /volume1/docker/booksonic-air/config
/audiobooks : /volume1/docker/booksonic-air/audiobooks
/podcasts : /volume1/docker/booksonic-air/podcasts
/othermedia : /volume1/docker/booksonic-air/othermedia
unless-stopped
Env Vars
PUID=1024
PGID=100
TZ=Europe/Amsterdam
CONTEXT_PATH=url-base
Installation
Via Portainer
- Ensure both Docker and Portainer are installed, and up-to-date
- Log into your Portainer web UI
- Under Settings → App Templates, paste the below URL
- Head to Home → App Templates, and the list of apps will show up
- 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
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