mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-23 20:11:12 +00:00
23 lines
512 B
YAML
23 lines
512 B
YAML
services:
|
|
|
|
speedtest:
|
|
image: henrywhitaker3/speedtest-tracker
|
|
container_name: speedtest
|
|
hostname: speedtest
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8765:80/tcp
|
|
expose:
|
|
- 80
|
|
volumes:
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/speedtest-tracker/config:/config
|
|
environment:
|
|
- TZ=Europe/Berlin
|
|
- PGID=1000
|
|
- PUID=1000
|
|
- OOKLA_EULA_GDPR=true
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-file: "10"
|
|
max-size: "200k" |