CentOS7 安装Docker compose,并布署Dify.ai中间平台

yum install -y yum-utils
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo

yum install git docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y

systemctl start docker
systemctl enable docker

git clone --depth=1 https://github.com/langgenius/dify.git
cd dify/docker
docker compose up