Docker
What is Docker?
Docker packages an application together with everything it needs to run (code, tools, settings, libraries) into a neat little box called a container.
Container → A self-contained app package
Image → The blueprint used to create containers
Docker Desktop → The app you install to use Docker easily
Install Docker on Mac
Go to the Docker website
Download Docker Desktop for Mac
Open the downloaded file
Drag Docker into your Applications folder
Open Docker from Applications
Wait for it to start (you’ll see a whale icon in the menu bar)
Install Docker on Windows
Go to the Docker website
Download Docker Desktop for Windows
Run the installer
Follow the prompts (you can keep default settings)
Restart your computer if asked
Open Docker Desktop
Check That It Works
After installing, test Docker:
If you see a version number, you’re good to go
Push a Docker Image
Build
Tag
Push
Pull a Docker Image
Last updated