Title logo
linuxserver/booksonic.

A Booksonic container, brought to you by LinuxServer.io.

50,472,296 81 amd64 arm64 arm Deprecated

Build Information

General build information for this image

Docker Hub linuxserver/booksonic
Build Time 11 Feb 2022 07:46:19
Base Image lsiobase/ubuntu:bionic
Category Media
Synchronised Yes
Stable Yes
Deprecated Yes

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 1.2.20220211 11 Feb 2022 at 07:46:19
prerelease 1.1.Beta1-ls2 30 Jan 2020 at 19:59:38

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  booksonic:
    image: linuxserver/booksonic:1.2.20220211
    container_name: booksonic
    restart: unless-stopped
    environment:
      - TZ # Specify a timezone to use, e.g. Europe/London.
      - PUID # UID of user to take ownership of application/files
      - PGID # GID of user to take ownership of application/files
      - CONTEXT_PATH # 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 \
  -e TZ `# Specify a timezone to use, e.g. Europe/London.` \
  -e PUID `# UID of user to take ownership of application/files` \
  -e PGID `# GID of user to take ownership of application/files` \
  -e CONTEXT_PATH `# 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:1.2.20220211