Skip to content

Instantly share code, notes, and snippets.

@gijigae
Last active May 3, 2024 13:57
Show Gist options
  • Select an option

  • Save gijigae/50f400a5f91a39fbf2f0d0a652a9c409 to your computer and use it in GitHub Desktop.

Select an option

Save gijigae/50f400a5f91a39fbf2f0d0a652a9c409 to your computer and use it in GitHub Desktop.
Shell script to install Dify
#!/bin/bash
# Install Docker
curl -fsSL https://get.docker.com -o install-docker.sh
sh install-docker.sh
# Clone the GitHub repository
git clone https://github.com/langgenius/dify.git
# Navigate to the desired directory
cd dify/docker
# Run Docker Compose
docker compose up -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment