dockerfiles icon indicating copy to clipboard operation
dockerfiles copied to clipboard

collarbora support

Open maxhoheiser opened this issue 7 years ago • 1 comments

hi do you plan to add collabora docker container support with your nextcloud container, and your docker-compose file?

maxhoheiser avatar May 03 '17 11:05 maxhoheiser

Collabora works fine with the "collabora/code" image, docker-compoes.yml:

  collabora:
     restart: always
     image: collabora/code
     tty: true
     cap_add:
     - MKNOD
     environment:
     - "domain=cloud\\.nextcloud\\.com|cloud\\.example\\.org"
     ports:
     - "9980:9980"

NGINX Reverse Proxy Config:

  location ^~ /loleaflet {
    proxy_pass https://docker.lan:9980;
    proxy_set_header Host $http_host;
  }

  location ^~ /hosting/discovery {
    proxy_pass https://docker.lan:9980;
    proxy_set_header Host $http_host;
  }

  location ^~ /lool {
    proxy_pass https://docker.lan:9980;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
    proxy_set_header Host $http_host;
  }

schleyk avatar Sep 21 '17 16:09 schleyk