Update how to run EGroupware 19.1 on Debian 9

Ralf Becker 2019-08-21 08:48:03 +02:00
parent a3180c54ee
commit fa15e67877

@ -34,9 +34,22 @@ sudo apt-get install egroupware-docker
> Ubuntu 16.04 does not provide a docker-compose package/command, therefore we provide one in our repository. > Ubuntu 16.04 does not provide a docker-compose package/command, therefore we provide one in our repository.
# Debian 9 # Debian 9
Debian 9 does NOT contain a docker.io package. You can use Docker CE [by following this instructions](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-debian-9). Debian 9 does NOT contain a docker.io package. You can use Docker CE [by following this instructions](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-debian-9), or the short version here:
Unfortunately Docker CE seems to install an old version of docker-compose, not supporting the new file format 3 used by us. ```
> This are probably all solvable problems, but we currently have no documentation what exactly needs to be done and therefore do NOT recommend updating to 19.1 at the moment. apt update
apt install apt-transport-https ca-certificates curl gnupg2 software-properties-common
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
apt update
apt install docker-ce
# due to known bug docker-ce wont start unless you reboot the maschine
reboot
```
Please verify that docker is running, after the reboot, our installation will not run without:
```
systemctl status docker
```
Now you can follow the Ubuntu/Debian instructions above using "Debian_9.0" instead of "xUbuntu_18.04".
# openSUSE 15.1 & 15.0 or SLES 15 & 12 # openSUSE 15.1 & 15.0 or SLES 15 & 12
> If you have automatic updates enabled or run ```zypper update``` manually update to 19.1 will happen automatic! > If you have automatic updates enabled or run ```zypper update``` manually update to 19.1 will happen automatic!