File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
core/src/main/java/org/testcontainers/utility Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff 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 () {
You can’t perform that action at this time.
0 commit comments