Skip to content

Commit

Permalink
revert image bump
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Cole <adrian@tetrate.io>
  • Loading branch information
Adrian Cole committed Mar 8, 2024
1 parent 6150f74 commit 341b5f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/consul/consul.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const (
)

const (
DefaultBaseImage = "docker.io/hashicorp/consul:1.18"
DefaultBaseImage = "docker.io/hashicorp/consul:1.15"
)

// ConsulContainer represents the Consul container type used in the module.
Expand Down
4 changes: 2 additions & 2 deletions modules/consul/examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func ExampleRunContainer() {
ctx := context.Background()

consulContainer, err := consul.RunContainer(ctx,
testcontainers.WithImage("docker.io/hashicorp/consul:1.18"),
testcontainers.WithImage("docker.io/hashicorp/consul:1.15"),
)
if err != nil {
log.Fatalf("failed to start container: %s", err)
Expand Down Expand Up @@ -46,7 +46,7 @@ func ExampleRunContainer_connect() {
ctx := context.Background()

consulContainer, err := consul.RunContainer(ctx,
testcontainers.WithImage("docker.io/hashicorp/consul:1.18"),
testcontainers.WithImage("docker.io/hashicorp/consul:1.15"),
)
if err != nil {
log.Fatalf("failed to start container: %s", err)
Expand Down

0 comments on commit 341b5f0

Please sign in to comment.