EN
Docker - start new docker container using existing image
7 points
In this short article, we would like to show how to start a new Docker container using an existing image.
Quick solution:
xxxxxxxxxx
1
docker run -d -i -t MY_IMAGE_ID /bin/bash
2
3
# or
4
5
docker run -d -i -t --name MY_NEW_CONTAIER_NAME MY_IMAGE_ID /bin/bash
The following command creates a container for indicated image (4ea2949e4cb8
):
xxxxxxxxxx
1
docker run -d -i -t 4ea2949e4cb8 /bin/bash
2
3
# or with port redirection and image/repository name
4
5
docker run -d -i -t --name postgres-shop -p 5432:5432 postgres /bin/bash
Where:
-d
means the terminal is detached (we will not see in command line docker container output),-i
means keeping opened STDIN even terminal is detached,-t
means the container will use pseudo-tty,--name postgres-shop
means the container will be named aspostgres-shop
,-p 5432:5432
means5432
container port will be redirected tolocalhost:5432
port,4ea2949e4cb8
is IMAGE ID that should be changed to the current one,/bin/bash
used tty.
You can run docker images
command to see all available images:
xxxxxxxxxx
1
$ docker images
2
REPOSITORY TAG IMAGE ID CREATED SIZE
3
postgres latest 4ea2949e4cb8 10 days ago 314MB
You can run docker ps
command to see all started containers (started from images):
xxxxxxxxxx
1
$ docker ps
2
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
3
e4a5a3b62cd4 4ea2949e4cb8 "docker-entrypoint.s…" 1 second ago Up 1 second 5432/tcp reverent_panini
Below command runs image as Docker container opening terminal in the same command line.
xxxxxxxxxx
1
docker run -i -t 4ea2949e4cb8 /bin/bash