Why am I getting an RTNETLINK Operation Not Permitted when using Pipework with Docker containers?

Docker containers do not have full privileges by default. Try adding this to the docker run command:

--cap-add=NET_ADMIN

List of capabilities

Leave a Comment