[05:39] Bish: If you put the mirror first in /etc/apt/sources.list, it takes priority. Here's how I set up mirrors when building Docker images: https://github.com/paulgear/docker-base/blob/main/Dockerfile [09:26] blahdeblah: thanks [09:26] i tried something similiar but failed [09:26] but good to know i was on the right track [09:28] Bish: Keep in mind, if the original contents are still in the file, they will still get polled for updates, and could still potentially be used if the ones above them are down. [09:28] So if I really want a particular mirror to be used, I take the originals out. [09:28] (as shown in the above Dockerfile) [20:57] yeah I came to the same conclusion, it's best to just have *one* of something in the apt sources -- if you put your fast one first, the 'slow' connections will happen near the end of the process. if you put the slow ones first, they'll be preferred over the fast ones. [20:57] it's better to not allow overlap.. [22:55] you could maybe list the supposedly buggy one first and then pin-priority its origin slightly lower than that of the other. but... messy, [22:55] (and i have not tested this)