-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
36 lines (31 loc) · 811 Bytes
/
compose.yaml
File metadata and controls
36 lines (31 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: openspeedtest
x-daemonless:
title: "OpenSpeedTest"
icon: ":material-speedometer:"
category: "Utilities"
description: "Self-hosted HTML5 Network Speed Test on FreeBSD."
upstream_url: "https://github.com/openspeedtest/Speed-Test"
web_url: "https://openspeedtest.com/"
freshports_url: ""
user: "bsd"
mlock: false
upstream_binary: true
appjail: true
docs:
env:
PUID: "User ID for the application process"
PGID: "Group ID for the application process"
TZ: "Timezone for the container"
ports:
3000: "Web UI"
services:
openspeedtest:
image: ghcr.io/daemonless/openspeedtest:latest
container_name: openspeedtest
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
ports:
- "3000:3000"