diff --git a/docker-compose.jsonnet b/docker-compose.jsonnet index 205d81f..64008a8 100644 --- a/docker-compose.jsonnet +++ b/docker-compose.jsonnet @@ -29,6 +29,10 @@ 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 @@ -70,6 +74,7 @@ command: [ "--stream", $.channel, "-v", std.join(",", $.qualities), + "--nodes", std.join(",", $.peers), ], // Mount the segments directory at /mnt volumes: ["%s:/mnt" % $.segments_path],