Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

Commit

Permalink
Change go module name and up versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mstoykov committed Jan 26, 2022
1 parent 399d3e4 commit 9d3ba16
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 126 deletions.
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
>
> As this is a proof of concept, it won't be supported by the k6 team.
> It may also break in the future as xk6 evolves. USE AT YOUR OWN RISK!
> Any issues with the tool should be raised [here](https://github.com/k6io/xk6-docker/issues).
> Any issues with the tool should be raised [here](https://github.com/grafana/xk6-docker/issues).
</br>
</br>
Expand Down Expand Up @@ -30,7 +30,7 @@ Then:

2. Build the binary:
```bash
$ xk6 build --with github.com/k6io/xk6-docker@latest
$ xk6 build --with github.com/grafana/xk6-docker@latest
```

## Example
Expand Down
34 changes: 30 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,19 +1,45 @@
module github.com/k6io/xk6-docker
module github.com/grafana/xk6-docker

go 1.15
go 1.17

require (
github.com/docker/docker v20.10.4+incompatible
go.k6.io/k6 v0.36.0
)

require (
github.com/Microsoft/go-winio v0.4.16 // indirect
github.com/containerd/containerd v1.4.3 // indirect
github.com/dlclark/regexp2 v1.4.1-0.20201116162257-a2a8dda75c91 // indirect
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/docker/docker v20.10.4+incompatible
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/dop251/goja v0.0.0-20220110113543-261677941f3c // indirect
github.com/fatih/color v1.12.0 // indirect
github.com/go-sourcemap/sourcemap v2.1.4-0.20211119122758-180fcef48034+incompatible // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.4.3 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.13 // indirect
github.com/moby/term v0.0.0-20201216013528-df9cb8a40635 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.1 // indirect
go.k6.io/k6 v0.32.0
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/serenize/snaker v0.0.0-20201027110005-a7ad2135616e // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/spf13/afero v1.1.2 // indirect
golang.org/x/net v0.0.0-20211209100829-84cba5454caf // indirect
golang.org/x/sys v0.0.0-20210511113859-b0526f3d8744 // indirect
golang.org/x/text v0.3.7-0.20210503195748-5c7c50ebbd4f // indirect
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
google.golang.org/genproto v0.0.0-20200903010400-9bfcb5116336 // indirect
google.golang.org/grpc v1.41.0 // indirect
google.golang.org/protobuf v1.25.1-0.20200805231151-a709e31e5d12 // indirect
gopkg.in/guregu/null.v3 v3.3.0 // indirect
gotest.tools/v3 v3.0.3 // indirect
)
Loading

0 comments on commit 9d3ba16

Please sign in to comment.