add follow games to docker-compose.jsonnet

condor-scripts
Mike Lang 5 years ago
parent f7154cd054
commit 06ea2a31b5

@ -32,6 +32,7 @@
// Channels suffixed with a '!' are considered "important" and will be retried more aggressively // Channels suffixed with a '!' are considered "important" and will be retried more aggressively
// and warned about if they're not currently streaming. // and warned about if they're not currently streaming.
channels:: ["desertbus!", "db_chief", "db_high", "db_audio", "db_bus"], channels:: ["desertbus!", "db_chief", "db_high", "db_audio", "db_bus"],
follow_games:: ["Crypt of the Necrodancer"],
// Stream qualities to capture // Stream qualities to capture
qualities:: ["source", "480p"], qualities:: ["source", "480p"],
@ -189,8 +190,9 @@
[if $.enabled.downloader then "downloader"]: { [if $.enabled.downloader then "downloader"]: {
image: "quay.io/ekimekim/wubloader-downloader:%s" % $.image_tag, image: "quay.io/ekimekim/wubloader-downloader:%s" % $.image_tag,
// Args for the downloader: set channel and qualities // Args for the downloader: set channel and qualities
command: $.channels + command: $.channels + std.flattenArrays([
[ ["--follow-game", game] for game in $.follow_games
]) + [
"--base-dir", "/mnt", "--base-dir", "/mnt",
"--qualities", std.join(",", $.qualities), "--qualities", std.join(",", $.qualities),
"--backdoor-port", std.toString($.backdoor_port), "--backdoor-port", std.toString($.backdoor_port),

Loading…
Cancel
Save