mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-10 15:47:54 +02:00
documented EPL installation via docker-compose.yml file
@ -15,6 +15,28 @@ mkdir data # this is where egroupware data is stored, it's by default a subdir o
|
|||||||
docker-compose up -d
|
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
|
### Docker Desktop for Mac notes
|
||||||
* directories of volumes must be exported to Docker, by default only your home-directory is!
|
* 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!
|
* permissions of data directory must be writable by your user, as Docker daemon runs as that user!
|
||||||
|
Reference in New Issue
Block a user