项目作者: NguyenAntoine

项目描述 :
Docker-compose for nextcloud
高级语言: Shell
项目地址: git://github.com/NguyenAntoine/nextcloud.git
创建时间: 2018-12-15T23:24:52Z
项目社区:https://github.com/NguyenAntoine/nextcloud

开源协议:

下载


NextCloud docker-compose

Using NextCloud Docker Image

Installation

Create the .env file from .env.dist example with the
environment variables from docker let’s encrypt nginx proxy

  1. docker-compose up -d

Update docker images

  1. ./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 :

  1. post_max_size = 1000M
  2. upload_max_filesize = 1000M

You have to update the nginx.conf in the nginx-proxy and add this line :

  1. http {
  2. ...
  3. client_max_body_size 1000M;
  4. }