Skip to content

Release 3.105.0-rc8

Choose a tag to compare

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

What's Changed

  • 修正收益統計日曆無記錄日顯示為零值(3.105.0-rc8) (935fedd)
  • 發佈 3.105.0-rc7:訂單歷史預設查詢範圍改為 72 小時 (7c9f351)

Installation

Linux (amd64) - 自動安裝

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

Linux (amd64) - 手動安裝

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

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

或者使用 Docker Compose:

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