feat: update langflow 1.7.2

This commit is contained in:
arch3rPro
2026-01-14 10:27:14 +08:00
parent ebc5908b40
commit 8b7b7f6c82
3 changed files with 11 additions and 15 deletions

View File

@@ -1,24 +1,22 @@
services:
langflow:
image: langflowai/langflow:1.6.5 # or another version tag on https://hub.docker.com/r/langflowai/langflow
image: langflowai/langflow:1.7.2
container_name: ${CONTAINER_NAME}
pull_policy: always # set to 'always' when using 'latest' image
user: root
pull_policy: always
user: root
ports:
- "${PANEL_APP_PORT_HTTP}:7860"
- ${PANEL_APP_PORT_HTTP}:7860
depends_on:
- postgres
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:
- ./data:/app/langflow
networks:
- 1panel-network
labels:
createdBy: "Apps"
createdBy: Apps
postgres:
image: postgres:16
container_name: ${CONTAINER_NAME}-postgres
@@ -27,18 +25,16 @@ services:
POSTGRES_PASSWORD: langflow
POSTGRES_DB: langflow
ports:
- "5432:5432"
- 5432:5432
volumes:
- langflow-postgres:/var/lib/postgresql/data
networks:
- 1panel-network
labels:
createdBy: "Apps"
createdBy: Apps
volumes:
langflow-postgres:
langflow-data:
langflow-postgres: null
langflow-data: null
networks:
1panel-network:
external: true
external: true