From b16a3be768ffda4e9e2047dcb6fd1ebee019d612 Mon Sep 17 00:00:00 2001 From: Ken Schaefer Date: Thu, 17 Nov 2022 08:30:00 -0600 Subject: [PATCH] minor edit --- Cheatsheets/docker.md | 2 ++ Runbooks/docker-static-html-nginx.md | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Cheatsheets/docker.md b/Cheatsheets/docker.md index 0ce3239..65a9d37 100644 --- a/Cheatsheets/docker.md +++ b/Cheatsheets/docker.md @@ -17,6 +17,8 @@ I am a big fan of Academind on uDemy and YouTube. Their classes on eDemy are con ## UBUNTU INSTALLATION +hmmmm, this looks like it should be a bash script. + ### Base Install As usual, update your packages diff --git a/Runbooks/docker-static-html-nginx.md b/Runbooks/docker-static-html-nginx.md index 86a4be3..d065344 100644 --- a/Runbooks/docker-static-html-nginx.md +++ b/Runbooks/docker-static-html-nginx.md @@ -16,4 +16,7 @@ EXPOSE 80 `docker build -t myproject:v1 .` ## Run a container from the image -`docker run -d -p 8080:80 myproject:v1` \ No newline at end of file +`docker run -d -p 8080:80 myproject:v1` + +## View the site +Open a browser at `http://localhost:8080` \ No newline at end of file