From 817dde42f23498f18f0ee8de6e349d4d2bdaa57c Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Thu, 23 Oct 2025 22:23:39 -0700 Subject: [PATCH] Update Dockerfile --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index e68dad9..6c2a7ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,4 +35,11 @@ RUN chmod +x /app/script/docker/entrypoint.sh # RUN useradd -m appuser && usermod -a -G dialout appuser # USER appuser +# Expose Meshtastic TCP API port from the host +EXPOSE 4403 +# Expose Meshtastic Web UI port from the host +EXPOSE 9443 +# Meshing Around Web Dashboard port +EXPOSE 8420 + ENTRYPOINT ["/bin/bash", "/app/script/docker/entrypoint.sh"]