and how did you do that?
Followed the instructions on their website and created this compose file and opened the ports on the router (in this case 18080 and 18443):
Code
version: '3.3'
services:
speedtest-tracker:
container_name: speedtest-tracker
ports:
- '18080:80'
- '18443:443'
environment:
- PUID=1000
- PGID=100
volumes:
- '/dockercfg/speedtest-tracker:/config'
- '/dockercfg/speedtest-tracker/web:/etc/ssl/web'
image: 'ghcr.io/alexjustesen/speedtest-tracker:latest'
restart: unless-stopped
Display More