Replies: 1 comment
-
|
Aha! Turns out this was exactly what was already documented over in https://github.com/apple/container/blob/main/docs/technical-overview.md#container-ip-addresses — my Back in business now! Thanks to the project maintainers for the good documentation here. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I had been using containers for several weeks and nearly come to rely on it for some active projects. This morning I rebooted to install the update to Sequoia 15.7.5 and now my containers have no network access. Updated my install of
containeritself from 0.9.0 to 0.10.0 with no change.I am able to pull images just fine, but anything within the image build or the image itself has no access to networking. E.g.
container run -it --rm alpinegrabs the image and starts but then:ping google.comfails after a few seconds with "ping: bad address 'google.com'"ping 8.8.8.8just hangs after logging the outgoing "PING 8.8.8.8 (8.8.8.8): 56 data bytes"Running alpine's
ip routeshows simply:Within the container if I do a
nc -l 5000and then from the hostecho "HELLO" | nc 192.168.64.7 5000(using the container's IP address) just hangs. Pinging the container results in "Request timeout" but I don't recall if that worked before — pinging the buildkit container's IP also fails even though the general build system seems responsive.This has so far been true for every container I've tried with a variety of images (alpine, debian, etc.) and like I mentioned affects both the build portion and the running portion.
I don't remember nor do my notes show having to do anything beyond
container system startto get things working before. Any idea what's going on or what sort of troubleshooting I could do next?Beta Was this translation helpful? Give feedback.
All reactions