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
- Host: GitHub
- URL: https://github.com/burubur/helloworld
- Owner: burubur
- License: mit
- Created: 2019-11-16T13:56:46.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-07-12T18:23:04.000Z (9 months ago)
- Last Synced: 2025-07-12T18:44:20.071Z (9 months ago)
- Topics: containerization, containerized, hello-world, helloworld, microservice
- Language: Go
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Helloworld

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