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

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.


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??