From 51dfaf2efc2eaf0a0d4691be27df6f57dd0468a3 Mon Sep 17 00:00:00 2001 From: Felix Bartels Date: Thu, 29 Nov 2018 08:04:42 +0100 Subject: [PATCH] clarify demo usage of the current setup rename ldap to ldap-demo add section to readme with steps to take for production use Signed-off-by: Felix Bartels --- README.md | 8 ++++++++ {ldap => ldap-demo}/Dockerfile | 0 {ldap => ldap-demo}/bootstrap/ldif/demo-users.ldif | 0 {ldap => ldap-demo}/bootstrap/schema/mmc/kopano.schema | 0 4 files changed, 8 insertions(+) rename {ldap => ldap-demo}/Dockerfile (100%) rename {ldap => ldap-demo}/bootstrap/ldif/demo-users.ldif (100%) rename {ldap => ldap-demo}/bootstrap/schema/mmc/kopano.schema (100%) diff --git a/README.md b/README.md index e8a532f..7e634d4 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,14 @@ If you are running a private Docker Registry then you may also change `docker_re The built image includes your subscription key! Do not push this image to any public registry like e.g. https://hub.docker.com! +### I want to use these Docker images outside of an evaluation environment. What do I need to adjust to make this possible? + +To get a quick impression of Kopano this git repository bundles a locally build ldap image with some example users. When using the docker-compose.yml in a production environment make sure to: + +- either remove `ldap-demo/bootstrap/ldif/demo-users.ldif` from the locally built ldap image or complelty remove the local ldap from the compose file +- adapt ldap queries in .env to match you actual ldap server and users +- all additional configuration of the Kopano components should be specified in the compose file and **not within the running container** + ### Some more commands for those unfamilar with docker-compose - Start ``docker-compose-yml`` file in the background: `docker-compose up -d` diff --git a/ldap/Dockerfile b/ldap-demo/Dockerfile similarity index 100% rename from ldap/Dockerfile rename to ldap-demo/Dockerfile diff --git a/ldap/bootstrap/ldif/demo-users.ldif b/ldap-demo/bootstrap/ldif/demo-users.ldif similarity index 100% rename from ldap/bootstrap/ldif/demo-users.ldif rename to ldap-demo/bootstrap/ldif/demo-users.ldif diff --git a/ldap/bootstrap/schema/mmc/kopano.schema b/ldap-demo/bootstrap/schema/mmc/kopano.schema similarity index 100% rename from ldap/bootstrap/schema/mmc/kopano.schema rename to ldap-demo/bootstrap/schema/mmc/kopano.schema