diff --git a/graylog2-server/src/test/java/org/graylog/testing/ldap/OpenLDAPContainer.java b/graylog2-server/src/test/java/org/graylog/testing/ldap/OpenLDAPContainer.java
index 2691cefa5b45..0342ae5478e3 100644
--- a/graylog2-server/src/test/java/org/graylog/testing/ldap/OpenLDAPContainer.java
+++ b/graylog2-server/src/test/java/org/graylog/testing/ldap/OpenLDAPContainer.java
@@ -55,7 +55,8 @@ public static OpenLDAPContainer createWithTLS() {
.withFileSystemBind(LDAPTestUtils.testTLSCertsPath("server-cert.pem"), CONTAINER_CERTS_PATH + "/server-cert.pem", BindMode.READ_ONLY)
.withFileSystemBind(LDAPTestUtils.testTLSCertsPath("server-key.pem"), CONTAINER_CERTS_PATH + "/server-key.pem", BindMode.READ_ONLY)
.withFileSystemBind(LDAPTestUtils.testTLSCertsPath("CA-cert.pem"), CONTAINER_CERTS_PATH + "/CA-cert.pem", BindMode.READ_ONLY)
- .withFileSystemBind(LDAPTestUtils.testTLSCertsPath("dhparam.pem"), CONTAINER_CERTS_PATH + "/dhparam.pem", BindMode.READ_ONLY);
+ .withFileSystemBind(LDAPTestUtils.testTLSCertsPath("dhparam.pem"), CONTAINER_CERTS_PATH + "/dhparam.pem", BindMode.READ_ONLY)
+ .withExposedPorts(PORT, TLS_PORT);
}
public OpenLDAPContainer() {
@@ -74,6 +75,7 @@ public OpenLDAPContainer() {
withNetwork(Network.newNetwork());
withNetworkAliases("openldap");
withStartupTimeout(Duration.ofSeconds(10));
+ withExposedPorts(PORT);
}
/**
diff --git a/pom.xml b/pom.xml
index 3f654c4ea80a..67b62e8d132c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -176,7 +176,7 @@
1.0.0-rc.5
4.3.1
1.19.0
- 1.15.2
+ 1.16.0
v14.15.4