Docker Images for all kind of stuff
Remove old images without tag
docker rmi $(docker images -a | grep "^<none>" | awk '{print $3}')Run an image for local development and testing with your current Project directory mounted
docker run --rm -v ./:. -ti <image_name:tag>Build image without Caching and pull base new
docker build --no-cache --pull -f CloudMaturity.arm.Dockerfile -t cloudmaturity:latest .