docker-compose: Add support for new channel format

pull/355/head
Mike Lang 1 year ago committed by Mike Lang
parent 18b71e6f5f
commit 0192e5246a

@ -277,8 +277,9 @@
for key in std.objectFields($.db_args) for key in std.objectFields($.db_args)
]), ]),
// Cleaned up version of $.channels without importance markers // Cleaned up version of $.channels without importance/type markers.
clean_channels:: [std.split(c, '!')[0] for c in $.channels], // General form is CHANNEL[!][:TYPE:URL].
clean_channels:: [std.split(std.split(c, ":")[0], '!')[0] for c in $.channels],
// Image format helper // Image format helper
get_image(name, tag=$.image_tag):: "%s/wubloader-%s:%s" % [ get_image(name, tag=$.image_tag):: "%s/wubloader-%s:%s" % [

Loading…
Cancel
Save