[go-nuts] Re: go mod download fails on docker for 1.20 (but not for 1.18)

2024-02-05 Thread 'Bryan C. Mills' via golang-nuts
In https://go.dev/issue/52545 we saw failures in the cmd/go tests on Google Cloud VMs due to a combination of a small number of available NAT ports and port exhaustion from TIME_WAIT connections, but the failure mode there was different (timed-out git commands rather than "cannot assign

[go-nuts] Re: go mod download fails on docker for 1.20 (but not for 1.18)

2024-02-02 Thread 'TheDiveO' via golang-nuts
carrier-grade NAT? On Friday, February 2, 2024 at 7:05:42 PM UTC+1 sprynger wrote: > In my case it might be an ISP problem, since this only happens to me when > I work from home. At work, the exact same project builds all at once > without any issues. > > A quinta-feira, 1 de fevereiro de 2024

[go-nuts] Re: go mod download fails on docker for 1.20 (but not for 1.18)

2024-02-02 Thread sprynger
In my case it might be an ISP problem, since this only happens to me when I work from home. At work, the exact same project builds all at once without any issues. A quinta-feira, 1 de fevereiro de 2024 à(s) 21:07:03 UTC, TheDiveO escreveu: > Are you still using Debian 11 and the outdated

[go-nuts] Re: go mod download fails on docker for 1.20 (but not for 1.18)

2024-02-01 Thread 'TheDiveO' via golang-nuts
Are you still using Debian 11 and the outdated Debian docker.io package with Docker 18? What happens when you use a recent Docker, either 24.x or hot-off-the-press 25.0.1? And then build using a Go-Alpine base image? Do you still use Debian's broken Docker seccomp profile...? I'm on an IPv6

[go-nuts] Re: go mod download fails on docker for 1.20 (but not for 1.18)

2024-02-01 Thread Sebastiaan van der Meulen
Same issue here without solution. Hoping anyone finds one Op zondag 14 januari 2024 om 22:53:54 UTC+1 schreef Dmitry Anderson (4nd3rs0n): > I'm having the same problem. For now I just vendor modules to a project > modules and run without installing anything from the container, but also >

[go-nuts] Re: go mod download fails on docker for 1.20 (but not for 1.18)

2024-01-14 Thread Dmitry Anderson (4nd3rs0n)
I'm having the same problem. For now I just vendor modules to a project modules and run without installing anything from the container, but also would like to find a fix. On Monday, May 22, 2023 at 2:29:08 AM UTC+2 Joao Miguel Ferreira wrote: > Hello all, > > My docker build is ok with FROM

Re: [go-nuts] Re: go mod download fails on docker for 1.20 (but not for 1.18)

2023-12-18 Thread Eduardo Luís
Did anyone found a fix for this? I still have this problem after 6 months. It allows me to up a single container but it seems to have a 5 minute cooldown before I can up another one without an error, which takes a long time on projects with multiple services. Error example on Ubuntu22 with

Re: [go-nuts] Re: go mod download fails on docker for 1.20 (but not for 1.18)

2023-05-22 Thread TheDiveO
The thing that finally caught my eye is the "connect: cannot assign requested address" part in the error message. You can search for it in combination with golang. I'm not exactly clear but this could be related to running out of socket or port resources, maybe in combination with changes in

Re: [go-nuts] Re: go mod download fails on docker for 1.20 (but not for 1.18)

2023-05-22 Thread Joao Miguel Ferreira
Hello Jim and Harald, please find below the answers to your questions. if anything else could help, please let me know about the container configuration for ipv6, it seems that there is no such configuration for containers running from the base images (1.18, 1.20, bullseye seems to not have the

[go-nuts] Re: go mod download fails on docker for 1.20 (but not for 1.18)

2023-05-22 Thread TheDiveO
? base system distribution? ? do you have IPv6 connectivity at all? ? which docker version? On Monday, May 22, 2023 at 2:29:08 AM UTC+2 Joao Miguel Ferreira wrote: > Hello all, > > My docker build is ok with FROM golang:1.18-alpine, FROM > golang:1.18-buster and FROM golang:1.18-bullseye