From ed32a224428f99296c67c3e5bdd4b4decba0d7a8 Mon Sep 17 00:00:00 2001 From: saarg Date: Sun, 24 Jan 2021 15:33:45 +0100 Subject: [PATCH] Update to version 3.1.5 beta (#31) --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- README.md | 9 +++++---- readme-vars.yml | 5 +++-- 5 files changed, 11 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2cac856..24c5ba7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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. diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 710d114..909c666 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -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. diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 46c1ca6..a0251ae 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -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. diff --git a/README.md b/README.md index a7ef13e..d316a19 100644 --- a/README.md +++ b/README.md @@ -77,8 +77,8 @@ services: - PGID=1000 - TZ=Europe/London volumes: - - :/config - - :/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 :/config \ - -v :/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. diff --git a/readme-vars.yml b/readme-vars.yml index d14011b..daa6106 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -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: "", desc: "Where webgrabplus should store it's config files." } - - { vol_path: "/data", vol_host_path: "", 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." }