Skip to content

shubham1172/quickstart-docker-flask

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

README

This is a starter kit for creating a flask app with Docker.

Getting started

  • Get the files:
    • git clone https://github.com/shubham1172/quickstart-docker-flask
    • cd quickstarter-docker-flask
  • Build the image with Docker: docker build -t helloworld .
  • Run it: docker run -p 80:8000 helloworld

Cleaning up

  • Delete the container
    • Get the container id: docker ps -a
    • Delete it: docker rm <container-id>
  • Delete the image:
    • Get the image id: docker image ls
    • Delete it: docker rmi <image-id>

Sample Docker image is hosted here

About

Starter kit for flask apps with Docker

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages