From ffcf2bba9350b1d3f3850bb8eb8c0987afecef0e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 26 Jan 2024 16:43:28 +0000 Subject: [PATCH] Bot Updating Documentation --- docs/images/docker-beets.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/images/docker-beets.md b/docs/images/docker-beets.md index 6a79d56d8..7514a61c0 100644 --- a/docs/images/docker-beets.md +++ b/docs/images/docker-beets.md @@ -72,9 +72,9 @@ services: - PGID=1000 - TZ=Etc/UTC volumes: - - :/config - - :/music - - :/downloads + - /path/to/beets/config:/config + - /path/to/music/library:/music + - /path/to/ingest:/downloads ports: - 8337:8337 restart: unless-stopped @@ -89,9 +89,9 @@ docker run -d \ -e PGID=1000 \ -e TZ=Etc/UTC \ -p 8337:8337 \ - -v :/config \ - -v :/music \ - -v :/downloads \ + -v /path/to/beets/config:/config \ + -v /path/to/music/library:/music \ + -v /path/to/ingest:/downloads \ --restart unless-stopped \ lscr.io/linuxserver/beets:latest ``` @@ -118,7 +118,7 @@ Containers are configured using parameters passed at runtime (such as those abov | Volume | Function | | :----: | --- | -| `/config` | Configuration files. | +| `/config` | Persistent config files | | `/music` | Music library | | `/downloads` | Non processed music | @@ -290,6 +290,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **23.12.23:** - Rebase to Alpine 3.19. * **25.08.23:** - Rebase to Alpine 3.18, pin Pillow to 9.5.0. * **07.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf) * **25.03.23:** - Add requests_oauthlib required for [beatport plugin](https://beets.readthedocs.io/en/stable/plugins/beatport.html).