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