Ad space (banner)
AD

Got the fundamentals? A structured Docker course is a fast way to level up.

Find Docker courses on Udemy

Affiliate link. Costs you nothing extra.

🐳Docker Lessons
Lesson 14 / 45

Restarting with docker restart

When you want to stop and start in one step, use docker restart. It does exactly what docker stop followed by docker start would do.

The syntax is docker restart container.

Running docker restart web stops the container and immediately starts it again — handy for picking up a changed configuration.

A common stumble is expecting a restart to pick up changes that actually require a rebuild. Editing the source of a running image needs docker build and a fresh docker run.

In real work, it is the quick fix for applying a config change or clearing a wedged process.

Docker
Try it (type this into the pseudo terminal)
docker restart web

🧑‍💻 You can type this command into the Docker pseudo terminal to try it yourself (this page itself has no interactive terminal).

Ad space (banner)
Ad space (in-article)