Skip to content

Instantly share code, notes, and snippets.

@e-roux
Last active July 9, 2020 19:36
Show Gist options
  • Save e-roux/45ad4c9706ef5e783d5760b43ed14541 to your computer and use it in GitHub Desktop.
Save e-roux/45ad4c9706ef5e783d5760b43ed14541 to your computer and use it in GitHub Desktop.
Memo: Docker

Docker

Installation

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

Images management

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment