300-pipes

command
v0.0.0-...-a72c3ab Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 21, 2019 License: Apache-2.0 Imports: 5 Imported by: 0

README

300-pipes (Stream Processing)

Let’s make the previous example a bit more stream-like.

This time we use pipes to provide input as stream and collect results as they are processed.

To run this example:

$ docker pull busybox
$ go run main.go
HELLO WORLD
FROM
CONTAINER

Migration from os/exec

> 	cl, _ := docker.NewClientFromEnv()
> 	d := dexec.Docker{cl}
> 
> 	m, _ := dexec.ByCreatingContainer(docker.CreateContainerOptions{
> 		Config: &docker.Config{Image: "busybox"}})
> 
< 	cmd := exec.Command("tr", "[:lower:]", "[:upper:]")
> 	cmd := d.Command(m, "tr", "[:lower:]", "[:upper:]")

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL