Skip to content

Instantly share code, notes, and snippets.

@sjtosco
Created June 28, 2023 15:01
Show Gist options
  • Save sjtosco/40ebead2890c38fa1a128a6357ad228e to your computer and use it in GitHub Desktop.
Save sjtosco/40ebead2890c38fa1a128a6357ad228e to your computer and use it in GitHub Desktop.
Docker hello container demos
# 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