docker run -ti --rm --net=host --privileged=true ubuntu bash
apt-get update
apt-get install iptables
Exposing port is essentially port forwarding
-> docker run -ti --rm --name qasim ubuntu bash
-> docker inspect --format '{{.State.Pid}}' qasim
3134
-> docker run -ti --rm --privileged=true --pid=host ubuntu bash
root@e63d21be00c6:/# kill 3134
root@99fb3caf034e:/# exit?

