Newer
Older
nextcloud / README.md
@Pascal Gollor Pascal Gollor on 11 Oct 2018 432 bytes fix hint
# nextcloud

docker compose for https://github.com/nextcloud/docker/

## first start
```
mkdir data/data
chown www-data data/data
```

## troubleshooting


### mariadb update

message:

```
[Warning] InnoDB: Table mysql/innodb_table_stats has length mismatch in the column name table_name. Please run mysql_upgrade
```

solution:

```
docker-compose exec nextcloud-database sh -c 'mysql_upgrade -uroot -p${MYSQL_ROOT_PASSWORD}'
```