curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
# or as one liner
# curl -fsSL https://get.docker.com | sh
Update (pul) all images
docker images | grep -v REPOSITORY | awk '{print $1}' | xargs -L1 docker pull
How to remove <none> images after building
docker rmi $(docker images -f “dangling=true” -q)
Docker multi-architecture images: let docker figure the correct image to pull for you
Drill on docker
Apache Drill, Azure Blobs and Azure Stream Analytics
P