100-hello

command
v0.1.9 Latest Latest
Warning

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

Go to latest
Published: Dec 21, 2023 License: Apache-2.0 Imports: 3 Imported by: 0

README

100-hello-world

Welcome to dexec! First of all, thank you for your interest in learning more.

In this brief example, the command: echo "I am running inside a container!" and collect its output to a []byte to print to screen.

To run this example:

$ docker pull busybox
$ go run main.go
I am running inside a 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("echo", `I am running inside a container!`)
> 	cmd := d.Command(m, "echo", `I am running inside a container!`)

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