Last active
May 3, 2024 13:57
-
-
Save gijigae/50f400a5f91a39fbf2f0d0a652a9c409 to your computer and use it in GitHub Desktop.
Shell script to install Dify
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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