From a8adee4239ecd9286d9411fe8280263e4903f018 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 11 Feb 2020 09:50:20 +0100 Subject: [PATCH] documented EPL installation via docker-compose.yml file --- Docker-compose-installation.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/Docker-compose-installation.md b/Docker-compose-installation.md index 5a83bad..52a541b 100644 --- a/Docker-compose-installation.md +++ b/Docker-compose-installation.md @@ -15,6 +15,28 @@ mkdir data # this is where egroupware data is stored, it's by default a subdir o docker-compose up -d ``` +### EGroupware EPL installation instructions +* you have to do the installation of the community version, as described on this page, first +* once EGroupware CE is up and running, change your docker-compose.yml from +``` +services: + egroupware: + image: egroupware/egroupware:latest + # EPL image: download.egroupware.org/egroupware/epl:latest +``` +to (indention per space characters matter!) +``` +services: + egroupware: + # CE image: egroupware/egroupware:latest + image: download.egroupware.org/egroupware/epl:latest +``` +Then run the following commands (inside the directory with your docker-compose.yml file) and give your EPL credentials: +``` +docker login download.egroupware.org +docker-compose up -d +``` + ### Docker Desktop for Mac notes * directories of volumes must be exported to Docker, by default only your home-directory is! * permissions of data directory must be writable by your user, as Docker daemon runs as that user!