Created
June 28, 2023 15:01
-
-
Save sjtosco/40ebead2890c38fa1a128a6357ad228e to your computer and use it in GitHub Desktop.
Docker hello container demos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NGINX Hello app | |
docker run --rm --name nginx-hello -p 8081:80 -d nginxdemos/hello | |
# GOOGLE Hello app ver 1.0 | |
docker run --rm --name hello-app -p 8080:8080 -d gcr.io/google-samples/hello-app:1.0 | |
# Test in browser with http://localhost:8080 or http://localhost:8081 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment