Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/callicoder/go-docker
Golang Docker Container Example
https://github.com/callicoder/go-docker
container docker go golang image multi-stage-build
Last synced: 3 months ago
JSON representation
Golang Docker Container Example
- Host: GitHub
- URL: https://github.com/callicoder/go-docker
- Owner: callicoder
- Created: 2018-12-22T10:59:13.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-12T11:26:28.000Z (about 1 year ago)
- Last Synced: 2024-04-11T15:33:44.944Z (10 months ago)
- Topics: container, docker, go, golang, image, multi-stage-build
- Language: Go
- Homepage: https://www.callicoder.com/docker-golang-image-container-example/
- Size: 6.84 KB
- Stars: 43
- Watchers: 4
- Forks: 47
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# go-docker
Several Examples for building docker containers for your Go applications.
## Running the app locally
```bash
$ go build
$ ./go-docker
2019/02/03 11:38:11 Starting Server
``````bash
$ curl http://localhost:8080?name=Rajeev
Hello, Rajeev
```## Building and running the docker image
Read the tutorial: [Building Docker Containers for Go Applications](https://www.callicoder.com/docker-golang-image-container-example/)