Tutorial for getting started with Go apps in Tutum
8.7K
A simple Golang web app (using Martini) which can easily be deployed to Tutum.
This application support the Getting Started with Golang on Tutum article - check it out
Build and run using Docker:
$ git clone https://github.com/tutumcloud/quickstart-go
$ cd quickstart-go
$ docker build -t quickstart-go .
$ docker run -d -p 80 quickstart-go
Or using fig:
$ git clone https://github.com/tutumcloud/quickstart-go
$ cd quickstart-go
$ fig up
Or run the pre-built/dockerized version:
$ docker run -d --env AUTH=no --name mongo tutum/mongodb
$ docker run -d -p 80 --link mongo:mongo tutum/quickstart-go
$ tutum login
$ tutum service run tutum/quickstart-go
Continue with this tutorial here.
Content type
Image
Digest
sha256:7f3e56be3…
Size
179.5 MB
Last updated
over 11 years ago
docker pull tutum/quickstart-go