Working version

This commit is contained in:
2025-09-15 11:36:43 -04:00
parent 3d4afe7eab
commit 2003b9d115
10 changed files with 968 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
version: "3.8"
services:
epg-runner:
build: .
image: epg-runner:latest
container_name: epg-runner
environment:
TZ: America/New_York
XML_URL: ""
MLB_SCHED_URL: ""
EPL_SCHED_URL: ""
UFC_SCHED_URL: ""
volumes:
- ./data:/app/data
# Dont start automatically, only when scheduler calls it
restart: "no"