2016-07-10 14:03:02 +02:00
|
|
|
nextcloud
|
|
|
|
=========
|
|
|
|
|
|
|
|
[Nextcloud][1] puts your data at your fingertips, under your control.
|
|
|
|
|
|
|
|
## docker-compose.yml
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
nextcloud:
|
2016-11-03 04:30:36 +02:00
|
|
|
image: indiehosters/nextcloud
|
2016-07-10 14:03:02 +02:00
|
|
|
ports:
|
2016-11-03 04:30:36 +02:00
|
|
|
- "127.0.0.1:9000:9000"
|
2016-07-10 14:03:02 +02:00
|
|
|
volumes:
|
2016-11-03 04:30:36 +02:00
|
|
|
- ./data/apps:/var/www/html/apps
|
|
|
|
- ./data/config:/var/www/html/config
|
|
|
|
- ./data/data:/var/www/html/data
|
|
|
|
restart: always
|
|
|
|
|
|
|
|
nginx:
|
|
|
|
image: nginx:alpine
|
|
|
|
volumes:
|
|
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
2016-11-05 04:43:27 +02:00
|
|
|
- ./ssl:/etc/nginx/ssl
|
2016-11-03 04:30:36 +02:00
|
|
|
volumes_from:
|
|
|
|
- nextcloud
|
|
|
|
net: host
|
2016-07-10 14:03:02 +02:00
|
|
|
restart: always
|
|
|
|
```
|
|
|
|
|
|
|
|
## Server Setup
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker-compose up -d
|
2016-11-03 05:07:14 +02:00
|
|
|
$ docker-compose exec --user www-data nextcloud bash
|
|
|
|
>>> php occ files:scan --all
|
|
|
|
Starting scan for user 1 out of 1 (admin)
|
|
|
|
+---------+-------+--------------+
|
|
|
|
| Folders | Files | Elapsed time |
|
|
|
|
+---------+-------+--------------+
|
|
|
|
| 10 | 21 | 00:00:00 |
|
|
|
|
+---------+-------+--------------+
|
|
|
|
>>> exit
|
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
|