mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-18 15:25:41 +00:00
21 lines
1.2 KiB
Bash
21 lines
1.2 KiB
Bash
# [Booksonic-air](http://booksonic.org) is a platform for accessing the
|
|
# audiobooks 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.
|
|
|
|
. ./.env
|
|
docker run -d \
|
|
--name=booksonic-air \
|
|
-e PUID=${PUID:-1024} `# for UserID` \
|
|
-e PGID=${PGID:-100} `# for GroupID` \
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
|
|
-e CONTEXT_PATH=url-base `# optional` `# Base url for use with reverse proxies etc.` \
|
|
-p 4040:4040 `# Application WebUI` \
|
|
-v ${BASEDIR:-/volume1/docker}/booksonic-air/config:/config `# Configuration files.` \
|
|
-v ${BASEDIR:-/volume1/docker}/booksonic-air/audiobooks:/audiobooks `# Audiobooks.` \
|
|
-v ${BASEDIR:-/volume1/docker}/booksonic-air/podcasts:/podcasts `# Podcasts.` \
|
|
-v ${BASEDIR:-/volume1/docker}/booksonic-air/othermedia:/othermedia `# Other media.` \
|
|
--restart unless-stopped \
|
|
ghcr.io/linuxserver/booksonic-air
|