Stopping Nextcloud AIO Container Download

Hi, on the Nextcloud website (after inputting my domain) I pressed download and install containers and it said pulling office images. I wanted to stop it so I essentially did docker compose down -v where I created my nextcloud docker yaml file. Is that enough to cancel that download? Thank you.

Hi, why would you like to do this?

Are other Docker containers / Docker stacks on that machine?

If not, and if you’re just starting out, you could take a radical approach and delete everything that Docker may already have downloaded or created.

docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
docker rmi $(docker images -a -q)
docker volume rm $(docker volume ls -q)
docker system prune -a -f

…then start over again, and on your next attempt, just uncheck Nextcloud Office before clicking ‘Download and Install’.

:warning: WARNING: Don’t run these commands, if there is already data in your Nextcloud, or if other Docker containers or Docker stacks are running on the same machine, because that purges absoletuly everything! (containers, images, volumes and networks)