(OK) can't modify the kernel IP routing table in the container
https://groups.google.com/forum/#!topic/docker-user/gFHoaKpr7no
Panagiotis Moustafellos
kernel network capabilities are not enabled by default.
You are going to need to run your container with --privileged
--------------------------------------------------------------------------------------------------------------------------------------------
Solomon Hykes
Note that, in addition to the (heavy-handed) --privileged, you can also enable individual capabilities with --cap-add.
--------------------------------------------------------------------------------------------------------------------------------------------
hi Panagiostis,
--------------------------------------------------------------------------------------------------------------------------------------------
hi Solomon,