mirror of
https://github.com/acedanger/docker.git
synced 2025-12-06 00:00:13 -08:00
22 lines
608 B
YAML
22 lines
608 B
YAML
services:
|
|
speedtest-tracker:
|
|
container_name: speedtest-tracker
|
|
image: lscr.io/linuxserver/speedtest-tracker:latest
|
|
ports:
|
|
- 9080:80
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- APP_DEBUG=${APP_DEBUG}
|
|
- APP_KEY=${APP_KEY}
|
|
- DB_CONNECTION=${DB_TYPE}
|
|
- SPEEDTEST_SCHEDULE=${SPEEDTEST_SCHEDULE}
|
|
- SPEEDTEST_SERVERS=${SPEEDTEST_SERVERS}
|
|
- SPEEDTEST_PING_URL=${SPEEDTEST_PING_URL}
|
|
- PRUNE_RESULTS_OLDER_THAN=${PRUNE_RESULTS_OLDER_THAN}
|
|
- TZ=${APP_TIMEZONE}
|
|
volumes:
|
|
- ./config:/config
|
|
restart: unless-stopped
|
|
networks: {}
|