Processes
Find docker processes from system shell
# docker ps
# ps -eo pid,cgroup,cmd | grep <first 8 chars of containerID>
Network
Look at the network config from a container's namespace
# nsenter -t $(docker inspect --format '{{.State.Pid}}' <containerid>) -n ip {addr|route|...}
or run bash instead of ip to b=get a shell in the namespace.