This is a simple port checker that I made for my own use. It's not very fancy, but it gets the job done.
The easiest way to run the dashboard is using the pre-built Docker image:
-
Create a
docker-compose.ymlfile:services: portcheck: image: shlomip/portcheck:latest ports: - 3000:3000
-
Run it:
docker compose up -d
Alternatively, you can run it directly:
docker run -d -p 3000:3000 \
shlomip/portcheck:latestThis project is licensed under the MIT License. See the LICENSE file for more details.
