Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 694 Bytes

README.md

File metadata and controls

40 lines (29 loc) · 694 Bytes

Docker

Build the image

  1. Install docker. If you are using Ubuntu 18.04 you can follow these steps:
sudo apt-get update
sudo apt-get remove docker docker-engine docker.io
sudo apt install docker.io
sudo systemctl start docker
sudo systemctl enable docker
sudo groupadd docker
sudo usermod -aG docker $USER
newgrp docker

To check the installation, run:

docker run hello-world
  1. Build the image. Assuming {REPO_PATH} as the base repository path, run:
cd {REPO_PATH}/docker
./build.sh

Run the container

To run the container, execute:

cd {REPO_PATH}/docker
./run.sh

You should see that the prompt is inside the course folder.