Advice setting up Docker image to pull Schedules Direct data

Associate
Joined
27 Jul 2009
Posts
381
Hi there.

I have just reinstalled my home server (Openmediavault 6) and have tried to install all programs via Docker, wherever possible.

I am pretty new to Docker but have been using portainer and seem to have got TVHeadend up and working without too much issue.

However, to get decent EPG data, I have a Schedules Direct account and need to find a Docker image to download the data so I can feed this into TVHeadend.

I have found this:

GitHub - mar-mei/guide2go: Schedules Direct JSON to XML grabber

and deployed the following code:

Code:
version: "3.4"
services:
guide2go:
container_name: guide2go
image: chuchodavids/guide2go:stable
ports:
- 8080:8080
environment:
- TZ:Europe/London
volumes:
- /SSD/appdata/guide2go:/config
- /SSD/appdata/guide2go:/data/livetv/
- /SSD/appdata/guide2go:/data/images/
restart: always

However, I keep getting the following error:

Code:
2023/04/10 15:08:23 [G2G ] Version: 1.1.3
2023/04/10 15:08:23 [ERROR] open /app/config.yaml: no such file or directory

Any help would be much appreciated.
 
Last edited:
Associate
OP
Joined
27 Jul 2009
Posts
381
Create that and retry it.

Thanks Thorik - I was under the impression that the config.yaml file should appear automatically but I deliberately created one and it is still complaining about not being able to find /app/config.yaml.

I have very limited knowledge of Dockers but there is no /app/ directory so I have no idea what it is after.

I think I am going to have find another container as this one seems inherently flawed.

Thanks very much for your input - much appreciated.
 
Back
Top Bottom