0 votes
in Docker by

What command is used for running images as a container?

docker ps -a

sudo docker run -i -t alpine /bin/bash

sudo docker run <container_name>

All of the above

1 Answer

0 votes
by

sudo docker run -i -t alpine /bin/bash

...