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

https://github.com/burubur/helloworld

a containerized Helloworld service
https://github.com/burubur/helloworld

containerization containerized hello-world helloworld microservice

Last synced: 2 months ago
JSON representation

a containerized Helloworld service

Awesome Lists containing this project

README

          

# Helloworld

![Last Binary Build](https://github.com/burubur/helloworld/workflows/Last%20Binary%20Build/badge.svg)

A containerised **HTTP** based **Helloworld** microservice.

Exposed endpoints:
- localhost:8080/ping

## Prerequisites

- [Docker](https://www.docker.com/)
- [Golang](https://golang.org/)
- **Unused port on 8080**

## Installation

```shell
make build
```

## How to Run The Service

```shell
make run
```

## How to Test The Running Service

```shell
make ping
```

## How to Login to The Running Container

> The command below require the `make run` to be performed successfully

```shell
make shell
```