Update to version 3.1.5 beta (#31)

This commit is contained in:
saarg 2021-01-24 15:33:45 +01:00 committed by GitHub
parent 5fcc8f38e6
commit ed32a22442
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 9 deletions

View File

@ -7,7 +7,7 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
LABEL maintainer="saarg"
# package versions
ARG WEBGRAB_VER="3.1.4"
ARG WEBGRAB_VER="3.1.5"
ARG WGUPDATE_VER=""
# environment variables.

View File

@ -7,7 +7,7 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
LABEL maintainer="saarg"
# package versions
ARG WEBGRAB_VER="3.1.4"
ARG WEBGRAB_VER="3.1.5"
ARG WGUPDATE_VER=""
# environment variables.

View File

@ -7,7 +7,7 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
LABEL maintainer="saarg"
# package versions
ARG WEBGRAB_VER="3.1.4"
ARG WEBGRAB_VER="3.1.5"
ARG WGUPDATE_VER=""
# environment variables.

View File

@ -77,8 +77,8 @@ services:
- PGID=1000
- TZ=Europe/London
volumes:
- <path to config>:/config
- <path to data>:/data
- /path/to/config:/config
- /path/to/data:/data
restart: unless-stopped
```
@ -90,8 +90,8 @@ docker run -d \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-v <path to config>:/config \
-v <path to data>:/data \
-v /path/to/config:/config \
-v /path/to/data:/data \
--restart unless-stopped \
ghcr.io/linuxserver/webgrabplus
```
@ -243,6 +243,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **24.01.21:** - Update to version 3.1.5 beta.
* **22.12.20:** - Update to version 3.1.4 beta.
* **12.10.20:** - Fix version number in jenkinsfile.
* **12.10.20:** - Update to version 3.1.1 beta.

View File

@ -18,8 +18,8 @@ common_param_env_vars_enabled: true
param_container_name: "{{ project_name }}"
param_usage_include_vols: true
param_volumes:
- { vol_path: "/config", vol_host_path: "<path to config>", desc: "Where webgrabplus should store it's config files." }
- { vol_path: "/data", vol_host_path: "<path to data>", desc: "Where webgrabplus should store it's data files." }
- { vol_path: "/config", vol_host_path: "/path/to/config", desc: "Where webgrabplus should store it's config files." }
- { vol_path: "/data", vol_host_path: "/path/to/data", desc: "Where webgrabplus should store it's data files." }
param_usage_include_ports: false
param_usage_include_env: true
param_env_vars:
@ -62,6 +62,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "24.01.21:", desc: "Update to version 3.1.5 beta." }
- { date: "22.12.20:", desc: "Update to version 3.1.4 beta." }
- { date: "12.10.20:", desc: "Fix version number in jenkinsfile." }
- { date: "12.10.20:", desc: "Update to version 3.1.1 beta." }