Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

https://hub.docker.com/r/tiangolo/uwsgi-nginx-flask/


Image Added



docker pull tiangolo/uwsgi-nginx-flask

Build your Flask image:

docker build -t myimage .

Run a container based on your image:

docker run -d --name mycontainer -p 80:80 myimage


Remove the container

docker ps
docker run --rm mycontainer