Day 23: Mastering Docker CMD and ENTRYPOINT
Mar 10, 2025
•11:03 PM GMT+8

The way containers start is crucial when building Docker images. This can be achieved by using CMD and ENTRYPOINT commands provided by Docker. While both define a default executable for a container, they behave differently and serve different purposes.
In this blog, we will explore the differences between CMD and ENTRYPOINT, their best practices, and when to use each. By the end, you will have a clear understanding of how to control container execution effectively.
CMD Instruction
The CMD instruction in a Dockerfile specifies the default command to run when a container starts. However, it can be overridden if a command is provided at runtime.
Syntax:
CMD ["executable", "param1", "param2"]
Used with ENTRYPOINT:
CMD ["param1", "param2"]
Key Points:
- Only one CMD instruction is allowed in a Dockerfile. If multiple CMD instructions exist, only the last one is used.
- Can be overridden by providing a command when running the container (
docker run <image> <command>
). - Works well for default arguments when used with ENTRYPOINT.
Example CMD Instruction:
(As example, my build image docker build -t ubuntu_cmd:v1 ubuntu_cmd\
)
FROM ubuntu:latest
CMD ["echo", "Hello, Docker!"]
When the container runs, it will execute:
echo "Hello, Docker!"
Overriding CMD at Runtime:
docker run ubuntu_cmd:v1 echo "Overriding CMD!"
This replaces the default CMD instruction and runs "Overriding CMD!"
instead.

ENTRYPOINT Instruction
The ENTRYPOINT instruction in a Dockerfile defines the main command that always executes when a container starts. Unlike CMD
, it cannot be easily overridden unless specifically allowed.
Syntax:
ENTRYPOINT ["executable", "param1", "param2"]
Key Points:
- Ensures the container runs a specific application every time it starts.
- Cannot be easily overridden, but additional parameters can be passed at runtime.
- Works well with CMD to define default arguments.
- Best practice for containers that serve a single purpose, like a web server or database.
Example ENTRYPOINT Instruction:
(As example, my build image docker build -t ubuntu_entrypoint:v1 ubuntu_entrypoint\
)
FROM ubuntu:latest
ENTRYPOINT ["echo", "Hello, Docker!"]
If we run:
docker run ubuntu_entrypoint:v1 This is ENTRYPOINT!
The container will execute:
Hello, Docker! This is ENTRYPOINT!
Overriding ENTRYPOINT at Runtime:
To override the default entrypoint, use the --entrypoint
flag:
docker run --entrypoint ls ubuntu_entrypoint:v1 -l
This replaces echo Hello, World!
with ls -l
.

Combining CMD & ENTRYPOINT
CMD
and ENTRYPOINT
can be used together in a Dockerfile to define a default executable (ENTRYPOINT
) and provide default arguments (CMD
). This combination ensures flexibility while maintaining control over the container's execution behavior.
Key Points:
ENTRYPOINT
sets the main command that always runs.CMD
provides default arguements forENTRYPOINT
, but these can be overridden at runtime.- This approach is useful when the container should always run a specific application, but with customizable parameters.
Example Combining CMD & ENTRYPOINT:
(As example, my build image docker build -t ubuntu_ce:v1 ubuntu_ce\
)
FROM ubuntu:latest
ENTRYPOINT ["echo"]
CMD ["Hello, Docker!"]
- ENTRYPOINT ensure
echo
is always executed. - CMD provides default arguments (
Hello, Docker!
).
Running the Container:
docker run ubuntu_ce:v1
Executes:
Hello, Docker!
Overriding CMD Arguments at Runtime:
If a user wants to different message:
docker run ubuntu_ce:v1 "CMD & ENTRYPOINT FTW!!!"

Difference Between CMD & ENTRYPOINT
While both CMD
and ENTRYPOINT
define how a container runs, they serve different purposes. Below is a comparison:
Feature | CMD | ENTRYPOINT |
Purpose | Provides default commands | Defines the main executable |
Overridable? | Yes, at runtime | No, unless --entrypoint is used |
Usage | Can be overridden with arguments in docker run | Always executes, even if arguments are passed |
Best For | Setting default parameters | Enforcing a mandatory command |

Conclusion
When building Docker images, it is crucial to understand how containers start. With Docker, we can use the CMD
and ENTRYPOINT
instructions. When both are combined, control over container execution can be maintained while flexibility can be achieved.
In the next blog, we will learn about Docker Compose, a powerful tool for defining and managing multi-container applications. 🚀
Day 23: Mastering Docker CMD and ENTRYPOINT
Learn the differences between CMD and ENTRYPOINT in Docker, their use cases, and best practices for container execution.
For the passion of automated cloud solutions.
Subscribe to get the latest posts. I mostly write about Backend (Python/Bash), DevOps and Linux.