0
0
Dockerdevops~5 mins

Docker engine and runtime - Commands & Configuration

Choose your learning style9 modes available
Introduction
Docker Engine is the software that runs containers on your computer. It lets you package apps and their settings so they work the same everywhere. The runtime part means it actually runs these containers safely and efficiently.
When you want to run multiple apps on the same computer without them interfering with each other
When you need to test your app in an environment identical to production
When you want to share your app with others so they can run it easily
When you want to isolate your app from the host system for security
When you want to quickly start and stop apps without installing them
Commands
This command shows the installed Docker Engine version and runtime details to confirm Docker is installed and running.
Terminal
docker version
Expected OutputExpected
Client: Docker Engine - Community Version: 24.0.2 API version: 1.42 Go version: go1.20.5 Git commit: 123abc4 Built: Thu May 2 12:00:00 2024 OS/Arch: linux/amd64 Context: default Server: Docker Engine - Community Engine: Version: 24.0.2 API version: 1.42 (minimum version 1.12) Go version: go1.20.5 Git commit: 123abc4 Built: Thu May 2 12:00:00 2024 OS/Arch: linux/amd64 Experimental: false
This command gives detailed information about the Docker Engine and runtime environment, including number of containers, images, and storage driver.
Terminal
docker info
Expected OutputExpected
Client: Context: default Debug Mode: false Server: Containers: 0 Running: 0 Paused: 0 Stopped: 0 Images: 2 Server Version: 24.0.2 Storage Driver: overlay2 Backing Filesystem: extfs Logging Driver: json-file Cgroup Driver: cgroupfs Plugins: Volume: local Network: bridge host ipvlan macvlan null overlay Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog Kernel Version: 5.15.0-70-generic Operating System: Ubuntu 22.04.2 LTS OSType: linux Architecture: x86_64 CPUs: 4 Total Memory: 7.7GiB Name: example-host ID: ABCD:1234:EFGH:5678:IJKL:9012:MNOP:3456:QRST:7890:UVWX:YZ12 Docker Root Dir: /var/lib/docker Debug Mode: false Registry: https://index.docker.io/v1/
This command runs a small test container to verify the Docker Engine and runtime can start containers correctly. The --rm flag removes the container after it exits.
Terminal
docker run --rm hello-world
Expected OutputExpected
Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world 0e03bdcc26d7: Pull complete Digest: sha256:abc123def4567890abcdef1234567890abcdef1234567890abcdef1234567890 Status: Downloaded newer image for hello-world:latest Hello from Docker! This message shows that your installation appears to be working correctly. To generate this message, Docker took the following steps: 1. The Docker client contacted the Docker daemon. 2. The Docker daemon pulled the "hello-world" image from the Docker Hub. 3. The Docker daemon created a new container from that image which runs the executable that produces the output you are currently reading. 4. The Docker daemon streamed that output to the Docker client, which sent it to your terminal. To try something more ambitious, you can run an Ubuntu container with: $ docker run -it ubuntu bash Share images, automate workflows, and more with a free Docker ID: https://hub.docker.com/ For more examples and ideas, visit: https://docs.docker.com/get-started/
--rm - Automatically remove the container when it exits
This command lists all containers, including stopped ones, to check the state of containers managed by Docker Engine and runtime.
Terminal
docker ps -a
Expected OutputExpected
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
-a - Show all containers, not just running ones
Key Concept

If you remember nothing else from this pattern, remember: Docker Engine is the core software that runs containers, and the runtime is what actually starts and manages those containers safely.

Common Mistakes
Trying to run containers without Docker Engine installed or running
Docker commands fail because the engine is not available to create or manage containers
Install Docker Engine and ensure the Docker service is running before running containers
Not using --rm flag when running short test containers
Containers remain stopped and clutter the system, using disk space and making management harder
Use --rm flag to automatically clean up containers after they exit
Confusing docker version output with docker info output
docker version shows version numbers only, docker info shows detailed runtime environment; mixing them can cause misunderstanding
Use docker version to check versions, docker info to check environment and runtime details
Summary
Use 'docker version' to check Docker Engine and runtime versions.
Use 'docker info' to see detailed runtime environment and system info.
Run 'docker run --rm hello-world' to test if Docker Engine can start containers.
Use 'docker ps -a' to list all containers and their states.