2016-07-10 14:03:02 +02:00
|
|
|
nextcloud
|
|
|
|
=========
|
|
|
|
|
2018-01-29 15:19:05 +02:00
|
|
|
:warning: IT'S DEPRECATED! PLEASE USE OFFICIAL DOCKER IMAGE: [nextcloud](https://hub.docker.com/_/nextcloud/)
|
|
|
|
|
2016-07-10 14:03:02 +02:00
|
|
|
[Nextcloud][1] puts your data at your fingertips, under your control.
|
|
|
|
|
|
|
|
## Server Setup
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker-compose up -d
|
2018-02-10 06:44:39 +02:00
|
|
|
|
|
|
|
$ docker-compose exec -u www-data nextcloud ./occ files:scan --all
|
2016-11-03 05:07:14 +02:00
|
|
|
Starting scan for user 1 out of 1 (admin)
|
|
|
|
+---------+-------+--------------+
|
|
|
|
| Folders | Files | Elapsed time |
|
|
|
|
+---------+-------+--------------+
|
|
|
|
| 10 | 21 | 00:00:00 |
|
|
|
|
+---------+-------+--------------+
|
2018-02-10 06:44:39 +02:00
|
|
|
|
|
|
|
$ crontab -l
|
|
|
|
0 * * * * docker exec -u www-data nextcloud_nextcloud_1 ./occ files:scan --all
|
2016-07-10 14:03:02 +02:00
|
|
|
```
|
|
|
|
|
2016-11-03 05:07:14 +02:00
|
|
|
You can use the [occ][2] admin tool.
|
|
|
|
|
2016-07-10 14:03:02 +02:00
|
|
|
## Client Setup
|
|
|
|
|
2016-11-03 04:30:36 +02:00
|
|
|
- Android: <https://download.nextcloud.com/android/>
|
2016-11-03 04:37:56 +02:00
|
|
|
- MacOSX: <https://download.nextcloud.com/desktop/releases/Mac/Installer/>
|
|
|
|
- Windows: <https://download.nextcloud.com/desktop/releases/Windows/>
|
2016-07-10 14:03:02 +02:00
|
|
|
|
|
|
|
[1]: https://nextcloud.com/
|
2016-11-03 05:07:14 +02:00
|
|
|
[2]: https://docs.nextcloud.com/server/9/admin_manual/configuration_server/occ_command.html
|