Files
zephyr/compose.yml

16 lines
405 B
YAML
Raw Normal View History

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