mirror of
https://github.com/linuxserver/docker-beets
synced 2025-12-06 08:23:31 +01:00
Bot Updating Templated Files
This commit is contained in:
parent
58a50ababf
commit
5582b5dae0
1 changed files with 7 additions and 6 deletions
13
README.md
13
README.md
|
|
@ -33,6 +33,7 @@ Find us at:
|
|||
[](https://github.com/linuxserver/docker-beets/releases)
|
||||
[](https://github.com/linuxserver/docker-beets/packages)
|
||||
[](https://gitlab.com/linuxserver.io/docker-beets/container_registry)
|
||||
[](https://quay.io/repository/linuxserver.io/beets)
|
||||
[](https://hub.docker.com/r/linuxserver/beets)
|
||||
[](https://hub.docker.com/r/linuxserver/beets)
|
||||
[](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-beets/job/master/)
|
||||
|
|
@ -46,7 +47,7 @@ Find us at:
|
|||
|
||||
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 `ghcr.io/linuxserver/beets` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
|
||||
Simply pulling `lscr.io/linuxserver/beets` 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:
|
||||
|
||||
|
|
@ -88,7 +89,7 @@ Here are some example snippets to help you get started creating a container.
|
|||
version: "2.1"
|
||||
services:
|
||||
beets:
|
||||
image: ghcr.io/linuxserver/beets
|
||||
image: lscr.io/linuxserver/beets
|
||||
container_name: beets
|
||||
environment:
|
||||
- PUID=1000
|
||||
|
|
@ -116,7 +117,7 @@ docker run -d \
|
|||
-v </path/to/music/library>:/music \
|
||||
-v </path/to/ingest>:/downloads \
|
||||
--restart unless-stopped \
|
||||
ghcr.io/linuxserver/beets
|
||||
lscr.io/linuxserver/beets
|
||||
```
|
||||
|
||||
## Parameters
|
||||
|
|
@ -176,7 +177,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
|
|||
* container version number
|
||||
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' beets`
|
||||
* image version number
|
||||
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/beets`
|
||||
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/beets`
|
||||
|
||||
## Updating Info
|
||||
|
||||
|
|
@ -194,7 +195,7 @@ Below are the instructions for updating containers:
|
|||
|
||||
### Via Docker Run
|
||||
|
||||
* Update the image: `docker pull ghcr.io/linuxserver/beets`
|
||||
* Update the image: `docker pull lscr.io/linuxserver/beets`
|
||||
* Stop the running container: `docker stop beets`
|
||||
* Delete the container: `docker rm beets`
|
||||
* Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved)
|
||||
|
|
@ -229,7 +230,7 @@ cd docker-beets
|
|||
docker build \
|
||||
--no-cache \
|
||||
--pull \
|
||||
-t ghcr.io/linuxserver/beets:latest .
|
||||
-t lscr.io/linuxserver/beets:latest .
|
||||
```
|
||||
|
||||
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
|
||||
|
|
|
|||
Loading…
Reference in a new issue