From f9b9629bc206969a09e902f1e8b75a7c679b4b42 Mon Sep 17 00:00:00 2001 From: fistralpro <80547781+fistralpro@users.noreply.github.com> Date: Tue, 12 Sep 2023 15:51:45 +0100 Subject: [PATCH] port must come before build name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e2109ad..490669a 100644 --- a/README.md +++ b/README.md @@ -4,4 +4,4 @@ ## Commands used - `docker build . -t multi-stage-example:v1` - Build image - `docker build . -t multi-stage-example:v1 --target=builder` - Build image using a specific stage -- `docker run multi-stage-example:v1 -p 8080:8080` - Run image \ No newline at end of file +- `docker run -p 8080:8080 multi-stage-example:v1` - Run image