Skip to content

Commit

Permalink
Use testcontainers/* Docker Hub images (testcontainers#2850)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsideup authored Jun 6, 2020
1 parent f90ad90 commit 7ba0657
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ static AtomicReference<TestcontainersConfiguration> getInstanceField() {
this.properties.putAll(environmentProperties);
}

@Deprecated
public String getAmbassadorContainerImage() {
return (String) properties.getOrDefault("ambassador.container.image", "richnorth/ambassador:latest");
}
Expand All @@ -67,7 +68,7 @@ public String getSocatContainerImage() {
}

public String getVncRecordedContainerImage() {
return (String) properties.getOrDefault("vncrecorder.container.image", "testcontainersofficial/vnc-recorder:1.1.0");
return (String) properties.getOrDefault("vncrecorder.container.image", "testcontainers/vnc-recorder:1.1.0");
}

public String getDockerComposeContainerImage() {
Expand All @@ -83,11 +84,11 @@ public boolean isRyukPrivileged() {
}

public String getRyukImage() {
return (String) properties.getOrDefault("ryuk.container.image", "testcontainersofficial/ryuk:0.3.0");
return (String) properties.getOrDefault("ryuk.container.image", "testcontainers/ryuk:0.3.0");
}

public String getSSHdImage() {
return (String) properties.getOrDefault("sshd.container.image", "testcontainersofficial/sshd:1.0.0");
return (String) properties.getOrDefault("sshd.container.image", "testcontainers/sshd:1.0.0");
}

public Integer getRyukTimeout() {
Expand Down

0 comments on commit 7ba0657

Please sign in to comment.