ayywhatdoido wrote:
I tried to pull the images manually, ghcr.io/gethomepage/homepage:v1.13.1 seems to work: Status: Downloaded newer image for ghcr.io/gethomepage/homepage:v1.13.1 docker pull portainer/portainer-ce:2.41.1 seemed to work: Status: Downloaded newer image for portainer/portainer-ce:2.41.1 here is what I get when I try docker pull jc21/nginx-proxy-manager:2.14.0 2.14.0: Pulling from jc21/nginx-proxy-manager 495fa4cc97d5: Pulling fs layer 6bd88bec9cc0: Pulling fs layer c254cd80d4c0: Pulling fs layer e6e5466ce550: Pulling fs layer aa216effab32: Pulling fs layer d94ac94ec63e: Pulling fs layer 36344cf41098: Pulling fs layer e11358e07b6b: Pulling fs layer 4f4fb700ef54: Pulling fs layer b7f8405c4a00: Pulling fs layer fe0ae75f9de9: Pulling fs layer 67ae50c4fdb8: Pulling fs layer 1a2af8e4f8ae: Pulling fs layer 549132489578: Pulling fs layer c3b31d2ad47a: Pulling fs layer 38ff6bedf477: Pulling fs layer b3c4105f2fe6: Pulling fs layer 303e80afdf2b: Pulling fs layer 169eb6fdb5ac: Pulling fs layer afe052ef9452: Pulling fs layer 34358f1a3ffb: Pulling fs layer 3cda7349d27c: Pulling fs layer 2669007f0c08: Pulling fs layer d7ab7d29525b: Pulling fs layer 7ad22091f35d: Pulling fs layer 9f48ec1f72f7: Pulling fs layer e8151c877c09: Pulling fs layer 9813e97f1b74: Pulling fs layer 01027c60d453: Pulling fs layer a9e43de3c32a: Pulling fs layer 0d4dd8251b39: Pulling fs layer failed to copy: httpReadSeeker: failed open: failed to do request: Get "https://production.cloudflare.docker.com/registry-v2/docker/registry/v2/blobs/sha256/6b/6bd88bec9cc0ddbf6de0f895f0a824a3b503615d2fd52336992a037a2ac62eda/data?expires=1779172763&signature=OtDUDW5NCGMsOq7439zx7FuCocM%3D&version=3": net/http: TLS handshake timeout Im on a brand new debian install.. extremely new to this so go easy on me
tomspark wrote:
You're not being rate-limited and disk is fine — the tell is that ghcr.io images pull but anything from Docker Hub (production.cloudflare.docker.com) dies with TLS handshake timeout partway through. That pattern is almost always an MTU problem: oversized packets get silently dropped on some connections (certain ISPs, PPPoE, VPNs, virtual NICs), so the handshake to that one CDN stalls while smaller transfers go through. On the box, create /etc/docker/daemon.json containing { "mtu": 1400 }, then sudo systemctl restart docker, and re-run the SparkBox install. If it still times out at the same spot, tell me whether this box is on a VPN, PPPoE/DSL, or a VM/VPS and I'll narrow it down.