blob: c1860eddd7406949cd4e12977cba55bb7bd59882 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# pywttr-docker
pywttr-docker is a lightweight docker web application for getting
weather information from any location in the world.
The application uses the FOSS Open-Meteo API to retrieve this information
without any API key or paid subscriptions to services like OpenWeatherMap.
# setup
## clone the repository
```
git clone https://git.chudnick.com/pywttr-docker
```
## build the image
```
cd pywttr-docker
docker build -t pywttr:latest .
```
## run the container
```
docker run -d -p 8000:8000 --name pywttr pywttr:latest
```
|