Skip to content

Release 3.105.0-rc4

Choose a tag to compare

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

What's Changed

  • fix: 策略保存時同步 bot_configs 與 app_config (7f5306c)

Installation

Linux (amd64) - 自動安裝

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

Linux (amd64) - 手動安裝

wget https://github.com/ghostsworm/quantmesh/releases/download/v3.105.0-rc4/quantmesh-3.105.0-rc4-linux-amd64.tar.gz
tar -xzf quantmesh-3.105.0-rc4-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-rc4

# 运行容器
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-rc4

或者使用 Docker Compose:

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