- build-time uid/gid conversion
- thumbnail generation for PDF, Affinity Photo, and Affinity Design
- built-in collabora server (https:///collabora)
- performance tweak
cp .env.sample .env
vim .env # fill the blank variables
make # pull, build, start
make applypatches # run only once
docker-compose logs -f app
tail -f <data_dir>/nextcloud.log | jq .
./occ
Adds thumbnail generation capability for:
- PDF
.pdf
- Affinity Photo
.afphoto
- Affinity Design
.afdesign
# after installation
./patches/apply.sh
'enabledPreviewProviders' =>
array (
1 => 'OC\\Preview\\PDF',
2 => 'OC\\Preview\\Affinity',
...
),
/usr/local/etc/php/conf.d/*
/usr/local/php/php/fpm
php -r 'phpinfo();'
php-fpm -i
Add this lines to config/config.php
:
'overwrite.cli.url' => 'https://<domain>',
'overwriteprotocol' => 'https',
./occ maintenance:mode --on
docker-compose exec db mysql -u root -p
use cloud_db
delete from oc_file_locks where 1;
./occ maintenance:mode --off