Josia Posted September 17, 2022 Share Posted September 17, 2022 Hello, I installed the AIO Container just for taking a look at it, I played a round a bit, and it broke. My problem now is every time I try to reinstall Nextcloud AIO, I get back to the broken point. I tried to delete the appdata, but there was nothing. Is there anything I am missing to delete or to reset? Thanks in advance Quote Link to comment
szaimen Posted October 8, 2022 Share Posted October 8, 2022 Hi, see https://github.com/nextcloud/all-in-one#how-to-properly-reset-the-instance 1 Quote Link to comment
Grupo TecnoBravo Posted January 13 Share Posted January 13 (edited) On 10/8/2022 at 6:11 PM, szaimen said: Hi, see https://github.com/nextcloud/all-in-one#how-to-properly-reset-the-instance Special thanks. Doing these steps we have managed to install it with the UnRaid terminal. Here is how to reset the AIO instance properly: Stop all containers if they are running from the AIO interface Stop the mastercontainer with sudo docker stop nextcloud-aio-mastercontainer If the domaincheck container is still running, stop it with sudo docker stop nextcloud-aio-domaincheck Check which containers are stopped: sudo docker ps --filter "status=exited" Now remove all these stopped containers with sudo docker container prune Delete the docker network with sudo docker network rm nextcloud-aio Check which volumes are dangling with sudo docker volume ls --filter "dangling=true" Now remove all these dangling volumes: sudo docker volume prune (on Windows you might need to remove some volumes afterwards manually with docker volume rm nextcloud_aio_backupdir, docker volume rm nextcloud_aio_nextcloud_datadir). Also if you've configured NEXTCLOUD_DATADIR to a path on your host instead of the default volume, you need to clean that up as well. Optional: You can remove all docker images with sudo docker image prune -a. And you are done! Now feel free to start over with the recommended docker run command! Edited January 13 by Grupo TecnoBravo Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.