Files
2025-06-17 08:23:42 -04:00

33 lines
755 B
YAML

---
services:
speedtest:
container_name: speedtest-tracker
image: "lscr.io/linuxserver/speedtest-tracker:latest"
ports:
- 8080:80
- 8443:443
volumes:
- ./data:/config
environment:
- PUID
- PGID
- APP_KEY
- DB_CONNECTION=sqlite
- APP_TIMEZONE=America/New_York
- DISPLAY_TIMEZONE=America/New_York
- PRUNE_RESULTS_OLDER_THAN=367
- SPEEDTEST_SCHEDULE="6 * * * *"
logging:
driver: "json-file"
options:
max-file: "10"
max-size: "200k"
restart: unless-stopped
healthcheck:
test: curl -fSs localhost:8080/api/healthcheck | jq -r .message || exit 1
interval: 10s
retries: 3
start_period: 30s
timeout: 10s