Here is a pretty handy set of commands that will clean out your Docker host of all containers and images. It’s useful when resetting a demo environment to start fresh. Step 1: Stop all docker images docker stop $(docker ps -aq) Step 2: Remove all containers docker rm $(docker ps -aq) Step 3: Remove all … Continue reading How to sterilize your Docker Host
Docker
Installing Ubuntu x64 on a Hyper-V Virtual Machine
I recently wanted to get a local instance of Docker on my workstation to kick around some cool things happening in the Microsoft space on Linux (e.g. Service Fabric on Linux, SQL Server on Linux, ASP.NET Core on Linux) locally so I thought I would setup a Hyper-V virtual machine with Ubuntu Server and save … Continue reading Installing Ubuntu x64 on a Hyper-V Virtual Machine