After local deployment of version 1.11, plugins cannot be installed - Tongyi Qianwen

QQ20251211-100541

I have reinstalled it many times, but each time it failed, including installing Tencent’s Hunyuan mode, which also failed.

Is your init_permissions-1 container always running?

You guessed it right — the server was in a stopped state, so I reinitialized the entire server (including the system), then reinstalled Dify, but the result was the same.

QQ20251211-140308

QQ20251211-140331

I understand this container is used for initialization, and restart: "no" should mean it runs only once and doesn’t keep running afterward?
But I’ve also encountered issues where plugins cannot be installed.

init_permissions:
  image: busybox:latest
  command:
    - sh
    - -c
    - |
      FLAG_FILE="/app/api/storage/.init_permissions"
      if [ -f "$${FLAG_FILE}" ]; then
        echo "Permissions already initialized. Exiting."
        exit 0
      fi
      echo "Initializing permissions for /app/api/storage"
      chown -R 1001:1001 /app/api/storage && touch "$${FLAG_FILE}"
      echo "Permissions initialized. Exiting."
  volumes:
    - ./volumes/app/storage:/app/api/storage
  restart: "no"

Has this version been withdrawn? The latest release version now shows 1.10.1??