diff --git a/images/docker-booksonic-air.md b/images/docker-booksonic-air.md index 646d101c03..6031fde461 100755 --- a/images/docker-booksonic-air.md +++ b/images/docker-booksonic-air.md @@ -33,15 +33,8 @@ The architectures supported by this image are: | :----: | :----: | ---- | | x86-64 | ✅ | amd64-\ | | arm64 | ✅ | arm64v8-\ | -| armhf | ✅ | arm32v7-\ | +| armhf | ❌ | | -## Version Tags - -This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags. - -| Tag | Available | Description | -| :----: | :----: |--- | -| latest | ✅ | Stable booksonic-air releases | ## Application Setup 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 @@ -65,10 +58,10 @@ services: - TZ=Etc/UTC - CONTEXT_PATH=url-base #optional volumes: - - :/config - - :/audiobooks - - :/podcasts - - :/othermedia + - /path/to/appdata/config:/config + - /path/to/audiobooks:/audiobooks + - /path/to/podcasts:/podcasts + - /path/to/othermedia:/othermedia ports: - 4040:4040 restart: unless-stopped @@ -84,10 +77,10 @@ docker run -d \ -e TZ=Etc/UTC \ -e CONTEXT_PATH=url-base `#optional` \ -p 4040:4040 \ - -v :/config \ - -v :/audiobooks \ - -v :/podcasts \ - -v :/othermedia \ + -v /path/to/appdata/config:/config \ + -v /path/to/audiobooks:/audiobooks \ + -v /path/to/podcasts:/podcasts \ + -v /path/to/othermedia:/othermedia \ --restart unless-stopped \ lscr.io/linuxserver/booksonic-air:latest @@ -175,5 +168,6 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to ## Versions +* **25.12.22:** - Rebase to Alpine 3.17, migrate to s6v3, bump jre to 11, deprecate armhf. * **18.04.22:** - Rebase to Alpine 3.15. * **15.09.20:** - Initial Release.