Answers for "how to run an image in docker ubuntu"

1

docker run ubuntu image

docker pull ubuntu

# Use one of the two commands to run the image
# 1. To run the ubuntu image
docker run -i -t ubuntu 
# 2. To run the ubuntu image and open terminal within the image
docker run -i -t ubuntu /bin/bash
Posted by: Guest on October-29-2021

Code answers related to "how to run an image in docker ubuntu"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language