Install in server and no install page when I get http://server Ip/install in browser #32197
-
Self Checks
1. Is this request related to a challenge you're experiencing? Tell me about your story.I install dify in server by docker,the version is release/1.12.1, I can not get install page in browser when I get http://server Ip/install in browser , the url http://server Ip/console/api/setup response is {"step":"not_started","setup_at":null}
2. Additional context or commentsNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi @zj1451729260-commits! I'm Dosu and I’m helping the dify team. This is a common issue with Docker deployments. The blank install page with The most likely cause is that To fix this, check your
After updating the docker compose down && docker compose up -dYou can also check your browser's developer console (Network tab) for any failed requests to See this issue for more details on this common configuration problem. To reply, just mention @dosu. Share context across your team and agents. Try Dosu. |
Beta Was this translation helpful? Give feedback.


Hi @zj1451729260-commits! I'm Dosu and I’m helping the dify team.
This is a common issue with Docker deployments. The blank install page with
{"step":"not_started"}response typically indicates environment variable misconfiguration in your.envfile.The most likely cause is that
CONSOLE_API_URLand/orFILES_URLare set to Docker-internal addresses (likehttp://api:5001) which your browser cannot reach.To fix this, check your
.envfile and ensure:CONSOLE_API_URLis set to your external URL (e.g.,http://192.168.2.181)FILES_URLis also set to your external URLINTERNAL_FILES_URLashttp://api:5001for internal Docker communicationAfter updating the
.envfile, restart the contai…