Bot Updating Documentation

pull/56/head
LinuxServer-CI 2022-04-29 15:06:19 -05:00
rodzic 7571bcd6c2
commit a268530af0
1 zmienionych plików z 17 dodań i 10 usunięć

Wyświetl plik

@ -21,17 +21,17 @@ title: webgrabplus
## Supported Architectures ## Supported Architectures
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/). 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 `lscr.io/linuxserver/webgrabplus` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. Simply pulling `lscr.io/linuxserver/webgrabplus:latest` 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: The architectures supported by this image are:
| Architecture | Tag | | Architecture | Available | Tag |
| :----: | --- | | :----: | :----: | ---- |
| x86-64 | amd64-latest | | x86-64 | ✅ | amd64-\<version tag\> |
| arm64 | arm64v8-latest | | arm64 | ✅ | arm64v8-\<version tag\> |
| armhf | arm32v7-latest | | armhf| ✅ | arm32v7-\<version tag\> |
## Application Setup ## Application Setup
@ -76,8 +76,10 @@ To help you get started creating a container from this image you can either use
version: "2.1" version: "2.1"
services: services:
webgrabplus: webgrabplus:
image: lscr.io/linuxserver/webgrabplus image: lscr.io/linuxserver/webgrabplus:latest
container_name: webgrabplus container_name: webgrabplus
hostname: webgrabplus
mac_address: 00:00:00:00:00:00
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
@ -93,13 +95,15 @@ services:
```bash ```bash
docker run -d \ docker run -d \
--name=webgrabplus \ --name=webgrabplus \
--hostname=webgrabplus \
--mac-address=00:00:00:00:00:00 \
-e PUID=1000 \ -e PUID=1000 \
-e PGID=1000 \ -e PGID=1000 \
-e TZ=Europe/London \ -e TZ=Europe/London \
-v /path/to/config:/config \ -v /path/to/config:/config \
-v /path/to/data:/data \ -v /path/to/data:/data \
--restart unless-stopped \ --restart unless-stopped \
lscr.io/linuxserver/webgrabplus lscr.io/linuxserver/webgrabplus:latest
``` ```
## Parameters ## Parameters
@ -130,6 +134,8 @@ Docker images are configured using parameters passed at runtime (such as those a
| Parameter | Function | | Parameter | Function |
| :-----: | --- | | :-----: | --- |
| `--hostname=` | Set the hostname for the container for the license check. |
| `--mac-address=` | Set the mac_address for the container for the license check. |
## Environment variables from files (Docker secrets) ## Environment variables from files (Docker secrets)
@ -176,10 +182,11 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
* Container version number * Container version number
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' webgrabplus` * `docker inspect -f '{{ index .Config.Labels "build_version" }}' webgrabplus`
* Image version number * Image version number
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/webgrabplus` * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/webgrabplus:latest`
## Versions ## Versions
* **29.04.22:** - Add `hostname` and `mac_address` arguments that are needed for the license check to compose and cli samples.
* **23.03.22:** - Rebase to Alpine 3.15. * **23.03.22:** - Rebase to Alpine 3.15.
* **23.03.22:** - Update to use dotnet instead of mono. * **23.03.22:** - Update to use dotnet instead of mono.
* **06.01.22:** - Rebase to Ubuntu focal. Enable auto builds on version updates (beta and stable). * **06.01.22:** - Rebase to Ubuntu focal. Enable auto builds on version updates (beta and stable).