Day 23: Mastering Docker CMD and ENTRYPOINT

Adrian Rubico

|

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:

dockerfile
CMD ["executable", "param1", "param2"]

Used with ENTRYPOINT:

dockerfile
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\)

dockerfile
FROM ubuntu:latest  
CMD ["echo", "Hello, Docker!"]

When the container runs, it will execute:

bash
echo "Hello, Docker!"

Overriding CMD at Runtime:

bash
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:

dockerfile
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\)

dockerfile
FROM ubuntu:latest  
ENTRYPOINT ["echo", "Hello, Docker!"]

If we run:

bash
docker run ubuntu_entrypoint:v1 This is ENTRYPOINT!

The container will execute:

bash
Hello, Docker! This is ENTRYPOINT!

Overriding ENTRYPOINT at Runtime:
To override the default entrypoint, use the --entrypoint flag:

bash
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 for ENTRYPOINT, 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\)

dockerfile
FROM ubuntu:latest
ENTRYPOINT ["echo"]
CMD ["Hello, Docker!"]
  • ENTRYPOINT ensure echo is always executed.
  • CMD provides default arguments (Hello, Docker!).

Running the Container:

bash
docker run ubuntu_ce:v1

Executes:

bash
Hello, Docker!

Overriding CMD Arguments at Runtime:
If a user wants to different message:

bash
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:

FeatureCMDENTRYPOINT
PurposeProvides default commandsDefines the main executable
Overridable?Yes, at runtimeNo, unless --entrypoint is used
UsageCan be overridden with arguments in docker runAlways executes, even if arguments are passed
Best ForSetting default parametersEnforcing 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. 🚀

Discussion