Building a CI/CD Pipeline. Part2 Docker
Create Docker Image with Dockerfile from you repo forked from https://github.com/Sunagatov/Hello
Create Image from directory with Dockerfile
docker build -t <image_name>:<tag> <path_to_dockerfile_directory>
Run Image
docker run [OPTIONS] <image_name>:<tag>
Type command to overview of running containers
docker ps
Type command to overview of running (previously) running containers
docker ps --all
Sign up on hub.docker.com or quay.io, if you don’t have an account
Push docker Image to hub.docker.com or quay.io
Insert link to your Docker-image in report + add screenshot