Skip to content
Stuff I'm Up To
Go back

Docker Swarm Debugging

Updated:
Edit page

One of the most helpful pointers I found was to spin up an alpine container on the virtual network you’re struggling to get connectivity over. Then you can add some tools to the alpine image to work out what’s going on.

docker run -it --network=proxy alpine /bin/sh

apk add busybox-tools
ping myservice

apk add nmap
nmap -T4 myservice

Where proxy and myservice are the network and service you interested in examining.


Edit page
Share this post:

Previous Post
Microsoft Azure and Juniper SRX
Next Post
Upgrading Ansible AWX