-
-
Notifications
You must be signed in to change notification settings - Fork 205
Description
Describe the bug
New Clean install v0.20.3. A speedtest is failed everytime by following error. "Could not resolve host."
Container is started well without any issues. From container bash i can reach the internet by ping google.com without any issues.
To Reproduce
Steps to reproduce the behavior:
- Go to 'Admin Page'
- Click on 'Run Speedtest'
- See error -> Could not resolve host.
Expected behavior
Start speedtest
Environment (please complete the following information):
- OS: Proxmox LXC, Portainer Docker
- Architecture: [ amd64]
- Browser [firefox]
- Version [v0.20.3]
Docker Compose
version: '3.4'
services:
speedtest-tracker:
container_name: speedtest-tracker-new
ports:
- 5443:80
#- 8443:443
environment:
- PUID=1000
- PGID=1000
- APP_KEY=base64:----- replaced ------
- DB_CONNECTION=sqlite
- SPEEDTEST_SCHEDULE="9 * * * *"
- SPEEDTEST_SERVERS="53128,48042,31469"
- APP_TIMEZONE=Europe/Berlin
- DISPLAY_TIMEZONE=Europe/Berlin
- TZ=Europe/Berlin
- APP_NAME="Speedtest"
- PUBLIC_DASHBOARD=false
volumes:
- /root/speedtest_tracker:/config
#- /path/to-custom-ssl-keys:/config/keys
image: lscr.io/linuxserver/speedtest-tracker:latest
restart: unless-stopped