Install OpenSpeedTest as Custom App

I am trying to install OpenSpeedTest as a Custom App but fail to set the correct app serttings to get the app running.

The docker command is:
docker run --restart=unless-stopped --name openspeedtest -d -p 3000:3000 -p 3001:3001 openspeedtest/latest

I am trying to figure out which of the parameters in the docker command goes where in the app settings page, but cannot for instance determine where to put the -d (detached) parameter.

Has anyone else succeeded in installing and running OpenSpeedTest as a custom app, if so what were your app settings?

I have previously successfully installed Postgresql, Logitech Media Server and Homebox as custom apps.

Have you tried the yaml from docker hub?

The docker compose yaml is:

version: '3.3'
services:
    speedtest:
        restart: unless-stopped
        container_name: openspeedtest
        ports:
            - '3000:3000'
            - '3001:3001'
        image: openspeedtest/latest

So for me it seems to contain the same parameters as the previous docker command.

Or am I missunderstanding you? Are you suggesting a different way to run/install OpenSpeedTest than installing as an ix-app?

1 Like

Truenas has the option to use yaml to install apps, you don’t have to use the gui wizard. Next to the “custom app” button klick on the … and use the custom-yaml function to paste in the yaml and be happy.

Excellent! I did not know about the new Install via YAML function, but now OpenSpeedTest is installed and running.

Thanks.