Skip to content

Commit 40724a0

Browse files
authored
Fix testcontainers#1391 by using a tagged version of sshd (testcontainers#1407)
Workaround for testcontainers#1406
1 parent cc09697 commit 40724a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public String getRyukImage() {
5555
}
5656

5757
public String getSSHdImage() {
58-
return (String) properties.getOrDefault("sshd.container.image", "quay.io/testcontainers/sshd@sha256:18aa929c653284189fc9cefa45b731021857b6047a0a1757e909f958f258f088");
58+
return (String) properties.getOrDefault("sshd.container.image", "quay.io/testcontainers/sshd:1.0.0");
5959
}
6060

6161
public Integer getRyukTimeout() {

0 commit comments

Comments
 (0)