Fixed incorrect docker command argument (#365)

This commit is contained in:
doggo
2023-11-12 11:40:38 +00:00
committed by GitHub
parent f24cf5a928
commit cf544bea61
+2 -2
View File
@@ -59,11 +59,11 @@ Feishin is also available as a Docker image. The images are hosted via `ghcr.io`
```bash
# Run the latest version
docker run --name feishin --port 9180:9180 ghcr.io/jeffvli/feishin:latest
docker run --name feishin -p 9180:9180 ghcr.io/jeffvli/feishin:latest
# Build the image locally
docker build -t feishin .
docker run --name feishin --port 9180:9180 feishin
docker run --name feishin -p 9180:9180 feishin
```
### Configuration