Hey Hey,
Iām having some problems getting the Collabora docker image to run. First time poster here, any help that can point me in the right direction is appreciated.
Iām trying to get the Collabora docker image set up.
Docs Iāve been following: Nextcloud Office - Self-hosted online office suite also taking in https://www.collaboraoffice.com/code/docker/
Before setting up the reverse proxy, I wanted to prove the docker image was serving content:
root@srv-4qw44:~# curl -k https://localhost:9980
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to localhost:9980
From inside the docker image:
root@5b5dec6105cd:/# curl 127.0.0.1:9980
curl: (7) Failed to connect to 127.0.0.1 port 9980: Connection refused
What Iām seeing is that both from inside and outside the container are failing requests of HTTP or HTTPS on port 9980.
Iām expecting to see āOKā or at least some random HTML.
I am trying to start the docker image with:
docker run -t -d -p 127.0.0.1:9980:9980 -e "domain=tim\\.example\\.co\\.uk" -e "username=admin" -e "password=Test12345" --cap-add MKNOD --restart always collabora/code
docker logs gives me https://pastebin.com/raw/iDyFWkgP
root@srv-4qw44:~# cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=18.04
DISTRIB_CODENAME=bionic
DISTRIB_DESCRIPTION=āUbuntu 18.04.2 LTSā
root@srv-4qw44:~# docker -v
Docker version 18.09.6, build 481bc77
Iām happy to offer more information - any thoughts or suggestions would be very welcome!