Self Checks
Dify version1.4.3 Cloud or Self HostedSelf Hosted (Docker) Steps to reproduceI followed the instructions in the ReadMe exactly, using the Docker deployment. I configured the Docker Daemon with the clash vpn on Jetson Orin, and I don't know if this will make a difference I have tried to close my vpn,but it also doesn't work、 ✔️ Expected Behaviorno error alert ❌ Actual BehaviorI can browse“Model market”, but I can't install them and report errors if I copy this link and visit it on my browser, I can download this model, so I am sure my internet is connected |
Replies: 4 comments 3 replies
|
Has it been resolved |
|
when I use got an error on the console
|
|
After upgrading Dify from 1.4.1 to 1.5.1, I encountered the same issue. I noticed that the docker-plugin_daemon-1 container kept restarting, reporting error that S3_USE_AWS was empty, whereas a boolean value is expected. The problem is likely the absence of the PLUGIN_S3_USE_AWS variable in the .env file (when upgrading from an older version), and the default value of S3_USE_AWS in docker-compose.yaml is empty instead of "false". The fix is to add PLUGIN_S3_USE_AWS=false to the .env file. |
|
I encountered the same issue. The cause in my case was that the Docker host had a network proxy enabled, and this proxy configuration was inherited by the dify-api container. You can verify this by running |


I encountered the same issue. The cause in my case was that the Docker host had a network proxy enabled, and this proxy configuration was inherited by the dify-api container. You can verify this by running
docker compose exec api env | grep -I proxy. Ultimately, I resolved the issue by configuring theenvironmentsection for the api service in thedocker-compose.yamlfile: