Difference between revisions of "OwnCloud"

From air
Jump to navigation Jump to search
(Created page with " ownCloud gives you universal access to your files through a web interface or WebDAV. It also provides a platform to easily view & sync your contacts, calendars and bookmarks ...")
 
 
Line 4: Line 4:
 
* [http://owncloud.org/ http://owncloud.org/]
 
* [http://owncloud.org/ http://owncloud.org/]
 
* [https://github.com/owncloud/ https://github.com/owncloud/]
 
* [https://github.com/owncloud/ https://github.com/owncloud/]
  +
  +
=Installation de ownCloud avec [[Docker]]=
  +
  +
<pre>
  +
docker pull owncloud
  +
docker run -d -p 80:80 -v owncloud:8.1
  +
</pre>
  +
  +
ou avec docker-compose.yml for ownCloud

Latest revision as of 18:06, 7 January 2017

ownCloud gives you universal access to your files through a web interface or WebDAV. It also provides a platform to easily view & sync your contacts, calendars and bookmarks across all your devices and enables basic editing right on the web. Installation has minimal server requirements, doesn’t need special permissions and is quick. ownCloud is extendable via a simple but powerful API for applications and plugins.

Installation de ownCloud avec Docker

docker pull owncloud
docker run -d -p 80:80 -v owncloud:8.1 

ou avec docker-compose.yml for ownCloud