/go-dockercloud

Go library for Docker Cloud API

Primary LanguageGoApache License 2.0Apache-2.0

go-docker-cloud

========

Go library for Dockercloud's API. Full documentation available at https://docs.docker.com/apidocs/docker-cloud/

##Set up

Installation:

In order to install the Dockercloud Go library, you can use :

go get github.com/docker/go-dockercloud/dockercloud

Auth:

In order to be able to make requests to the API, you should first obtain an ApiKey for your account. For this, log into Dockercloud, click on the menu on the upper right corner of the screen and select Get Api Key.

You can use your ApiKey with the Go library in any of the following ways:

Manually set in your Go code

dockercloud.User = "yourUsernameHere"
dockercloud.ApiKey = "yourApiKeyHere"

Use the docker.cfg file

Set the environment variables DOCKERCLOUD_USER and DOCKERCLOUD_APIKEY

##Examples

Note

Each of the methods that require a uuid number as argument can also use a resource_uri as argument.

Creating and deploying a NodeCluster

nodecluster, err := dockercloud.CreateNodeCluster(dockercloud.NodeCreateRequest{Name: "Go-SDK-test", Region: "/api/v1/region/digitalocean/lon1/", NodeType: "/api/v1/nodetype/digitalocean/1gb/", Target_num_nodes: 2})

if err != nil {
  log.Println(err)
}

if err = nodecluster.Deploy(); err != nil {
   log.Println(err)
}

Creating and starting a Stack

stack, err := dockercloud.CreateStack(dockercloud.StackCreateRequest{Name: "new-stack", Services: []dockercloud.ServiceCreateRequest{{Image: "dockercloud/hello-world", Name: "test", Target_num_containers: 2}}})

if err != nil {
  log.Println(err)
}

if err = stack.Start(); err != nil {
   log.Println(err)
}

Listing running containers

containers, err := dockercloud.ListContainers()

if err != nil {
	log.Println(err)
}

log.Println(containers)

Stopping a running service

service, err := dockercloud.GetService("7eaf7fff-882c-4f3d-9a8f-a22317ac00ce")
// or service, err := dockercloud.GetService("/api/v1/service/7eaf7fff-882c-4f3d-9a8f-a22317ac00ce")


if err != nil {
	log.Println(err)
}

if err = service.Stop(); err != nil {
   log.Println(err)
}

Events

In order to handle events, you can call the Events function inside a goroutine.

dockercloud.StreamUrl = "wss://ws.cloud.docker.com:443/v1/"

c := make(chan dockercloud.Event)
e := make(chan error)
go dockercloud.Events(c, e)

for {
	select {
		case event := <-c:
			log.Println(event)
		case err := <-e:
			log.Println(err)
	}
}

The complete API Documentation is available here with additional examples written in Go.