A .NET MVC weather application containerised for deployment, fetching data from WeatherAPI.com.
- Fetches weather data from WeatherAPI.com
- Search with autocomplete suggestions
- Displays current weather information
- Docker installed on your machine
- .NET environment
-
Pull the Docker Image:
docker pull benjan/weatherapp:latest
-
Run the Docker Container:
docker run -d -p 8080:80 benjan/weatherapp:latest
-
Access the Application: Open your web browser and go to http://localhost:8080.
-
Clone the Repository:
git clone https://github.com/benjanknoetze/dotnet-mvc-weather-app.git cd dotnet-mvc-weather-app
-
Build the Docker Image:
docker build -t weatherapp .
-
Run the Docker Container:
docker run -d -p 8080:80 weatherapp
- Open your web browser and go to http://localhost:8080.