diff --git a/docker/README.md b/docker/README.md deleted file mode 100644 index e249712..0000000 --- a/docker/README.md +++ /dev/null @@ -1,36 +0,0 @@ -# MeshView Docker Container - -> **Note:** This directory contains legacy Docker build files. -> -> **For current Docker usage instructions, please see [README-Docker.md](../README-Docker.md) in the project root.** - -## Current Approach - -Pre-built container images are automatically built and published to GitHub Container Registry: - -```bash -docker pull ghcr.io/pablorevilla-meshtastic/meshview:latest -``` - -See **[README-Docker.md](../README-Docker.md)** for: -- Quick start instructions -- Volume mount configuration -- Docker Compose examples -- Backup configuration -- Troubleshooting - -## Legacy Build (Not Recommended) - -If you need to build your own image for development: - -```bash -# From project root -docker build -f Containerfile -t meshview:local . -``` - -The current Containerfile uses: -- **Base Image**: `python:3.13-slim` (Debian-based) -- **Build tool**: `uv` for fast dependency installation -- **User**: Non-root user `app` (UID 10001) -- **Exposed Port**: `8081` -- **Volumes**: `/etc/meshview`, `/var/lib/meshview`, `/var/log/meshview` diff --git a/meshview/templates/map.html b/meshview/templates/map.html index 4ca22cc..aff1c76 100644 --- a/meshview/templates/map.html +++ b/meshview/templates/map.html @@ -24,12 +24,70 @@ #reset-filters-button:active { background-color:#c41e0d; } .blinking-tooltip { background:white;color:black;border:1px solid black;border-radius:4px;padding:2px 5px; } + + #map-wrapper { + position: relative; + width: 100%; + height: calc(100vh - 270px); + } + #map { + width: 100%; + height: 100%; + } + #unmapped-packets { + position: absolute; + bottom: 30px; + right: 15px; + z-index: 600; + width: 220px; + padding: 6px 8px; + background: rgba(255, 255, 255, 0.95); + border: 1px solid #ddd; + border-radius: 6px; + font-size: 12px; + text-align: left; + box-shadow: 0 0 10px rgba(0,0,0,0.2); + pointer-events: auto; + } + #unmapped-packets h3 { + margin: 0 0 6px; + font-size: 12px; + font-weight: 600; + color: #000; + } + #unmapped-list { + list-style: none; + padding: 0; + margin: 0; + max-height: 120px; + overflow-y: auto; + } + #unmapped-list li { + display: flex; + gap: 6px; + padding: 3px 0; + border-bottom: 1px dotted #e0e0e0; + } + #unmapped-list li:last-child { border-bottom: none; } + .unmapped-node { font-weight: 400; color: #000; } + .unmapped-empty { color: #666; font-style: italic; } {% endblock %} {% block body %} -
+