kopia lustrzana https://github.com/linuxserver/docker-documentation
Bot Updating Documentation
rodzic
ba33790383
commit
1f73333477
|
@ -8,7 +8,7 @@
|
|||
[](https://hub.docker.com/r/linuxserver/booksonic-air)
|
||||
[](https://hub.docker.com/r/linuxserver/booksonic-air)
|
||||
[](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-booksonic-air/job/master/)
|
||||
[](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/booksonic-air/latest/index.html)
|
||||
[](https://ci-tests.linuxserver.io/linuxserver/booksonic-air/latest/index.html)
|
||||
|
||||
[Booksonic-air](http://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. .
|
||||
|
@ -17,7 +17,7 @@ Booksonic Air - A server for streaming your audiobooks, successor to the origina
|
|||
|
||||
Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/).
|
||||
|
||||
Simply pulling `linuxserver/booksonic-air` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
|
||||
Simply pulling `ghcr.io/linuxserver/booksonic-air` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
|
||||
|
||||
The architectures supported by this image are:
|
||||
|
||||
|
@ -39,26 +39,7 @@ This image provides various versions that are available via tags. `latest` tag u
|
|||
|
||||
Here are some example snippets to help you get started creating a container from this image.
|
||||
|
||||
### docker
|
||||
|
||||
```
|
||||
docker create \
|
||||
--name=booksonic-air \
|
||||
-e PUID=1000 \
|
||||
-e PGID=1000 \
|
||||
-e TZ=Europe/London \
|
||||
-e CONTEXT_PATH=url-base \
|
||||
-p 4040:4040 \
|
||||
-v </path/to/appdata/config>:/config \
|
||||
-v </path/to/audiobooks>:/audiobooks \
|
||||
-v </path/to/podcasts>:/podcasts \
|
||||
-v </path/to/othermedia>:/othermedia \
|
||||
--restart unless-stopped \
|
||||
linuxserver/booksonic-air
|
||||
```
|
||||
|
||||
|
||||
### docker-compose
|
||||
### docker-compose ([recommended](https://docs.linuxserver.io/general/docker-compose))
|
||||
|
||||
Compatible with docker-compose v2 schemas.
|
||||
|
||||
|
@ -67,7 +48,7 @@ Compatible with docker-compose v2 schemas.
|
|||
version: "2.1"
|
||||
services:
|
||||
booksonic-air:
|
||||
image: linuxserver/booksonic-air
|
||||
image: ghcr.io/linuxserver/booksonic-air
|
||||
container_name: booksonic-air
|
||||
environment:
|
||||
- PUID=1000
|
||||
|
@ -84,6 +65,25 @@ services:
|
|||
restart: unless-stopped
|
||||
```
|
||||
|
||||
### docker cli
|
||||
|
||||
```
|
||||
docker run -d \
|
||||
--name=booksonic-air \
|
||||
-e PUID=1000 \
|
||||
-e PGID=1000 \
|
||||
-e TZ=Europe/London \
|
||||
-e CONTEXT_PATH=url-base \
|
||||
-p 4040:4040 \
|
||||
-v </path/to/appdata/config>:/config \
|
||||
-v </path/to/audiobooks>:/audiobooks \
|
||||
-v </path/to/podcasts>:/podcasts \
|
||||
-v </path/to/othermedia>:/othermedia \
|
||||
--restart unless-stopped \
|
||||
ghcr.io/linuxserver/booksonic-air
|
||||
```
|
||||
|
||||
|
||||
## Parameters
|
||||
|
||||
Docker images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `<external>:<internal>` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container.
|
||||
|
@ -151,9 +151,9 @@ In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as bel
|
|||
Whilst this is a more up to date rebase of the original Booksonic server, upgrading in place is not supported and a fresh install has been recommended. Default user/pass is admin/admin
|
||||
|
||||
## Docker Mods
|
||||
[](https://mods.linuxserver.io/?mod=booksonic-air "view available mods for this container.")
|
||||
[](https://mods.linuxserver.io/?mod=booksonic-air "view available mods for this container.") [](https://mods.linuxserver.io/?mod=universal "view available universal mods.")
|
||||
|
||||
We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) can be accessed via the dynamic badge above.
|
||||
We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above.
|
||||
|
||||
|
||||
## Support Info
|
||||
|
@ -165,7 +165,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
|
|||
* Container version number
|
||||
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' booksonic-air`
|
||||
* Image version number
|
||||
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/booksonic-air`
|
||||
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/booksonic-air`
|
||||
|
||||
## Versions
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue