mirror of
https://github.com/langgenius/dify-official-plugins.git
synced 2026-07-21 17:45:23 -04:00
xxx models not exists #393
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ywf on GitHub (Jun 23, 2025).
Self Checks
Dify version
1.4.3
Cloud or Self Hosted
Self Hosted (Docker)
Steps to reproduce
Adding a large model via the Volcano Ark plugin shows a success prompt, but the model is not displayed.
✔️ Expected Behavior
Volcano's large model can be properly added.
❌ Actual Behavior
Not showing the model
@dosubot[bot] commented on GitHub (Jun 23, 2025):
This issue is common in self-hosted Docker setups when adding models via plugins like Volcano Ark. The most likely causes are network or configuration problems between your Dify containers and the plugin daemon. Here’s a focused checklist to help you troubleshoot:
localhostor127.0.0.1for any service endpoints in your Docker environment. Usehost.docker.internalor your host’s internal IP instead, so containers can communicate properly [source].PLUGIN_DAEMON_URLshould point to the correct host and port (e.g.,http://host.docker.internal:5002), andSANDBOX_ENABLE_NETWORKshould be set totrue[source].If you’ve checked all of the above and the model still doesn’t appear, please share any relevant error logs from your Docker containers for deeper diagnosis.
To reply, just mention @dosu.
How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other

@ywf commented on GitHub (Jun 23, 2025):
Thank you. I upgraded from version 1.4.0 to 1.4.3 by reusing the volumes directory and .env file from the 1.4.0 installation. Here's the detailed process:
Ran docker compose down
Deleted the original volumes directory, then replaced it along with the .env file from the 1.4.0 version
Executed docker compose up -d
After logging in, the version shows as 1.4.3, and the workflows and plugins from 1.4.0 are visible on the interface. However, when attempting to add a large model using the Volcano Ark plugin, the operation failed.
Was this upgrade procedure incorrect?
@dosubot[bot] commented on GitHub (Jun 23, 2025):
Your upgrade procedure missed a key step: after replacing or deleting Docker volumes, you need to run specific migration commands to restore plugin and model data. Simply copying the volumes and .env file is not enough—this will result in missing models and plugins, even if the UI appears normal and workflows/plugins are listed.
The official upgrade process requires you to:
These commands extract, reinstall, and migrate all plugin and model data. Skipping them means your environment will not have the necessary backend records for plugins and models, which is why adding a model via the Volcano Ark plugin fails to register or display in the UI—even if you see a success prompt.
You can find more details and step-by-step instructions in the official migration guide.
If you still have your old data, restore it and follow the migration steps above. If not, you may need to reinstall plugins and re-add models manually.
To reply, just mention @dosu.
How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other
