DevOps Notebook: Make your desktop powerful using Docker !
I usually work on Mac or Windows machine but time to time I am always in need of few unix tools. This creates so much issues for me. So i use docker as a helping hand. :)
First Install Docker onto your system (windows or mac)!
Second build a powerful docker image with your day to day tools.
Use your local desktop as a test machine.
docker run \
--name ubuntu_workstation \
-e HOST_IP=192.168.1.1 \
-v…