User Tools

Site Tools


docker:containers:start_a_container

This is an old revision of the document!


Docker - Containers - Start a Container

Containers are start using either the docker start command; or the docker run command.

Docker StartLaunch a previously stopped container.
For example, if you had stopped a database with the command
docker stop CONTAINER_ID
, you can relaunch the same container with the command
docker start CONTAINER_ID

, and the data and settings will be the same.

  • Docker Start: Launch a previously stopped container. For example, if you had stopped a database with the command docker stop CONTAINER_ID, you can relaunch the same container with the command docker start CONTAINER_ID, and the data and settings will be the same.
  • Docker run: Create a new container of an image, and execute the container. You can create N clones of the same image. The command is: docker run IMAGE_ID and not docker run CONTAINER_ID.

Start a Container

docker start nginx-container

Start a Container by ID

Find the ID of the container using the docker ps command.

docker start ad6d2272092a

Start Multiple Stopped Containers

docker start nginx-container httpd-container

Start a new Docker Container from an Image

docker run -itd --name=nginx-container nginx
docker/containers/start_a_container.1605092777.txt.gz · Last modified: 2020/11/11 11:06 by 192.168.1.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki