Real Hello world for Docker Dummies Like Me – 10 Steps from Installing Docker to Push Your 1st Image to Docker Hub in Windows

1. create a folder in your local computer. 2. create a file named Dockerfile into the folder 3. content of the Dockerfile: FROM python:3ADD hello1.py /EXPOSE 3334CMD [ "python", "./hello1.py"]…

Continue ReadingReal Hello world for Docker Dummies Like Me – 10 Steps from Installing Docker to Push Your 1st Image to Docker Hub in Windows