https://github.com/arun-gupta/docker-hello-world
Hello World Docker Image
https://github.com/arun-gupta/docker-hello-world
docker helloworld nodejs
Last synced: 8 months ago
JSON representation
Hello World Docker Image
- Host: GitHub
- URL: https://github.com/arun-gupta/docker-hello-world
- Owner: arun-gupta
- License: apache-2.0
- Created: 2017-12-19T05:42:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-19T06:11:44.000Z (over 8 years ago)
- Last Synced: 2025-08-17T21:41:57.894Z (10 months ago)
- Topics: docker, helloworld, nodejs
- Language: JavaScript
- Size: 4.88 KB
- Stars: 2
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.adoc
- License: LICENSE
Awesome Lists containing this project
README
= Docker Hello World
This repo creates a simple Hello World Docker image.
== Build Docker image
```
docker image build -t arungupta/helloworld:1.0.0 .
```
== Push Docker image
```
docker image push arungupta/helloworld:1.0.0
```
== Run Docker container
```
docker container run -it -p 8080:8080 arungupta/helloworld:1.0.0
```
== Invoke application
```
curl http://localhost:8080
```