2021-04-21 00:55:42 +00:00
|
|
|
# [Webgrabplus](http://www.webgrabplus.com) is a multi-site incremental xmltv
|
|
|
|
# epg grabber. It collects tv-program guide data from selected tvguide sites for
|
|
|
|
# your favourite channels.
|
2021-04-10 10:16:29 +00:00
|
|
|
|
|
|
|
source ./.env
|
|
|
|
docker run -d \
|
|
|
|
--name=webgrabplus \
|
|
|
|
-e PUID=${PUID:-1024} `# for GroupID` \
|
|
|
|
-e PGID=${PGID:-100} `# for UserID` \
|
2021-04-13 00:58:58 +00:00
|
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
|
2021-04-10 10:16:29 +00:00
|
|
|
-v ${BASEDIR:-/volume1/docker}/webgrabplus/config:/config `# Where webgrabplus should store it's config files.` \
|
|
|
|
-v ${BASEDIR:-/volume1/docker}/webgrabplus/data:/data `# Where webgrabplus should store it's data files.` \
|
|
|
|
--restart unless-stopped \
|
|
|
|
ghcr.io/linuxserver/webgrabplus
|