0 votes
in Docker by
How to start, stop and kill a container?

1 Answer

0 votes
by

The following command is used to start a docker container:

$ docker start <container_id>

and the following for stopping a running container:

$ docker stop <container_id>

kill a container with the following command:

$ docker kill <container_id>

...