Skip to content

Repository files navigation

OpenSpeedTest

Build StatusLast Commit

Self-hosted HTML5 Network Speed Test on FreeBSD.

Port3000
Registryghcr.io/daemonless/openspeedtest
Sourcehttps://github.com/openspeedtest/Speed-Test
Websitehttps://openspeedtest.com/

Version Tags

TagDescriptionBest For
latestUpstream Binary. Built from official release.Most users. Matches Linux Docker behavior.

Prerequisites

Before deploying, ensure your host environment is ready. See the Quick Start Guide for host setup instructions.

Deployment

Podman Compose

services:
openspeedtest:
image: "ghcr.io/daemonless/openspeedtest:latest"container_name: openspeedtestenvironment:
- PUID=1000 # User ID for the application process
- PGID=1000 # Group ID for the application process
- TZ=UTC # Timezone for the containerports:
- "3000:3000"restart: unless-stopped

AppJail Director

.env:

# .env
DIRECTOR_PROJECT=openspeedtest
PUID=1000
PGID=1000
TZ=UTC

appjail-director.yml:

# appjail-director.ymloptions:
- virtualnet: ':<random> default'
- nat:
services:
openspeedtest:
name: openspeedtestoptions:
- container: 'boot args:--pull'
- expose: '3000:3000 proto:tcp'oci:
user: rootenvironment:
- PUID: !ENV '${PUID}'
- PGID: !ENV '${PGID}'
- TZ: !ENV '${TZ}'

Makejail:

# Makejail
ARG tag=latest
OPTION overwrite=force
OPTION from=ghcr.io/daemonless/openspeedtest:${tag}

Note: Exposing ports in AppJail means that your service can be reached from remote hosts. If that is not your intention, do not expose the ports and communicate with the service using the IPv4 address assigned by the virtual network.

Podman CLI

podman run -d --name openspeedtest \
-p 3000:3000 \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=UTC \
ghcr.io/daemonless/openspeedtest:latest

AppJail

appjail oci run -Pd \
-o overwrite=force \
-o container="args:--pull" \
-o virtualnet=":<random> default" \
-o nat \
-o expose="3000:3000 proto:tcp" \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=UTC \
ghcr.io/daemonless/openspeedtest:latest openspeedtest

Note: Exposing ports in AppJail means that your service can be reached from remote hosts. If that is not your intention, do not expose the ports and communicate with the service using the IPv4 address assigned by the virtual network.

Ansible

- name: Deploy openspeedtestcontainers.podman.podman_container:
name: openspeedtestimage: "ghcr.io/daemonless/openspeedtest:latest"state: startedrestart_policy: alwaysenv:
PUID: "1000"PGID: "1000"TZ: "UTC"ports:
- "3000:3000"

Access at: http://localhost:3000

Parameters

Environment Variables

VariableDefaultDescription
PUID1000User ID for the application process
PGID1000Group ID for the application process
TZUTCTimezone for the container

Ports

PortProtocolDescription
3000TCPWeb UI

Architectures: amd64 User:bsd (UID/GID via PUID/PGID, defaults to 1000:1000) Base: FreeBSD 15


Need help? Join our Discord community.