Skip to content

Instantly share code, notes, and snippets.

@dhanush
Last active August 27, 2016 06:06
Show Gist options
  • Save dhanush/f65f036be1eda3eaabfe8bca04ede11a to your computer and use it in GitHub Desktop.
Save dhanush/f65f036be1eda3eaabfe8bca04ede11a to your computer and use it in GitHub Desktop.
reader, _ := cli.ContainerLogs(context.Background(), containerID, types.ContainerLogsOptions{
ShowStdout: true,
Follow: true,
})
defer reader.Close()
content, _ := ioutil.ReadAll(reader)
fmt.Println(string(content))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment