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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,11 +59,11 @@ Feishin is also available as a Docker image. The images are hosted via `ghcr.io`
```bash ```bash
# Run the latest version # 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 # Build the image locally
docker build -t feishin . docker build -t feishin .
docker run --name feishin --port 9180:9180 feishin docker run --name feishin -p 9180:9180 feishin
``` ```
### Configuration ### Configuration