From cf544bea61eb0cadf3a8a8bdb6ae37726ac156e4 Mon Sep 17 00:00:00 2001 From: doggo <69658702+upsetdog@users.noreply.github.com> Date: Sun, 12 Nov 2023 11:40:38 +0000 Subject: [PATCH] Fixed incorrect docker command argument (#365) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 39ee38fd..f307c8c4 100644 --- a/README.md +++ b/README.md @@ -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