Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 326 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 326 Bytes

Plain HTTP

A quick configuration for getting a server up an running with Go and Docker

Prerequist

  • docker
  • docker-compose (optional)

Usage

Plain docker

docker build -t plain_http .
docker run -p 8080:8080 plain_http

Using docker-compose

docker-compose build
docker-compose up