5 / 5
Jan 2020

Dear @RalfBecker,
I followed the instructions at https://github.com/EGroupware/egroupware/tree/master/doc/docker/development#egroupware-development-enviroment-as-docker-container14

I created a dev dir under ~/docker and in this dev directory I ran

mkdir sources data

But when I ran

sudo docker-compose up -d

the the installation stopped with the following error:


Digest: sha256:b39aa4b0878378c274d9043fb2cddd8ed6388df9082be1322ee2ddab3994b29e
Status: Downloaded newer image for nginx:stable-alpine
Creating egroupware-watchtower …
Creating egroupware-push …
Creating egroupware-db …
Creating egroupware-push
Creating egroupware-watchtower
Creating egroupware-push … error

ERROR: for egroupware-push Cannot create container for service push: failed to mount local volume: mount /sources/egroupware/swoolepush:/var/lib/docker/volumes/dCreating egroupware-db … done
Creating egroupware …
Creating egroupware … error

ERROR: for egroupware Cannot start service egroupware: error while mounting volume ‘/var/lib/docker/volumes/dev_sources/_data’: failed to mount local volume: mouCreating egroupware-watchtower … done

ERROR: for push Cannot create container for service push: failed to mount local volume: mount /sources/egroupware/swoolepush:/var/lib/docker/volumes/dev_sources-push/_data, flags: 0x1000: no such file or directory

ERROR: for egroupware Cannot start service egroupware: error while mounting volume ‘/var/lib/docker/volumes/dev_sources/_data’: failed to mount local volume: mount /sources:/var/lib/docker/volumes/dev_sources/_data, flags: 0x1000: no such file or directory
ERROR: Encountered errors while bringing up the project.

Do you have any clue what I am doing wrong?

Thank for your support and BR

Alex

  • created

    Jan '20
  • last reply

    Jan '20
  • 4

    replies

  • 2.2k

    views

  • 2

    users

  • 7

    links

Can you check that your sources folder contains the swoolpush app/directory?

Ralf

Hello Ralf,
after the fixes you made, today I gave it a new try on another a clean Ubuntu 18.04 system. It worked without changing anything at

docker-compose.yml

and following these steps:

$ apt-cache madison docker-ce
docker-ce | 5:19.03.5~3-0~ubuntu-bionic | https://download.docker.com/linux/ubuntu2 bionic/stable amd64 Packages
docker-ce | 5:19.03.4~3-0~ubuntu-bionic | https://download.docker.com/linux/ubuntu2 bionic/stable amd64 Packages
docker-ce | 5:19.03.3~3-0~ubuntu-bionic | https://download.docker.com/linux/ubuntu2 bionic/stable amd64 Packages
docker-ce | 5:19.03.2~3-0~ubuntu-bionic | https://download.docker.com/linux/ubuntu2 bionic/stable amd64 Packages
docker-ce | 5:19.03.1~3-0~ubuntu-bionic | https://download.docker.com/linux/ubuntu2 bionic/stable amd64 Packages
docker-ce | 5:19.03.0~3-0~ubuntu-bionic | https://download.docker.com/linux/ubuntu2 bionic/stable amd64 Packages
docker-ce | 5:18.09.9~3-0~ubuntu-bionic | https://download.docker.com/linux/ubuntu2 bionic/stable amd64 Packages
docker-ce | 5:18.09.8~3-0~ubuntu-bionic | https://download.docker.com/linux/ubuntu2 bionic/stable amd64 Packages
docker-ce | 5:18.09.7~3-0~ubuntu-bionic | https://download.docker.com/linux/ubuntu2 bionic/stable amd64 Packages …

  • I used the following:

5:18.09.9~3-0~ubuntu-bionic

$ sudo usermod -aG docker $USER

  • Then I installed docker-compose using

$ sudo apt install docker-compose

mkdir dev && cd dev
wget https://raw.githubusercontent.com/EGroupware/egroupware/master/doc/docker/development/docker-compose.yml4
wget https://raw.githubusercontent.com/EGroupware/egroupware/master/doc/docker/development/nginx.conf
mkdir sources data

  • And in the dev directory

$ docker-compose up -d

  • Then the installation started but did not finish, at some point it could not find the directory

sources/egroupware/swoolepush

  • I manually created the directory

swoolepush

  • and set ownership of sources folder and all its subfolders and files to my laptop user

  • then I executed again:

$ docker-compose up -d

  • and then

$ docker-compose logs -f egroupware

to see the egroupware installation progress inside the container.

  • At some point it finished and I was able to access EGroupware via my web-browser:

http://localhost:8080/egroupware6