{"id":30176061,"url":"https://github.com/sidpatchy/docker-meshview","last_synced_at":"2026-05-05T19:31:33.495Z","repository":{"id":304717999,"uuid":"1019684302","full_name":"Sidpatchy/docker-meshview","owner":"Sidpatchy","description":"Docker container for Meshview","archived":false,"fork":false,"pushed_at":"2025-07-17T19:34:30.000Z","size":27,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-24T16:54:16.347Z","etag":null,"topics":["docker","docker-compose","meshtastic","meshview","mqtt"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Sidpatchy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-14T17:53:49.000Z","updated_at":"2025-07-17T19:35:59.000Z","dependencies_parsed_at":"2025-07-14T23:46:39.513Z","dependency_job_id":"8a4e6b69-c12a-42d1-b15d-89ec652f0556","html_url":"https://github.com/Sidpatchy/docker-meshview","commit_stats":null,"previous_names":["sidpatchy/docker-meshview"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Sidpatchy/docker-meshview","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sidpatchy%2Fdocker-meshview","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sidpatchy%2Fdocker-meshview/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sidpatchy%2Fdocker-meshview/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sidpatchy%2Fdocker-meshview/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sidpatchy","download_url":"https://codeload.github.com/Sidpatchy/docker-meshview/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sidpatchy%2Fdocker-meshview/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32664775,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-compose","meshtastic","meshview","mqtt"],"created_at":"2025-08-12T02:19:31.048Z","updated_at":"2026-05-05T19:31:33.480Z","avatar_url":"https://github.com/Sidpatchy.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# docker-meshview\n\nDocker container for [Meshview](https://github.com/pablorevilla-meshtastic/meshview) - a real-time monitoring and diagnostic tool for Meshtastic mesh networks.\n\n## Quick Start\nEnsure you have Docker installed using the officially supported method.\n\nhttps://docs.docker.com/engine/install/ubuntu/#install-using-the-repository\n\n```bash\n# Clone the repo and enter its directory\n$ git clone https://github.com/Sidpatchy/docker-meshview\n$ cd docker-meshview\n\n# Build the container\n$ docker compose build --no-cache\n\n# Initialize the config and database file\n$ touch packets.db\n$ chmod 666 packets.db\n\n# Check your UID and GID\n$ id\nuid=1000(testuser) gid=1000(testuser) # You should get something like this\n\n# Edit the docker-compose file to use your UID and GID\n$ nano docker-compose.yml\n\n# Change the PUID to your UID and the PGID to your GID\n- PUID=1000\n- PGID=1000\n\n# Download the config from upstream and modify to your liking\n$ curl -o config.ini https://raw.githubusercontent.com/pablorevilla-meshtastic/meshview/refs/heads/master/sample.config.ini\n$ nano config.ini\n\n# Start the contaner\n$ docker compose up -d\n```\n\n## Updating\n```bash\n# Bring down the stack\ndocker compose down\n\n# Rebuild the containers\ndocker compose build --no-cache\n\n# Bring the stack back up\ndocker compose up -d\n```\n## Parameters\n\n### Ports\nPorts are separated by a colon and indicate `\u003cEXTERNAL\u003e:\u003cINTERNAL\u003e`. For example, `9872:8081` would expose port 8081 from _inside_ the container to be accessible from _outside_ the container through port 9872.\n\n#### Meshview container\n| Port      | Function       |\n|-----------|----------------|\n| 8081:8081 | HTTP(s) web UI |\n\n#### Database Cleanup Sidecar\nN/A\n\n### Environment Variables\n\n#### Meshview Container\n| Parameter     | Function                                                                                      |\n|---------------|-----------------------------------------------------------------------------------------------|\n| CONFIG_FILE   | Path to the config.ini file within the container (Optional)                                   |\n| DATABASE_FILE | Path to the packets.db file within the container. (Optional)                                  |\n| PUID          | Process User ID - Avoids causing issues with permissions between the host and the container.  |\n| PGID          | Process Group ID - Avoids causing issues with permissions between the host and the container. |\n\n#### Database Cleanup Sidecar\n| Parameter      | Function                                                                                      |\n|----------------|-----------------------------------------------------------------------------------------------|\n| DATABASE_FILE  | Path to the packets.db file within the container. (Optional)                                  |\n| RETENTION_DAYS | How many days to retain data (Optional) (Default: 14 days)                                    |","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsidpatchy%2Fdocker-meshview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsidpatchy%2Fdocker-meshview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsidpatchy%2Fdocker-meshview/lists"}