11 lines
264 B
YAML
11 lines
264 B
YAML
|
---
|
||
|
version: '3.7'
|
||
|
services:
|
||
|
weather-exporter:
|
||
|
image: weather-exporter:latest
|
||
|
container_name: weather-exporter
|
||
|
environment:
|
||
|
- WEATHER_LOCATION=<Location search string>
|
||
|
- WEATHER_APIKEY=<weatherapi.com API key>
|
||
|
restart: unless-stopped
|