Start Frontend Docker Container Separately
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:latestBuild Docker Image from Source Code
cd web && docker build . -t dify-webdocker 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
Last updated