From 13bbe9815f920be1254d012f05cdd4aeb3d62327 Mon Sep 17 00:00:00 2001 From: Ethan Holz Date: Fri, 6 Sep 2024 10:15:55 -0500 Subject: [PATCH] docs: fix docs to match command line argument --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.sh b/run.sh index 7d299a3..f3ed12a 100755 --- a/run.sh +++ b/run.sh @@ -9,7 +9,7 @@ # --rm Remove the container after exiting # --volume .:/app Mount the current directory to `/app` so code changes don't require an image rebuild # --volume /app/.venv Mount the virtual environment separately, so the developer's environment doesn't end up in the container -# --expose Expose the web server port 8000 to the host +# --publish 8000:8000 Expose the web server port 8000 to the host # -it $(docker build -q .) Build the image, then use it as a run target # $@ Pass any arguments to the container