8000 GitHub - datastax/host-langflow
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

datastax/host-langflow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Host Langflow

This repo contains a Dockerfile to help you host Langflow with any hosting provider that supports Docker.

Usage

The directory structure here helps you deploy to specific targets. Follow this guidance:

  • The bm directory is for bare metal deployments where you have root access to an actual machine.
  • The root is a typical Dockerfile for any standard hosting provider like Flightcontrol, Fly.io, or Render.

Hosting on Azure

If you'd like to host Langflow on Azure, follow these 5 steps:

  1. Make sure you have the Azure CLI:

    brew install azure-cli

  2. Login to Azure:

    az login

  3. Create a resource group:

    az group create --name langflowRG --location eastus

  4. Deploy Langflow:

    # Use the same resource group you created in step 3
    az container create --resource-group langflowRG \
                        --name langflow-server \
                        --image langflowai/langflow:latest \
                        --dns-name-label mylangflowapp-$(openssl rand -hex 4) \
                        --ports 7860 \
                        --os-type Linux

💡 The $(openssl rand -hex 4) or a similar mechanism helps create a unique DNS name label.

  1. Azure will output the Fully Qualified Domain Name (FQDN) once deployed. You can then access your Langflow at http://<your-dns-name-label>.<region>.azurecontainer.io:7860.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0