0 votes
in Docker by
recategorized by
What is the method for creating a Docker container in Devops?

1 Answer

0 votes
by

You can use any of the specific Docker images for creating a Docker container using the below command.

docker run -t -i command name

This command not only creates the container but also start it for you.

...