docker-compose: Add list of peers to backfill from

mike/downloader/handle-404
Mike Lang 6 years ago committed by Christopher Usher
parent 0d627715f3
commit 89d6b3a6be

@ -29,6 +29,10 @@
backfiller: 8002, backfiller: 8002,
}, },
// Other nodes to backfill from. You should not include the local node.
peers:: [
"http://wubloader.codegunner.com/"
],
// Now for the actual docker-compose config // Now for the actual docker-compose config
@ -70,6 +74,7 @@
command: [ command: [
"--stream", $.channel, "--stream", $.channel,
"-v", std.join(",", $.qualities), "-v", std.join(",", $.qualities),
"--nodes", std.join(",", $.peers),
], ],
// Mount the segments directory at /mnt // Mount the segments directory at /mnt
volumes: ["%s:/mnt" % $.segments_path], volumes: ["%s:/mnt" % $.segments_path],

Loading…
Cancel
Save