Skip to content

Commit

Permalink
Use recent version of Karapace docker
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanSkraba committed Nov 14, 2024
1 parent 1dbde5c commit 3fb56d1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ public final class SchemaRegistryContainer extends GenericContainer<SchemaRegist
public static final int SCHEMA_REGISTRY_PORT = 8081;

public SchemaRegistryContainer(final String bootstrapServer) {
this("3.7.1", bootstrapServer);
this("4.1.0", bootstrapServer);
}

public SchemaRegistryContainer(final String karapaceVersion, final String bootstrapServer) {
super("ghcr.io/aiven/karapace:" + karapaceVersion);
super("ghcr.io/aiven-open/karapace:" + karapaceVersion);
withAccessToHost(true);
withEnv("KARAPACE_ADVERTISED_HOSTNAME", "karapace-registry");
withEnv("KARAPACE_BOOTSTRAP_URI", bootstrapServer);
Expand Down

0 comments on commit 3fb56d1

Please sign in to comment.