Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 654 Bytes

README.md

File metadata and controls

29 lines (25 loc) · 654 Bytes

Description

Docker を用いて、 "Hello world" というメッセージ を JSON 形式で返す API

DEMO

使用したdocker image
golang:latest

Usage

build and run

$ git clone https://github.com/aeleniumfor/coding_challenge_1.git
$ cd coding_challenge_1
$ docker build -t golang_app .
$ docker run -d -p 8080:8080 --rm golang_app

confirmation

ステータスコードの確認
$ curl -LI http://localhost:8080/ -o /dev/null -w '%{http_code}' -s
レスポンスの確認
$ curl -XGET -H 'Content-Type:application/json' http://localhost:8080/