sandropucp / docker-python-algorithms

Algorithms CS 6515

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Go to local folder

cd LOCALPATH

Build the image:

docker build . -t python_flask

Check Docker Images:

docker images

Run Container with Shared Local Folder in (C:\dev\github\docker-python\src)

docker run -p 5000:5000 -v C:\dev\github\docker-python-algorithms\src:/home/smss6/code -ti --name=python_flask python_flask:latest python3 app.py open browser

Stop Container

docker stop [IMAGEID]

About

Algorithms CS 6515


Languages

Language:Python 73.3%Language:Dockerfile 26.7%