JM (Jason Meridth)

JM (Jason Meridth)

Learn, Converse, Share

12 Nov 2017

Cleanup Docker

I keep having friends who have experienced the no space left on device when trying to build images. I have aliases for most of my …
03 Jul 2017

OnePlus 5

I’ve had a Nexus 6 for the last 2 years and was finally due for a phone upgrade. I went through a pretty good fiasco with Google store …
31 Oct 2016
28 Jul 2016
06 Jul 2016

Stop and Remove All Docker Containers

Command remove all docker containers: docker stop '$(docker ps -a -q)' && docker rm '$(docker ps -a -q)' docker ps -a -q lists all container …