Languages
[Edit]
EN

Docker - start new docker container using existing image

7 points
Created by:
Jun-L
963

In this short article, we would like to show how to start a new Docker container using an existing image.

Quick solution:

 

Practical example

Edit

The following command creates a container for indicated image (4ea2949e4cb8):

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 as postgres-shop,
  • -p 5432:5432 means 5432 container port will be redirected to localhost: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:

You can run docker ps command to see all started containers (started from images):

Running docker image with attached terminal

Edit

Below command runs image as Docker container opening terminal in the same command line.

Alternative titles

  1. Docker - create and run container using existing image
1
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Docker - useful wiki posts

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join