Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/shahidhk/go-docker

Sample code and dockerfiles accompanying the blog post The Ultimate Guide to Writing Dockerfiles for Go Web-apps
https://github.com/shahidhk/go-docker

alpine dep docker dockerfile gin glide go golang live-reload multistage scratch upx

Last synced: 3 months ago
JSON representation

Sample code and dockerfiles accompanying the blog post The Ultimate Guide to Writing Dockerfiles for Go Web-apps

Awesome Lists containing this project

README

        

# go-docker

A simple web app written in Go, with dockerfiles for development and production.

Build and run using any dockerfile:

```bash
$ docker build -f [dockerfile] -t go-docker .
$ docker run --rm -it -p 8080:8080 go-docker
```

See branch [glide](https://github.com/shahidhk/go-docker/tree/glide) for glide based workflow instead of dep.