14 lines
330 B
YAML
14 lines
330 B
YAML
services:
|
|
horizon:
|
|
build: .
|
|
container_name: horizon
|
|
volumes:
|
|
- ./data:/app/data
|
|
- ./.env:/app/.env:ro
|
|
environment:
|
|
- TZ=UTC
|
|
restart: unless-stopped
|
|
# Run daily at 8:00 AM UTC (adjust as needed)
|
|
# For one-time run, use: docker compose run --rm horizon
|
|
command: ["--hours", "24"]
|