Skip to content

Commit

Permalink
Merge pull request #6 from thediveo/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
thediveo authored Mar 26, 2024
2 parents 4138a69 + 974d137 commit 39d1960
Show file tree
Hide file tree
Showing 5 changed files with 94 additions and 50 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,26 @@ options in packages, such as `run` for "_run_ container" and `exec` for
otherwise clash across different API operations for common configuration
elements, such as names, labels, and options.

- [Session.BuildImage](https://pkg.go.dev/github.com/thediveo/morbyd#Session.BuildImage):
options are in the
[build](https://pkg.go.dev/github.com/thediveo/morbyd/build) package, such as
[WithDockerfile](https://pkg.go.dev/github.com/thediveo/morbyd/build#WithDockerfile),
...
- [Session.Run](https://pkg.go.dev/github.com/thediveo/morbyd#Session.Run) a new
container: options are in the
[run](https://pkg.go.dev/github.com/thediveo/morbyd/run) package, such as
[WithCommand](https://pkg.go.dev/github.com/thediveo/morbyd/run#WithCommand)...
- [Container.Exec](https://pkg.go.dev/github.com/thediveo/morbyd#Container.Exec)ute
a command inside a container: options are in the
[exec](https://pkg.go.dev/github.com/thediveo/morbyd/exec) package, such as
[WithCombinedOutput](https://pkg.go.dev/github.com/thediveo/morbyd/exec#WithCombinedOutput)...
- [Session.CreateNetwork](https://pkg.go.dev/github.com/thediveo/morbyd#Session.CreateNetwork):
with options in the [net](https://pkg.go.dev/github.com/thediveo/morbyd/net)
and [bridge](https://pkg.go.dev/github.com/thediveo/morbyd/net/bridge),
[macvlan](https://pkg.go.dev/github.com/thediveo/morbyd/net/macvlan),
[ipvlan](https://pkg.go.dev/github.com/thediveo/morbyd/net/ipvlan) sub
packages.

## Features of morbyd

- testable examples for common tasks to get you quickly up and running. Please
Expand Down
29 changes: 15 additions & 14 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
module github.com/thediveo/morbyd

go 1.20
go 1.21

require (
github.com/docker/docker v25.0.2+incompatible
github.com/docker/docker v26.0.0+incompatible
github.com/docker/go-units v0.5.0
github.com/moby/buildkit v0.12.5
github.com/onsi/ginkgo/v2 v2.15.0
github.com/onsi/gomega v1.31.1
github.com/moby/buildkit v0.13.1
github.com/onsi/ginkgo/v2 v2.17.1
github.com/onsi/gomega v1.32.0
github.com/opencontainers/image-spec v1.1.0
github.com/pkg/errors v0.9.1
github.com/thediveo/fdooze v0.3.1
github.com/thediveo/success v1.0.2
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a
go.uber.org/mock v0.4.0
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8
)

require (
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/containerd/containerd v1.7.12 // indirect
github.com/containerd/containerd v1.7.13 // indirect
github.com/containerd/log v0.1.0 // indirect
github.com/distribution/reference v0.5.0 // indirect
github.com/docker/go-connections v0.5.0 // indirect
Expand All @@ -27,30 +29,29 @@ require (
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
github.com/google/pprof v0.0.0-20230323073829-e72429f035bd // indirect
github.com/klauspost/compress v1.17.5 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/moby/docker-image-spec v1.3.1 // indirect
github.com/moby/patternmatcher v0.6.0 // indirect
github.com/moby/sys/sequential v0.5.0 // indirect
github.com/moby/sys/user v0.1.0 // indirect
github.com/moby/term v0.5.0 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.0-rc3 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect
go.opentelemetry.io/otel v1.22.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.22.0 // indirect
go.opentelemetry.io/otel/metric v1.22.0 // indirect
go.opentelemetry.io/otel/sdk v1.22.0 // indirect
go.opentelemetry.io/otel/trace v1.22.0 // indirect
go.uber.org/mock v0.4.0 // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/net v0.20.0 // indirect
golang.org/x/sys v0.16.0 // indirect
golang.org/x/mod v0.16.0 // indirect
golang.org/x/net v0.22.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.5.0 // indirect
golang.org/x/tools v0.17.0 // indirect
golang.org/x/tools v0.19.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gotest.tools/v3 v3.5.1 // indirect
)
Loading

0 comments on commit 39d1960

Please sign in to comment.