mirror of
https://github.com/meshtastic/web.git
synced 2025-12-24 00:00:01 -05:00
add instructions for self-hosting to readme
This commit is contained in:
13
README.md
13
README.md
@@ -17,6 +17,19 @@ Official [Meshtastic](https://meshtastic.org) web interface, that can be hosted
|
||||
|
||||

|
||||
|
||||
## Self-host
|
||||
|
||||
The client can be self hosted using the precompiled container images with an OCI compatible runtime such as [Docker](https://www.docker.com/) or [Podman](https://podman.io/).
|
||||
The base image used is [UBI9 Nginx 1.22](https://catalog.redhat.com/software/containers/ubi9/nginx-122/63f7653b9b0ca19f84f7e9a1)
|
||||
|
||||
```bash
|
||||
# With Docker
|
||||
docker run -d -p 8080:8080 -p 8443:8443 --restart always --name Meshtastic-Web ghcr.io/meshtastic/web
|
||||
|
||||
#With Podman
|
||||
podman run -d -p 8080:8080 -p 8443:8443 --restart always --name Meshtastic-Web ghcr.io/meshtastic/web
|
||||
```
|
||||
|
||||
## Development & Building
|
||||
|
||||
### Building and Packaging
|
||||
|
||||
Reference in New Issue
Block a user