1.2.1 - Introduction to Docker

https://www.youtube.com/watch?v=EYNwNlOrpr0&list=PL3MmuxUbc_hJed7dXYoJw8DoCuVHhGEQb&index=5

Why should we care about docker?

  1. Go to course repo

Untitled

  1. Open Terminal, test docker to see if it’s working
docker run hello-world
  1. Run an Ubuntu container
docker run -it ubuntu bash

// run - run this image
// -it - do it in interactive mode, i.e. terminal
// ubuntu - name of the image it will run
// bash - parameter that we want to execute in this image

docker run -it --entrypoint=bash python:3.9