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() {
58
58
this .properties .putAll (environmentProperties );
59
59
}
60
60
61
+ @ Deprecated
61
62
public String getAmbassadorContainerImage () {
62
63
return (String ) properties .getOrDefault ("ambassador.container.image" , "richnorth/ambassador:latest" );
63
64
}
@@ -67,7 +68,7 @@ public String getSocatContainerImage() {
67
68
}
68
69
69
70
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" );
71
72
}
72
73
73
74
public String getDockerComposeContainerImage () {
@@ -83,11 +84,11 @@ public boolean isRyukPrivileged() {
83
84
}
84
85
85
86
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" );
87
88
}
88
89
89
90
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" );
91
92
}
92
93
93
94
public Integer getRyukTimeout () {
You can’t perform that action at this time.
0 commit comments