Bot Updating Templated Files

This commit is contained in:
LinuxServer-CI
2019-05-04 03:33:57 -04:00
parent 91a20ba848
commit 2f113215d7
2 changed files with 41 additions and 25 deletions

View File

@@ -155,15 +155,6 @@ Below are the instructions for updating containers:
* Start the new container: `docker start sonarr`
* You can also remove the old dangling images: `docker image prune`
### Via Taisun auto-updater (especially useful if you don't remember the original parameters)
* Pull the latest image at its tag and replace it with the same env variables in one shot:
```
docker run --rm \
-v /var/run/docker.sock:/var/run/docker.sock taisun/updater \
--oneshot sonarr
```
* You can also remove the old dangling images: `docker image prune`
### Via Docker Compose
* Update all images: `docker-compose pull`
* or update a single image: `docker-compose pull sonarr`
@@ -171,6 +162,35 @@ Below are the instructions for updating containers:
* or update a single container: `docker-compose up -d sonarr`
* You can also remove the old dangling images: `docker image prune`
### Via Watchtower auto-updater (especially useful if you don't remember the original parameters)
* Pull the latest image at its tag and replace it with the same env variables in one run:
```
docker run --rm \
-v /var/run/docker.sock:/var/run/docker.sock \
containrrr/watchtower \
--run-once sonarr
```
* You can also remove the old dangling images: `docker image prune`
## Building locally
If you want to make local modifications to these images for development purposes or just to customize the logic:
```
git clone https://github.com/linuxserver/docker-sonarr.git
cd docker-sonarr
docker build \
--no-cache \
--pull \
-t linuxserver/sonarr:latest .
```
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
```
docker run --rm --privileged multiarch/qemu-user-static:register --reset
```
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
## Versions
* **23.03.19:** - Switching to new Base images, shift to arm32v7 tag.