Skip to content

Commit

Permalink
chore: #9 Update to latest instead of 1.8.0
Browse files Browse the repository at this point in the history
Signed-off-by: Laurent Broudoux <[email protected]>
  • Loading branch information
lbroudoux committed Oct 25, 2023
1 parent 99798b4 commit f29ce5b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
public class DevServicesMicrocksProcessor {

private static final Logger log = Logger.getLogger(DevServicesMicrocksProcessor.class);
private static final String MICROCKS_UBER_NIGHTLY = "quay.io/microcks/microcks-uber:1.8.0";
private static final String MICROCKS_UBER_LATEST = "quay.io/microcks/microcks-uber:latest";
private static final String MICROCKS_SCHEME = "http://";

private static final String DEV_SERVICE_NAME = "microcks";
Expand Down Expand Up @@ -213,8 +213,8 @@ private RunningDevService startContainer(DevServicesConfig devServicesConfig, Do
return null;
}

DockerImageName dockerImageName = DockerImageName.parse(devServicesConfig.imageName().orElse(MICROCKS_UBER_NIGHTLY))
.asCompatibleSubstituteFor(MICROCKS_UBER_NIGHTLY);
DockerImageName dockerImageName = DockerImageName.parse(devServicesConfig.imageName().orElse(MICROCKS_UBER_LATEST))
.asCompatibleSubstituteFor(MICROCKS_UBER_LATEST);

Supplier<RunningDevService> defaultMicrocksSupplier = () -> {
MicrocksContainer microcksContainer = new MicrocksContainer(dockerImageName);
Expand Down

0 comments on commit f29ce5b

Please sign in to comment.