Update repository references from jinglemansweep to ipnet-mesh

This commit is contained in:
Louis King
2025-08-16 21:56:34 +01:00
parent 14c19238da
commit b34e59ad18
2 changed files with 8 additions and 8 deletions

View File

@@ -2,10 +2,10 @@
[![License](https://img.shields.io/badge/License-GPL_v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![License](https://img.shields.io/badge/License-GPL_v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
[![Python](https://img.shields.io/badge/Python-3.11+-blue.svg)](https://www.python.org/) [![Python](https://img.shields.io/badge/Python-3.11+-blue.svg)](https://www.python.org/)
[![CI](https://github.com/jinglemansweep/meshcore-mqtt/actions/workflows/ci.yml/badge.svg)](https://github.com/jinglemansweep/meshcore-mqtt/actions/workflows/ci.yml) [![CI](https://github.com/ipnet-mesh/meshcore-mqtt/actions/workflows/ci.yml/badge.svg)](https://github.com/ipnet-mesh/meshcore-mqtt/actions/workflows/ci.yml)
[![Code Quality](https://github.com/jinglemansweep/meshcore-mqtt/actions/workflows/code-quality.yml/badge.svg)](https://github.com/jinglemansweep/meshcore-mqtt/actions/workflows/code-quality.yml) [![Code Quality](https://github.com/ipnet-mesh/meshcore-mqtt/actions/workflows/code-quality.yml/badge.svg)](https://github.com/ipnet-mesh/meshcore-mqtt/actions/workflows/code-quality.yml)
[![Tests](https://github.com/jinglemansweep/meshcore-mqtt/actions/workflows/test.yml/badge.svg)](https://github.com/jinglemansweep/meshcore-mqtt/actions/workflows/test.yml) [![Tests](https://github.com/ipnet-mesh/meshcore-mqtt/actions/workflows/test.yml/badge.svg)](https://github.com/ipnet-mesh/meshcore-mqtt/actions/workflows/test.yml)
[![Docker Build and Push](https://github.com/jinglemansweep/meshcore-mqtt/actions/workflows/docker-build.yml/badge.svg)](https://github.com/jinglemansweep/meshcore-mqtt/actions/workflows/docker-build.yml) [![Docker Build and Push](https://github.com/ipnet-mesh/meshcore-mqtt/actions/workflows/docker-build.yml/badge.svg)](https://github.com/ipnet-mesh/meshcore-mqtt/actions/workflows/docker-build.yml)
[![Code style: black](https://img.shields.io/badge/Code%20style-black-000000.svg)](https://github.com/psf/black) [![Code style: black](https://img.shields.io/badge/Code%20style-black-000000.svg)](https://github.com/psf/black)
[![Typing: mypy](https://img.shields.io/badge/Typing-mypy-blue.svg)](https://mypy.readthedocs.io/) [![Typing: mypy](https://img.shields.io/badge/Typing-mypy-blue.svg)](https://mypy.readthedocs.io/)
[![Security: bandit](https://img.shields.io/badge/Security-bandit-yellow.svg)](https://github.com/PyCQA/bandit) [![Security: bandit](https://img.shields.io/badge/Security-bandit-yellow.svg)](https://github.com/PyCQA/bandit)
@@ -427,7 +427,7 @@ Pre-built Docker images are available from GitHub Container Registry:
```bash ```bash
# Pull the latest image # Pull the latest image
docker pull ghcr.io/jinglemansweep/meshcore-mqtt:latest docker pull ghcr.io/ipnet-mesh/meshcore-mqtt:latest
# Run with serial connection (default for MeshCore devices) # Run with serial connection (default for MeshCore devices)
docker run -d \ docker run -d \
@@ -439,7 +439,7 @@ docker run -d \
-e MQTT_PASSWORD=meshcore123 \ -e MQTT_PASSWORD=meshcore123 \
-e MESHCORE_CONNECTION=serial \ -e MESHCORE_CONNECTION=serial \
-e MESHCORE_ADDRESS=/dev/ttyUSB0 \ -e MESHCORE_ADDRESS=/dev/ttyUSB0 \
ghcr.io/jinglemansweep/meshcore-mqtt:latest ghcr.io/ipnet-mesh/meshcore-mqtt:latest
``` ```
#### Building Locally #### Building Locally
@@ -474,7 +474,7 @@ docker run -d \
--restart unless-stopped \ --restart unless-stopped \
--device=/dev/ttyUSB0:/dev/ttyUSB0 \ --device=/dev/ttyUSB0:/dev/ttyUSB0 \
--env-file .env.docker \ --env-file .env.docker \
ghcr.io/jinglemansweep/meshcore-mqtt:latest ghcr.io/ipnet-mesh/meshcore-mqtt:latest
``` ```
#### Option 3: Using Docker Compose #### Option 3: Using Docker Compose

View File

@@ -1,6 +1,6 @@
services: services:
meshcore-mqtt: meshcore-mqtt:
image: ghcr.io/jinglemansweep/meshcore-mqtt:latest image: ghcr.io/ipnet-mesh/meshcore-mqtt:latest
# Alternative: build locally # Alternative: build locally
# build: . # build: .
container_name: meshcore-mqtt-bridge container_name: meshcore-mqtt-bridge