Skip to content

Commit

Permalink
Update minio dependency to just always use latest
Browse files Browse the repository at this point in the history
This is what their documentation recommends, even if weird.
  • Loading branch information
turt2live committed Sep 5, 2023
1 parent 9286c1d commit 0748ba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_internals/deps_minio.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func MakeMinio(depNet *NetworkDep) (*MinioDep, error) {
consolePort, _ := nat.NewPort("tcp", "9090")
container, err := testcontainers.GenericContainer(ctx, testcontainers.GenericContainerRequest{
ContainerRequest: testcontainers.ContainerRequest{
Image: "quay.io/minio/minio:RELEASE.2023-08-09T23-30-22Z",
Image: "quay.io/minio/minio:latest",
ExposedPorts: []string{"9000/tcp", "9090/tcp"},
Env: map[string]string{
"MINIO_ROOT_USER": "admin",
Expand Down

0 comments on commit 0748ba8

Please sign in to comment.