Skip to content

Commit 7ba0657

Browse files
authored
Use testcontainers/* Docker Hub images (#2850)
1 parent f90ad90 commit 7ba0657

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

core/src/main/java/org/testcontainers/utility/TestcontainersConfiguration.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ static AtomicReference<TestcontainersConfiguration> getInstanceField() {
5858
this.properties.putAll(environmentProperties);
5959
}
6060

61+
@Deprecated
6162
public String getAmbassadorContainerImage() {
6263
return (String) properties.getOrDefault("ambassador.container.image", "richnorth/ambassador:latest");
6364
}
@@ -67,7 +68,7 @@ public String getSocatContainerImage() {
6768
}
6869

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

7374
public String getDockerComposeContainerImage() {
@@ -83,11 +84,11 @@ public boolean isRyukPrivileged() {
8384
}
8485

8586
public String getRyukImage() {
86-
return (String) properties.getOrDefault("ryuk.container.image", "testcontainersofficial/ryuk:0.3.0");
87+
return (String) properties.getOrDefault("ryuk.container.image", "testcontainers/ryuk:0.3.0");
8788
}
8889

8990
public String getSSHdImage() {
90-
return (String) properties.getOrDefault("sshd.container.image", "testcontainersofficial/sshd:1.0.0");
91+
return (String) properties.getOrDefault("sshd.container.image", "testcontainers/sshd:1.0.0");
9192
}
9293

9394
public Integer getRyukTimeout() {

0 commit comments

Comments
 (0)