From a08a0afcfd2d955dcb3248c2ff920074b8bcac59 Mon Sep 17 00:00:00 2001 From: Ilja Neumann Date: Fri, 18 Dec 2020 10:34:56 +0100 Subject: [PATCH] Bind ldap-ports to localhost only for security reasons --- deployments/examples/cs3_users_ocis/docker-compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployments/examples/cs3_users_ocis/docker-compose.yaml b/deployments/examples/cs3_users_ocis/docker-compose.yaml index 8e3a1a7c2f..d854c8890a 100644 --- a/deployments/examples/cs3_users_ocis/docker-compose.yaml +++ b/deployments/examples/cs3_users_ocis/docker-compose.yaml @@ -119,8 +119,8 @@ services: LDAP_RFC2307BIS_SCHEMA: "true" LDAP_REMOVE_CONFIG_AFTER_SETUP: "false" ports: - - "389:389" - - "636:636" + - "127.0.0.1:389:389" + - "127.0.0.1:636:636" volumes: - ./config/ldap/ldif:/container/service/slapd/assets/config/bootstrap/ldif/custom restart: always