Start Frontend Docker Container Separately
When developing the backend separately, you may only need to start the backend service from source code without building and launching the frontend locally. In this case, you can directly start the frontend service by pulling the Docker image and running the container. Here are the specific steps:
Pull the Docker image for the frontend service from DockerHub:
docker run -it -p 3000:3000 -e CONSOLE_URL=http://127.0.0.1:5001 -e APP_URL=http://127.0.0.1:5001 langgenius/dify-web:latest
Build Docker Image from Source Code
Build the frontend image
cd web && docker build . -t dify-web
Start the frontend image
docker run -it -p 3000:3000 -e CONSOLE_URL=http://127.0.0.1:5001 -e APP_URL=http://127.0.0.1:5001 dify-web
When the console domain and web app domain are different, you can set the CONSOLE_URL and APP_URL separately
To access it locally, you can visit http://127.0.0.1:3000
Last updated