https://github.com/nguyenantoine/nextcloud
Docker-compose for nextcloud
https://github.com/nguyenantoine/nextcloud
docker-compose nextcloud
Last synced: 2 months ago
JSON representation
Docker-compose for nextcloud
- Host: GitHub
- URL: https://github.com/nguyenantoine/nextcloud
- Owner: NguyenAntoine
- Created: 2018-12-15T23:24:52.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-10-22T22:29:39.000Z (over 2 years ago)
- Last Synced: 2025-01-10T02:23:39.856Z (4 months ago)
- Topics: docker-compose, nextcloud
- Language: Shell
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NextCloud docker-compose
[Using NextCloud Docker Image](https://github.com/nextcloud/docker)
## Installation
Create the `.env` file from [.env.dist](.env.dist) example with the
environment variables from [docker let's encrypt nginx proxy](https://github.com/JrCs/docker-letsencrypt-nginx-proxy-companion/wiki/Basic-usage)```bash
docker-compose up -d
```## Update docker images
```bash
./updateDockerImages.sh
```## Increase file size
In order to increase file size uploading :
You have to update the php.ini in the nextcloud app and update theses lines :
```ini
post_max_size = 1000Mupload_max_filesize = 1000M
```You have to update the nginx.conf in the nginx-proxy and add this line :
```
http {
...
client_max_body_size 1000M;
}
```