Weather App







Click here for the tutorial !

Run Weather App using Docker images

Below are the docker images for this application along with the command :-
If you don't have an api key from openweather.org, you can use below image which is built using my key -
docker run -p 5001:5000 sumeetgodse/weather_app_flask
If you have your own api key then use below image -
docker run -p 5001:5000 -e API_KEY=7abfxxxxx23c1dfxxxxx622038xxxc8b sumeetgodse/weather_app_flask_env
Simply run localhost:5001 on browser to access the application.
I have explained more about building docker images in the DOCKER section of my blog.