Random notes regarding Docker and Nextcloud (and in general)
For my own purposes, mostly.
Resetting a user account (when you don’t have smtp configured).
Get the Docker container id:
1 |
docker ps |
Enter the Docker container utilizing the id:
1 |
docker exec -u www-data -t -i ContainerID /bin/bash |
Reset the password:
1 |
./occ user:resetpassword USER |
Also, rescanning files:
1 |
./occ files:scan --all |