An open API service indexing awesome lists of open source software.

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

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
```