Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 305 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 305 Bytes

Docker: qorbani/golang-hello-world

Simple Golang service that returns "Hello World!".

How to run it

docker run -d -p 80:80 -e PORT=80 --name=hello-world qorbani/golang-hello-world

How to build it

# To build
make clean build

# To Run
make clean run

# To push
make push