A container to download the latest MediathekView Filmlist and extract the XZ archive. This image is mainly for the Filmlistmerger.
Default: /tmp
Description: The path where the downloaded Filmlist JSON should be copied to
Default: https://liste.mediathekview.de
Description: The url of the server from where the Filmliste-akt.json
should be downloaded.
docker run -v $PWD/download:/output:rw -e OUTPUT_PATH=/output mediathekview/filmlistdownloader
A K8s CRON Job
apiVersion: batch/v1beta1
kind: CronJob
metadata:
namespace: mediathekview
name: filmlist-download
labels:
app: filmlistmerger
spec:
schedule: "30 * * * *"
jobTemplate:
spec:
template:
spec:
containers:
- name: filmlist-downloader
image: mediathekview/filmlistdownloader
env:
- name: OUTPUT_PATH
value: /output
volumeMounts:
- mountPath: /output
name: filmlistInput
imagePullPolicy: Always
restartPolicy: OnFailure