本地部署Dify流程

硅际捕风者
硅际捕风者
Published on 2025-03-17 / 4 Visits
0
0

先用Git下载代码到本地

git clone https://github.com/langgenius/dify.git

然后在Docker中部署

The easiest way to start the Dify server is through docker compose. Before running Dify with the following commands, make sure that Docker and Docker Compose are installed on your machine:

cd dify
cd docker
cp .env.example .env
docker compose up -d

After running, you can access the Dify dashboard in your browser at http://localhost/install and start the initialization process.

在这里我遇到了80端口被占用的错误提示,目前正在检查配置文件


Comment