Missing container after upgrade attempt

[details=“Support intro”]
Hi,

I received a notice that an update was available, so I clicked on the stop container button inside the AIO interface. Then, I restarted NC. However, I seem to be missing a container:

sudo docker ps | awk ‘/nextcloud/ {print $2;}’
nextcloud/aio-apache:latest
nextcloud/aio-notify-push:latest
nextcloud/aio-nextcloud:latest
nextcloud/aio-docker-socket-proxy:latest
nextcloud/aio-imaginary:latest
nextcloud/aio-redis:latest
nextcloud/aio-postgresql:latest

I’m trying to update from [Nextcloud Hub 7] (28.0.5) in a container environment on Ubuntu 24.04.

That said, I am able to access my calendar and all, but the AIO interface is, of course, gone.

How should I start?

TIA,
Mike

BTW, this is how I created the environment:

sudo docker volume create --driver local --name nextcloud_datadir
-o device=“/home/shared/nextcloud/data” -o type=“none” -o o=“bind”

sudo docker volume create --driver local --name nextcloud_aio_mastercontainer
-o device="/home/shared/nextcloud/config " -o type=“none” -o o=“bind”

sudo docker run
–init
–sig-proxy=false
–name nextcloud-aio-mastercontainer
–restart always
–publish 6080:80
–publish 6081:8080
–publish 6443:11000
–env APACHE_PORT=11000
–env NEXTCLOUD_DATADIR=“nextcloud_aio_nextcloud_datadir”
–volume nextcloud_aio_mastercontainer:/mnt/docker-aio-config
–volume /var/run/docker.sock:/var/run/docker.sock:ro
nextcloud/all-in-one:latest

Hi, can you post the output of sudo docker inspect nextcloud-aio-mastercontainer here?

$ sudo docker inspect nextcloud-aio-mastercontainer


Error: No such object: nextcloud-aio-mastercontainer

All right. Then you probably need to recreate by using the same docker run command that you initially used

This caught my eye. How did you restart? The official process is here:

https://github.com/nextcloud/all-in-one?tab=readme-ov-file#how-to-update-the-containers

1 Like

I just deleted my containers and restarted using the startup script from above. After a few minutes, all of my containers were back, with no data loss!

Thank you so much,
Mike.

1 Like

This is the guide I used. To be fair, my computer has had some instability issues, lately.

Mike.

This topic was automatically closed 8 days after the last reply. New replies are no longer allowed.