Skip to content

Release 3.105.0-rc2

Choose a tag to compare

@github-actions github-actions released this 15 Apr 12:49
· 9 commits to main since this release
Immutable release. Only release title and notes can be modified.

What's Changed

  • feat: 單向淨持倉雙向網格(BOTH)與 Bot 創建衝突修正 (2434084)

Installation

Linux (amd64) - 自動安裝

wget https://github.com/ghostsworm/quantmesh/releases/download/v3.105.0-rc2/quantmesh-3.105.0-rc2-linux-amd64.tar.gz
tar -xzf quantmesh-3.105.0-rc2-linux-amd64.tar.gz
cd quantmesh-3.105.0-rc2-linux-amd64
sudo ./install.sh

Linux (amd64) - 手動安裝

wget https://github.com/ghostsworm/quantmesh/releases/download/v3.105.0-rc2/quantmesh-3.105.0-rc2-linux-amd64.tar.gz
tar -xzf quantmesh-3.105.0-rc2-linux-amd64.tar.gz
chmod +x quantmesh-linux-amd64
sudo mv quantmesh-linux-amd64 /usr/local/bin/quantmesh

Docker (GitHub Container Registry)

# 拉取镜像
docker pull ghcr.io/ghostsworm/quantmesh:3.105.0-rc2

# 运行容器
docker run -d \
  --name quantmesh \
  -p 28888:28888 \
  -v $(pwd)/config.yaml:/app/config.yaml \
  -v $(pwd)/data:/app/data \
  ghcr.io/ghostsworm/quantmesh:3.105.0-rc2

或者使用 Docker Compose:

version: '3.8'
services:
  quantmesh:
    image: ghcr.io/ghostsworm/quantmesh:3.105.0-rc2
    container_name: quantmesh
    restart: unless-stopped
    ports:
      - "28888:28888"
    volumes:
      - ./config.yaml:/app/config.yaml:ro
      - ./data:/app/data