Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 181 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 181 Bytes

hello-go

Docker

# Build the image
docker build -t go-hello .

# Run it
docker run -it --rm -p 8080:80 --env GREETING='Hello, Docker!' --name go-hello-app go-hello