Docker Cheat-sheet for beginners 🐳

Gajanan Rajput💚
Devs Community
Published in
4 min readOct 3, 2024

--

The Ultimate Docker Cheat Sheet. docker_cheatsheet. A cheatsheet is a concise summary of important information that is meant to be used as a quick reference.

Docker Cheat-sheet for beginners Photo Generated By Gajanan Rajput

If you’re already a Medium member, feel free to scroll down and dive straight into the content! For non-members, you can enjoy this article for free by following this [link]. If you enjoy this content and find it helpful, feel free to give it a clap. Your support is always appreciated!

Docker has become an essential tool for developers, especially when managing applications across different environments. Here’s a quick cheat-sheet to get started with Docker, explained in first-person and active voice. I’ll break down what each command does so that you’re always in control. Let’s dive right in! 🚀

basic Docker commands that works on both Docker Desktop as well as Docker Engine

🔧 Basic Docker Commands

Start Docker

  • Linux: systemctl start docker
  • macOS: open -a Docker
  • Why: This command starts the Docker service on your machine, so you can run containers and images.

Check Docker Version
docker --version

--

--