Skip to content

Commit

Permalink
Fixed incorrect docker command argument
Browse files Browse the repository at this point in the history
  • Loading branch information
upsetdog authored Nov 7, 2023
1 parent adc09e6 commit e039bb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e039bb4

Please sign in to comment.