Skip to content

blociot/python_docker_demo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

python_docker_demo

edit requirements.txt with the pip packages you need. All python files must be in this directory

build with docker build -t my-python-app . (The dot "full stop" means the Dockerfile in this directory)

run with interactive shell (--rm remove once done) docker run -it --rm --name mypython my-python-app

run in background docker run -d --name mypythonBG my-python-app

you can stop and delete with Portainer or docker stop mypythonBG and remove docker rm mypyhtonBG

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 83.2%
  • Python 16.8%