1 Star 0 Fork 0

Cloneai/ComfyUI-Manager

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
use_aria2.md 871 Bytes
一键复制 编辑 原始数据 按行查看 历史

Use aria2 as downloader

Two environment variables are needed to use aria2 as the downloader.

export COMFYUI_MANAGER_ARIA2_SERVER=http://127.0.0.1:6800
export COMFYUI_MANAGER_ARIA2_SECRET=__YOU_MUST_CHANGE_IT__

An example docker-compose.yml

services:

  aria2:
    container_name: aria2
    image: p3terx/aria2-pro
    environment:
      - PUID=1000
      - PGID=1000
      - UMASK_SET=022
      - RPC_SECRET=__YOU_MUST_CHANGE_IT__
      - RPC_PORT=5080
      - DISK_CACHE=64M
      - IPV6_MODE=false
      - UPDATE_TRACKERS=false
      - CUSTOM_TRACKER_URL=
    volumes:
      - ./config:/config
      - ./downloads:/downloads
      - ~/ComfyUI/models:/models
      - ~/ComfyUI/custom_nodes:/custom_nodes
    ports:
      - 6800:6800
    restart: unless-stopped
    logging:
      driver: json-file
      options:
        max-size: 1m
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cloneai/ComfyUI-Manager.git
git@gitee.com:cloneai/ComfyUI-Manager.git
cloneai
ComfyUI-Manager
ComfyUI-Manager
main

搜索帮助