Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 360 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 360 Bytes

Simple HTTP Echo Server

This is a simple HTTP server written in Go that echoes back the details of incoming requests as JSON.

Building the Docker Image

  1. Build the Docker image:
    docker build -t http-echo .

Running the Docker Container

  1. Run the Docker container:
    docker run --rm -p 8080:8080 http-echo