Title logo
linuxserver/booksonic-air.

3,074,573 34 amd64 arm64

Build Information

General build information for this image

Docker Hub linuxserver/booksonic-air
Build Time 01 May 2024 14:49:03
Category Audio
Synchronised Yes
Stable Yes
Deprecated No

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 2201.1.0 01 May 2024 at 14:49:02

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  booksonic-air:
    image: linuxserver/booksonic-air:2201.1.0
    container_name: booksonic-air
    restart: unless-stopped
    environment:
      - TZ=Europe/London # Specify a timezone to use e.g. Europe/London.
      - PUID=1000
      - PGID=1000
      - CONTEXT_PATH=url-base # Optional base url for use with reverse proxies etc.
    volumes:
      - /host/path/to/podcasts:/podcasts # Podcasts
      - /host/path/to/othermedia:/othermedia # Other media
      - /host/path/to/config:/config # Configuration files.
      - /host/path/to/audiobooks:/audiobooks # Audiobooks
    ports:
      - 4040:4040/tcp # Application WebUI

CLI

docker create \
  --name=booksonic-air \
  -e TZ=Europe/London `# Specify a timezone to use e.g. Europe/London.` \
  -e PUID=1000 \
  -e PGID=1000 \
  -e CONTEXT_PATH=url-base `# Optional base url for use with reverse proxies etc.` \
  -v /host/path/to/podcasts:/podcasts `# Podcasts` \
  -v /host/path/to/othermedia:/othermedia `# Other media` \
  -v /host/path/to/config:/config `# Configuration files.` \
  -v /host/path/to/audiobooks:/audiobooks `# Audiobooks` \
  -p 4040:4040/tcp `# Application WebUI` \
  --restart unless-stopped \
  linuxserver/booksonic-air:2201.1.0