-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nginx stable and latest lost networking after the latest container release #601
Comments
What is the docker version you run on the host? I cant seem to reproduce on docker 5:19.03.15 |
Hi, seems to be a bit newer, I am also using the Docker package from docker.com root@juno: Thanks for the fast reply! |
What's the libseccomp version you have? Can you try updating it? debuerreotype/docker-debian-artifacts#106 |
Yes, that fixed it! I used the backports version 2.5.1.1 since the unstable repo is a bit scary for me. For anyone hitting the same:
Thank you @thresheek |
Perfect. Glad this helped. |
After the container upgrade in the past few days all our previously working containers suddenly lost network connectivity. This seems to affect both latest and stable, for which the container was upgraded a few days ago. Alpine, for which the image is a bit older is working fine.
Host: Raspbian
Arch: ARM - RPI4
root@juno:~# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
nginx stable b806e477d1cc 5 hours ago 109MB
nginx latest 4aa417b5bbfb 5 hours ago 109MB
nginx alpine 062e12983452 4 days ago 16MB
nginx 1.21.0 a2e43f88ed53 4 months ago 103MB
root@juno:~# docker run -it --rm nginx:latest /bin/bash
root@b950816588c8:/# curl google.com
curl: (28) Resolving timed out after 1094587810065 milliseconds
root@juno:~# docker run -it --rm nginx:stable /bin/bash
root@8efd17fa6cae:/# curl google.com
curl: (28) Resolving timed out after 1091446178065 milliseconds
root@juno:~# docker run -it --rm nginx:1.21.0 /bin/bash
<TITLE>301 Moved</TITLE>root@2c75bf87a97b:/# curl google.com
301 Moved
The document has moved here.The text was updated successfully, but these errors were encountered: