From 50ae0742a08ea5e08a35cc9299eedceff58c3e54 Mon Sep 17 00:00:00 2001 From: Mattias Michaux Date: Wed, 29 Jan 2025 03:54:03 +0100 Subject: [PATCH] fix: re-add removed variable + fix documentation (#5902) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit re-add removed variable + fix documentation Co-authored-by: Ítalo Johnny --- docker_example/README.md | 2 +- docker_example/docker-compose.yml | 1 + docs/docs/Deployment/deployment-docker.md | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docker_example/README.md b/docker_example/README.md index c5d2adb26..622f7afd6 100644 --- a/docker_example/README.md +++ b/docker_example/README.md @@ -44,7 +44,7 @@ Environment variables: Volumes: -- `langflow-data`: This volume is mapped to `/var/lib/langflow` in the container. +- `langflow-data`: This volume is mapped to `/app/langflow` in the container. ### PostgreSQL Service diff --git a/docker_example/docker-compose.yml b/docker_example/docker-compose.yml index ea9951bff..91e454047 100644 --- a/docker_example/docker-compose.yml +++ b/docker_example/docker-compose.yml @@ -11,6 +11,7 @@ services: environment: - LANGFLOW_DATABASE_URL=postgresql://langflow:langflow@postgres:5432/langflow # This variable defines where the logs, file storage, monitor data and secret keys are stored. + - LANGFLOW_CONFIG_DIR=/app/langflow volumes: - langflow-data:/app/langflow diff --git a/docs/docs/Deployment/deployment-docker.md b/docs/docs/Deployment/deployment-docker.md index 39fac1fc3..ba2d89958 100644 --- a/docs/docs/Deployment/deployment-docker.md +++ b/docs/docs/Deployment/deployment-docker.md @@ -59,7 +59,7 @@ Environment variables: Volumes: -- `langflow-data`: This volume is mapped to `/var/lib/langflow` in the container. +- `langflow-data`: This volume is mapped to `/app/langflow` in the container. ### PostgreSQL service {#121140decbfe4997b12213bdd2c4da7e}