mirror of
https://github.com/linuxserver/docker-webgrabplus.git
synced 2026-02-19 19:52:00 +08:00
75 lines
3.7 KiB
YAML
75 lines
3.7 KiB
YAML
---
|
|
|
|
# project information
|
|
project_name: webgrabplus
|
|
project_url: "http://www.webgrabplus.com"
|
|
project_logo: "http://www.webgrabplus.com/sites/default/themes/WgTheme/images/slideshows/EPG_fading.jpg"
|
|
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels."
|
|
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
|
|
|
|
# supported architectures
|
|
available_architectures:
|
|
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
|
|
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
|
|
- { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
|
|
|
|
# container parameters
|
|
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." }
|
|
param_usage_include_ports: false
|
|
param_usage_include_env: true
|
|
param_env_vars:
|
|
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"}
|
|
|
|
# optional parameters
|
|
optional_block_1: false
|
|
optional_block_1_items: ""
|
|
|
|
# application setup block
|
|
app_setup_block_enabled: true
|
|
app_setup_block: |
|
|
To configure WebGrab+Plus follow the [documentation](http://www.webgrabplus.com/documentation/configuration/)
|
|
|
|
Note that there are some things in the guide that does not apply to this container. Below you can find the changes.
|
|
|
|
**The configuration files are found where your config volume is mounted.**
|
|
**Do not change the filename tag in the configuration file!**
|
|
|
|
The /data volume mapping is where WebGrab+Plus outputs the xml file. To use the xml file in another program, you have to point it to the host path you mapped the /data volume to.
|
|
|
|
To adjust the scheduled cron job for grabbing, edit the wg3-cron file found in the `/config` folder. After you have edited the the wg3-cron file, restart the container to apply the new schedule.
|
|
Do not adjust the command!
|
|
|
|
**Note that due to something in version 3, we had to change the commands for scheduling the grab. If you have a version where there is a wg-cron file in your /config mount, delete it and use wg3-cron instead.**
|
|
|
|
Below is the syntax of the cron file.
|
|
|
|
```
|
|
┌───────────── minute (0 - 59)
|
|
│ ┌───────────── hour (0 - 23)
|
|
│ │ ┌───────────── day of month (1 - 31)
|
|
│ │ │ ┌───────────── month (1 - 12)
|
|
│ │ │ │ ┌───────────── day of week (0 - 6) (Sunday to Saturday;
|
|
│ │ │ │ │ 7 is also Sunday on some systems)
|
|
│ │ │ │ │
|
|
│ │ │ │ │
|
|
* * * * * /bin/bash /defaults/update.sh
|
|
```
|
|
|
|
# changelog
|
|
changelogs:
|
|
- { date: "12.10.20:", desc: "Fix version number in jenkinsfile." }
|
|
- { date: "12.10.20:", desc: "Update to version 3.1.1 beta." }
|
|
- { date: "22.06.20:", desc: "Add mono webrequest library." }
|
|
- { date: "18.06.20:", desc: "Update to v3.1.0." }
|
|
- { date: "29.03.20:", desc: "Update to v3.0.0. Changed to use wg3-cron file." }
|
|
- { date: "28.05.19:", desc: "Update to v2.1.0 and beta v2.1.9, rebase to bionic." }
|
|
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
|
|
- { date: "21.03.19:", desc: "Update to beta 2.1.7." }
|
|
- { date: "19.02.19:", desc: "Add pipeline logic and multi arch." }
|
|
- { date: "18.01.18:", desc: "Initial Release." }
|