Can only use command line when updating Nextcloud?

Hey,

I’m having an issue when trying to upgrade Nextcloud in that it only lets me do it through a manual process on the command line and not through the UI.

I’m not sure why and honestly I can’t find any settings on the config file or anywhere else to check if is I’m screwing something up. Plus google didn’t turn anything useful so… I’m asking here!.

Here’s a screenshot of the ‘issue’ → Link to imgur ← You can see that it says to use the command line and the download link just downloads the full package.

The way I installed it is through docker compose using this:

version: "2.1"
services:
  nextcloud:
    image: lscr.io/linuxserver/nextcloud:latest
    container_name: nextcloud
    dns: 192.168.10.2
    environment:
      PUID: 99
      PGID: 100
    volumes:
      - ~/docker/nextcloud:/config
      - /mnt/unraid/nextcloud:/data
      - /mnt/unraid/mounts:/external_mounts
    ports:
      - 443:443
    depends_on:
      - redis
      - db
      - antivirus
      - office
    restart: unless-stopped

Am I missing something? Did anything change and this is now the proper/only way to update?.

Thanks!.