Real-Time Analytics Lectures for SGH students

Docker

All the necessary programs will be delivered in the form of docker containers.

Start with Docker

In order to download the docer software to your system, go to the page.

If everything is installed correctly, follow these instructions:

  1. Check the installed version
    docker --version
    
  2. Download and run the image Hello World and
    docker run hello-world
    
  3. Overview of downloaded images: ```{bash} docker image ls

docker images

4. Overview of running containers:
```{bash}
docker ps 

docker ps -all
  1. Stopping a running container:
    docker stop <CONTAINER ID>
    
  2. Container removal
    docker rm -f <CONTAINER ID>
    

I also recommend short intro

Docker as an application continuation tool

Docker with jupyter notebook