Docker Container Creation
- Create a DockerHub Account Refer Here
- Navigate to Docker playground Refer Here, Login with docker hub and start


- Docker Playground gives us a linux instance with Docker pre installed for 4 hours of time
- Note: If lot of users acess in parallel, Docker Playground will have some issues

- Shortcut for full screen Toggle full screen screen
ALT + Enter - Check Info

- Dealing with command line
- Instruction Manual:
--help - cheatsheat Refer Here
- Instruction Manual:
Creating a Docker container
- Process

- When we install docker we get two major components
- docker client
- docker engine (server)
- To create container user has to execute
docker container run <image> - docker daemon will received this request and checks if the image is present locally.
- If it is not present, it downloads from registry (default registry is docker hub)
- One image is present then the container is created

Exercise:
- Create a Docker hub account
- Login into Docker playground
- run the nginx container
docker container run nginx
