practice / blog

For personal blogging
1 stars 0 forks source link

nextcloud notes #61

Open practice opened 5 years ago

practice commented 5 years ago

docker upgrade

Now you see "will be updated" screen on nextcloud web, then run

$ docker exec -it -u www-data nextcloud13 php occ upgrade

practice commented 4 years ago

occ command / file scan

docker 안에서 실행하려 했더니 이런 오류가...

root@d27e05c9bc67:/var/www/html# su - www-data
This account is currently not available.
root@d27e05c9bc67:/var/www/html# su - www-data -c 'php occ files:scan --all'
This account is currently not available.

밖에서 다음과 같이 해결함.

docker exec -it --user www-data nextcloud-16 bash -c "php occ files:scan --all"