Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 941 Bytes

owncloud.md

File metadata and controls

29 lines (20 loc) · 941 Bytes

Upload SIZE

In the outer webserver you need to add the following line if nginx

  • client_max_body_size 2000M; or something similar if apache

TO check webdav client download from http://www.webdav.org/neon/litmus/

BELOW IS DEPRECATED

#Owncloud to share files and data with each other There is a dockerized version on docker-hub, which is complete except for the LDAP libraries for php. So we take the Dockerfile from the 9.0 version and add some extra lines. https://hub.docker.com/_/owncloud/ See Dockerfile for further details

docker build -f Dockerfile -t owncloud-ldap .

#
docker run -d  -p 86:80 owncloud-ldap

We still need to attach the data folder and others

  • -v //apps:/var/www/html/apps installed / modified apps
  • -v //config:/var/www/html/config local configuration
  • -v //data:/var/www/html/data the actual data of your ownCloud