본문 바로가기
Python

langflow 도커 설치

by 앗사비 2024. 9. 30.
728x90
version: '3.8'

services:
  langflow:
    image: langflowai/langflow:latest
    container_name: langflow
    environment:
      - LANGFLOW_AUTO_LOGIN=False
      - LANGFLOW_SUPERUSER=admin
      - LANGFLOW_SUPERUSER_PASSWORD=securepassword
      - LANGFLOW_SECRET_KEY=randomly_generated_secure_key
    ports:
      - "7860:7860"
    restart: unless-stopped



----

https://docs.langflow.org/configuration-authentication
https://github.com/langflow-ai/langflow/issues/3707

728x90

'Python' 카테고리의 다른 글

pymsteams 용 팀즈 웹훅 셋팅  (2) 2024.10.30
랭체인 시도해보기  (0) 2024.08.21
우분투 서버에서 selenium 설정  (0) 2024.05.27
맥에서 matplotlib 한글 깨짐 수정  (0) 2024.04.19
맥에서 기본 파이썬 변경  (0) 2024.03.25