1
0

Bot Updating Templated Files

This commit is contained in:
LinuxServer-CI
2019-05-03 12:32:49 +01:00
parent fb2c75179c
commit 9e9470eab5
2 changed files with 41 additions and 25 deletions

View File

@ -164,15 +164,6 @@ Below are the instructions for updating containers:
* Start the new container: `docker start oscam`
* 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 oscam
```
* 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 oscam`
@ -180,6 +171,35 @@ Below are the instructions for updating containers:
* or update a single container: `docker-compose up -d oscam`
* 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 oscam
```
* 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-oscam.git
cd docker-oscam
docker build \
--no-cache \
--pull \
-t linuxserver/oscam: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
* **29.04.19:** - Add revision check, so pipeline can build new revisions.