1. Preliminary steps to compile and run a SpringBoot application: sudo apt install maven sudo apt install openjdk-11-jdk 2. Download gs-spring-boot.zip from the course web site, unzip it, and cd into the folder gs-spring-boot/. Then run: ./mvnw package -Dmaven.test.skip=true The first time you run the command above it will download a lot of libraries. Now, cd to the "target" subdirectory, and run "java -jar ". It should display the SPRING logo on the terminal. Visit http://localhost:8080 from the browser, it should show the response from the web application. 3. Preliminary steps to get docker working on linux: sudo apt install docker.io sudo groupadd docker sudo usermod -aG docker Then, restart your computer. From now on, the docker daemon (dockerd) will run all the time. In case it is not running, issue "sudo systemctl start docker". Now you are ready to start using docker. 4. cd into the folder gs-spring-boot/ and run "docker build -t /gs-spring-boot ." from this folder (it contains a Dockerfile). Now check that the image has been built by running "docker image ls". Run the image using "docker run &". Get the container's IP address using "docker inspect ". Visit port 8080 of this IP address within your browser. Or, run the image as "docker run -p localhost:80:8080 " to expose port 8080 of the container as port 80 of the localhost, or run image as "docker run -p 8080:8080 " to expose 8080 port of container as port 8080 of localhost itself.