feat: add Langflow

This commit is contained in:
Sun-ZhenXing
2025-11-01 22:16:39 +08:00
parent 0f54723be1
commit 2a18f63c88
10 changed files with 687 additions and 42 deletions

View File

@@ -10,32 +10,32 @@ x-default: &default
max-size: 100m
max-file: "3"
# Example service structure:
# services:
# service-name:
# <<: *default
# image: image:${VERSION:-latest}
# ports:
# - "${PORT_OVERRIDE:-8080}:8080"
# volumes:
# - service_data:/data
# environment:
# - TZ=${TZ:-UTC}
# - ENV_VAR=${ENV_VAR:-default_value}
# healthcheck:
# test: ["CMD", "command", "to", "check", "health"]
# interval: 30s
# timeout: 10s
# retries: 3
# start_period: 10s
# deploy:
# resources:
# limits:
# cpus: '1.00'
# memory: 512M
# reservations:
# cpus: '0.25'
# memory: 128M
#
# volumes:
# service_data:
#! Example service structure:
services:
service-name:
<<: *default
image: image:${VERSION:-latest}
ports:
- "${PORT_OVERRIDE:-8080}:8080"
volumes:
- service_data:/data
environment:
- TZ=${TZ:-UTC}
- ENV_VAR=${ENV_VAR:-default_value}
healthcheck:
test: ["CMD", "command", "to", "check", "health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
deploy:
resources:
limits:
cpus: '1.00'
memory: 512M
reservations:
cpus: '0.25'
memory: 128M
volumes:
service_data: