https://github.com/shekhargulati/python-flask-docker-hello-world
Hello world Python Flask application Dockerized
https://github.com/shekhargulati/python-flask-docker-hello-world
Last synced: 10 days ago
JSON representation
Hello world Python Flask application Dockerized
- Host: GitHub
- URL: https://github.com/shekhargulati/python-flask-docker-hello-world
- Owner: shekhargulati
- Created: 2015-03-05T15:55:07.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-05-24T09:08:00.000Z (11 months ago)
- Last Synced: 2025-03-28T21:05:39.873Z (17 days ago)
- Language: Python
- Homepage: https://shekhargulati.com/
- Size: 2.93 KB
- Stars: 98
- Watchers: 4
- Forks: 433
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-ccamel - shekhargulati/python-flask-docker-hello-world - Hello world Python Flask application Dockerized (Python)
- jimsghstars - shekhargulati/python-flask-docker-hello-world - Hello world Python Flask application Dockerized (Python)
README
# Simple Python Flask Dockerized Application#
Build the image using the following command
```bash
$ docker build -t simple-flask-app:latest .
```Run the Docker container using the command shown below.
```bash
$ docker run -d -p 5000:5000 simple-flask-app
```The application will be accessible at http:127.0.0.1:5000 or if you are using boot2docker then first find ip address using `$ boot2docker ip` and the use the ip `http://:5000`