Sign inSign up

msampathkumar/learn_docker

By msampathkumar

Updated almost 9 years ago

A simple python flask application. Created this as a part of my docker learning curve.

Image
0

100

msampathkumar/learn_docker repository overview

A simple flask application.

To run it terminal mode

docker run -p 4000:8080 msampathkumar/learn_docker:part1

To run it background(d:detached) mode

docker run -d -p 4000:8080 msampathkumar/learn_docker:part1

To kill a process that running

# get the name from below command output
docker ps

# provide name below
docker stop <<name>>

Tag summary

Content type

Image

Digest

Size

50.4 MB

Last updated

almost 9 years ago

docker pull msampathkumar/learn_docker:part1