2025-06-19 17:22:44 +02:00
|
|
|
services:
|
|
|
|
|
zephyr:
|
|
|
|
|
image: zephyr
|
|
|
|
|
build: .
|
|
|
|
|
container_name: "zephyr"
|
|
|
|
|
environment:
|
2025-06-23 05:40:20 +02:00
|
|
|
ZEPHYR_ADDR: 127.0.0.1 # Listen address
|
|
|
|
|
ZEPHYR_PORT: 3000 # Listen port
|
|
|
|
|
ZEPHYR_TOKEN: "" # OpenWeatherMap API Key
|
|
|
|
|
ZEPHYR_CACHE_TTL: 3 # Cache time-to-live in hour
|
2025-06-19 17:22:44 +02:00
|
|
|
restart: always
|
|
|
|
|
volumes:
|
|
|
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
|
|
|
ports:
|
|
|
|
|
- "3000:3000"
|