mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-16 12:13:26 +00:00
35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
|
# Booksonic-air 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. .
|
||
|
|
||
|
---
|
||
|
version: "2.1"
|
||
|
services:
|
||
|
booksonic-air:
|
||
|
image: ghcr.io/linuxserver/booksonic-air
|
||
|
container_name: booksonic-air
|
||
|
environment:
|
||
|
# for GroupID
|
||
|
- PUID=${PUID:-1024}
|
||
|
# for UserID
|
||
|
- PGID=${PGID:-100}
|
||
|
# Specify a timezone to use for example Europe/Amsterdam
|
||
|
- TZ=Europe/Amsterdam
|
||
|
# Base url for use with reverse proxies etc.
|
||
|
- CONTEXT_PATH=url-base
|
||
|
volumes:
|
||
|
# Configuration files.
|
||
|
- ${BASEDIR:-/volume1/docker}/booksonic-air/config:/config
|
||
|
# Audiobooks.
|
||
|
- ${BASEDIR:-/volume1/docker}/booksonic-air/audiobooks:/audiobooks
|
||
|
# Podcasts.
|
||
|
- ${BASEDIR:-/volume1/docker}/booksonic-air/podcasts:/podcasts
|
||
|
# Other media.
|
||
|
- ${BASEDIR:-/volume1/docker}/booksonic-air/othermedia:/othermedia
|
||
|
ports:
|
||
|
# Application WebUI
|
||
|
- 4040:4040
|
||
|
restart: unless-stopped
|