docs/versioned_docs/version-1.9.0/Deployment/deployment-docker.mdx
import PartialPodmanAlt from '@site/docs/_partial-podman-alt.mdx';
<PartialPodmanAlt />Running applications in Docker containers ensures consistent behavior across different systems and eliminates dependency conflicts.
You can use the Langflow Docker image to start a Langflow container.
This guide demonstrates several ways to deploy Langflow with Docker and Docker Compose:
With Docker installed and running on your system, run the following command:
docker run -p 7860:7860 langflowai/langflow:latest
Then, access Langflow at http://localhost:7860/.
This container runs a pre-built Docker image with default settings. For more control over the configuration, see Clone the repo and run the Langflow Docker container.
Cloning the Langflow repository and using Docker Compose gives you more control over your configuration, allowing you to customize environment variables, use a persistent PostgreSQL database service (instead of the default SQLite database), and include custom dependencies.
The default deployment with Docker Compose includes the following:
The complete Docker Compose configuration is available in docker_example/docker-compose.yml.
Clone the Langflow repository:
git clone https://github.com/langflow-ai/langflow.git
Navigate to the docker_example directory:
cd langflow/docker_example
Run the Docker Compose file:
docker compose up
Access Langflow at http://localhost:7860/.
You can customize the Docker Compose configuration to fit your specific deployment.
For example, to configure the container's database credentials using a .env file, do the following:
Create a .env file with your database credentials in the same directory as docker-compose.yml:
# Database credentials
POSTGRES_USER=myuser
POSTGRES_PASSWORD=mypassword
POSTGRES_DB=langflow
# Langflow configuration
LANGFLOW_DATABASE_URL=postgresql://myuser:mypassword@postgres:5432/langflow
LANGFLOW_CONFIG_DIR=/app/langflow
Modify the docker-compose.yml file to reference the .env file for both the langflow and postgres services:
services:
langflow:
environment:
- LANGFLOW_DATABASE_URL=${LANGFLOW_DATABASE_URL}
- LANGFLOW_CONFIG_DIR=${LANGFLOW_CONFIG_DIR}
postgres:
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
For a complete list of available environment variables, see Langflow environment variables.
For more customization options, see Customize the Langflow Docker image with your own code.
This section shows you how to create a Dockerfile that builds a Docker image containing your Langflow flow. This approach is useful when you want to distribute a specific flow as a standalone container or deploy it to environments like Kubernetes.
Unlike the previous sections that use pre-built images, this method builds a custom image with your flow embedded inside it.
Create a project directory, and change directory into it.
mkdir langflow-custom && cd langflow-custom
Add your flow's JSON file to the directory. You can download an example, or use your own:
# Download an example flow
wget https://raw.githubusercontent.com/langflow-ai/langflow-helm-charts/refs/heads/main/examples/flows/basic-prompting-hello-world.json
# Or copy your own flow file
cp /path/to/your/flow.json .
Create a Dockerfile to build your custom image:
FROM langflowai/langflow:latest
RUN mkdir /app/flows
COPY ./*.json /app/flows/
ENV LANGFLOW_LOAD_FLOWS_PATH=/app/flows
This Dockerfile uses the official Langflow image as the base, creates a directory for your flows, copies your JSON flow files into the directory, and sets the environment variable to tell Langflow where to find the flows.
Build and test your custom image:
docker build -t myuser/langflow-custom:1.0.0 .
docker run -p 7860:7860 myuser/langflow-custom:1.0.0
Push your image to Docker Hub (optional):
docker push myuser/langflow-custom:1.0.0
Your custom image now contains your flow and can be deployed anywhere Docker runs. For Kubernetes deployment, see Deploy the Langflow production environment on Kubernetes.
While the previous section showed how to package a flow with a Docker image, this section shows how to customize the Langflow application itself. This is useful when you need to add custom Python packages or dependencies, modify Langflow's configuration or settings, include custom components or tools, or add your own code to extend Langflow's functionality.
This example demonstrates how to customize the Message History component, but the same approach can be used for any code modifications.
FROM langflowai/langflow:latest
# Set working directory
WORKDIR /app
# Copy your modified memory component
COPY src/lfx/src/lfx/components/helpers/memory.py /tmp/memory.py
# Find the site-packages directory where langflow is installed
RUN python -c "import site; print(site.getsitepackages()[0])" > /tmp/site_packages.txt
# Replace the file in the site-packages location
RUN SITE_PACKAGES=$(cat /tmp/site_packages.txt) && \
echo "Site packages at: $SITE_PACKAGES" && \
mkdir -p "$SITE_PACKAGES/langflow/components/helpers" && \
cp /tmp/memory.py "$SITE_PACKAGES/langflow/components/helpers/"
# Clear Python cache in the site-packages directory only
RUN SITE_PACKAGES=$(cat /tmp/site_packages.txt) && \
find "$SITE_PACKAGES" -name "*.pyc" -delete && \
find "$SITE_PACKAGES" -name "__pycache__" -type d -exec rm -rf {} +
# Expose the default Langflow port
EXPOSE 7860
# Command to run Langflow
CMD ["python", "-m", "langflow", "run", "--host", "0.0.0.0", "--port", "7860"]
To use this custom Dockerfile, do the following:
Create a directory for your custom Langflow setup:
mkdir langflow-custom && cd langflow-custom
Create the necessary directory structure for your custom code.
In this example, Langflow expects memory.py to exist in the /helpers directory, so you create a directory in that location.
mkdir -p src/lfx/src/lfx/components/helpers
Place your modified memory.py file in the /helpers directory.
Create a new file named Dockerfile in your langflow-custom directory, and then copy the Dockerfile contents shown above into it.
Build and run the image:
docker build -t myuser/langflow-custom:1.0.0 .
docker run -p 7860:7860 myuser/langflow-custom:1.0.0
This approach can be adapted for any other components or custom code you want to add to Langflow by modifying the file paths and component names.
To upgrade a Langflow Docker deployment without losing your database or flows, do the following:
Keep data on persistent volumes, so when you upgrade Langflow, you will replace only the container image.
Use Docker volumes or bind mounts for Langflow data and the database so they persist outside of the container.
For example, this Docker Compose file uses a bind mount for Langflow data (./langflow-data on the host) and a named volume for the PostgreSQL database (langflow-postgres):
services:
langflow:
image: langflowai/langflow:1.8.0
environment:
- LANGFLOW_CONFIG_DIR=/app/langflow
volumes:
- ./langflow-data:/app/langflow
postgres:
image: postgres:16
volumes:
- langflow-postgres:/var/lib/postgresql/data
volumes:
langflow-postgres:
For additional examples, see the Docker Compose configuration and the docker_example compose file.
Pull the new image and update the image tag in your docker-compose.yml or docker run command.
With Docker Compose, set the image in your compose file, such as image: langflowai/langflow:1.8.0, and then pull:
docker compose pull
With docker run, pull the image:
docker pull langflowai/langflow:1.8.0
Restart the container. The same volumes will be reattached, so your database and flows are preserved.
With Docker Compose:
docker compose up -d
With docker run, use the same volume mount and the new image tag:
docker run -p 7860:7860 -v langflow-data:/app/langflow langflowai/langflow:1.8.0
This approach keeps the persistent volumes separate from the Langflow container, so you can upgrade the Langflow application without losing data.
If you need to upgrade to a custom image based on a Langflow release, such as to add uv in 1.8.0, first build a derived image from the official image, and then follow the same steps above.
Set the custom image in your compose file or docker run, and then pull and restart.
For a minimal Dockerfile that adds uv to the 1.8.0 image, see the release notes (“Docker image no longer includes uv or uvx”).