computer-playbook/roles/docker-nextcloud
2020-12-24 14:27:31 +01:00
..
meta initial cleanup server-manager 2020-12-24 14:27:31 +01:00
tasks initial cleanup server-manager 2020-12-24 14:27:31 +01:00
templates initial cleanup server-manager 2020-12-24 14:27:31 +01:00
README.md initial cleanup server-manager 2020-12-24 14:27:31 +01:00

role docker-nextcloud

database access

To access the database execute

  docker exec -it nextcloud_database_1 /bin/mysql -u nextcloud -p

occ

To use occ run:

  docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ

unlock files

docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --on
docker exec -it nextcloud_database_1 mysql -u nextcloud -pPASSWORD1234132 -D nextcloud -e "delete from oc_file_locks where 1"
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --off