In this section, we are going to create a Droplet. For more information, refer to official guide.
- First, Click Droplets from the dropdown
- Select Data Region and a Basic $6/mo Droplet type
- Select Authentication Method. In this example, we are going to use Password
- After a while you should be able to see your droplet created successfully
For Windows follow this guide.
For Mac/Linux, follow this guide.
-
curl -fsSL https://get.docker.com -o get-docker.sh
-
sudo sh get-docker.sh
- Install docket-compose:
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
- Set permission:
sudo chmod +x /usr/local/bin/docker-compose
- Clone the repo
git clone https://github.com/FlowiseAI/Flowise.git
- Cd into docker folder
cd Flowise && cd docker
- Create a
.env
file and specify PORT. You can use your favourit editor. I'll usenano
nano .env
- (Optional) You can also specify
FLOWISE_USERNAME
andFLOWISE_PASSWORD
for app level authorization. See more setting-username-and-password.md - Then press
Ctrl + X
to Exit, andY
to save the file - Run docker compose
docker-compose up -d
- You can then view the app: "Your Public IPv4 DNS":3000. Example:
176.63.19.226:3000
- You can bring the app down by:
docker-compose stop
- You can pull from latest image by:
docker pull flowiseai/flowise