You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
403 B
YAML
17 lines
403 B
YAML
2 years ago
|
# docker-compose.yml
|
||
|
# Docker Hub: https://hub.docker.com/r/openspeedtest/latest
|
||
|
# The WebUI can be found at http://<HOST_IP>:<WEBUI_PORT>
|
||
|
|
||
|
networks:
|
||
|
<NETWORK_NAME>:
|
||
|
external: true
|
||
|
|
||
|
services:
|
||
|
openspeedtest:
|
||
|
container_name: openspeedtest
|
||
|
image: openspeedtest/latest:<VERSION_TAG>
|
||
|
networks:
|
||
|
- <NETWORK_NAME>
|
||
|
ports:
|
||
|
- "3000:3000" # WebUI Port
|
||
|
restart: unless-stopped
|