mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-05 00:00:32 +00:00
23 lines
759 B
YAML
23 lines
759 B
YAML
# Webgrabplus is a multi-site incremental xmltv epg grabber. It collects tv-
|
|
# program guide data from selected tvguide sites for your favourite channels.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
webgrabplus:
|
|
image: ghcr.io/linuxserver/webgrabplus
|
|
container_name: webgrabplus
|
|
environment:
|
|
# for GroupID
|
|
- PUID=${PUID:-1024}
|
|
# for UserID
|
|
- PGID=${PGID:-100}
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
volumes:
|
|
# Where webgrabplus should store it's config files.
|
|
- ${BASEDIR:-/volume1/docker}/webgrabplus/config:/config
|
|
# Where webgrabplus should store it's data files.
|
|
- ${BASEDIR:-/volume1/docker}/webgrabplus/data:/data
|
|
restart: unless-stopped
|