mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
documented EPL installation via docker-compose.yml file
parent
17f5f71860
commit
a8adee4239
@ -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!
|
||||
|
Loading…
Reference in New Issue
Block a user