Difference between revisions of "Docker tutorial"

From rbachwiki
Jump to navigation Jump to search
Line 3: Line 3:
  sudo sh get-docker.sh
  sudo sh get-docker.sh


== Docker Commands ==
docker run application
*Run application, if it does not exist, it will pull it down


'''Run ubnutu image locally '''
'''Run ubnutu image locally '''
'''Install docker form docker.com'''
'''Install docker form docker.com'''
  docker run -it ubuntu
  docker run -it ubuntu
[[Docker]]
[[Docker]]

Revision as of 17:22, 2 May 2022

Installing Docker on Ubuntu =

curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh

Docker Commands

docker run application
  • Run application, if it does not exist, it will pull it down

Run ubnutu image locally Install docker form docker.com

docker run -it ubuntu

Docker