Browse Source
Merge pull request #374 from tdhawk/fix-readme
update container port
pull/385/head
Hunter Thornsberry
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
README.md
|
|
|
@ -24,10 +24,10 @@ The base image used is [Nginx 1.27](https://hub.docker.com/_/nginx) |
|
|
|
|
|
|
|
```bash |
|
|
|
# With Docker |
|
|
|
docker run -d -p 8080:80 --restart always --name Meshtastic-Web ghcr.io/meshtastic/web |
|
|
|
docker run -d -p 8080:8080 --restart always --name Meshtastic-Web ghcr.io/meshtastic/web |
|
|
|
|
|
|
|
#With Podman |
|
|
|
podman run -d -p 8080:80 --restart always --name Meshtastic-Web ghcr.io/meshtastic/web |
|
|
|
podman run -d -p 8080:8080 --restart always --name Meshtastic-Web ghcr.io/meshtastic/web |
|
|
|
``` |
|
|
|
|
|
|
|
## Development & Building |
|
|
|
|