2024-04-04, 02:26 PM
(This post was last modified: 2024-04-04, 02:26 PM by TheDreadPirate.)
I may have found the problem. I just noticed this in your docker inspect.
For some reason "CgroupnsMode" is set to private instead of host. Pretty sure it should be "host" if the network type is also set to host. I wonder if this is a bug in the version of docker you are running.
Add this to your docker run command.
You can also try setting up a docker compose file to start and stop your container.
For some reason "CgroupnsMode" is set to private instead of host. Pretty sure it should be "host" if the network type is also set to host. I wonder if this is a bug in the version of docker you are running.
Add this to your docker run command.
Code:
--cgroupns host
You can also try setting up a docker compose file to start and stop your container.