Docker 101
Here is the most minimal intro to Docker that I could come up with:
Docs: https://docs.docker.com/
Dockerfile
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y cowsay fortune
CMD /usr/games/fortune | /usr/games/cowsay
Build
Run
Push
docker tag cowsay:latest <your-dockerhub-username>/cowsay:latest
docker push <your-dockerhub-username>/cowsay:latest