clansty / Q2TG

QQ 与 Telegram 群相互转发的 bot
https://t.me/Q2TGbot
GNU Affero General Public License v3.0
755 stars 77 forks source link

可能需要升级OICQ。 #47

Closed yuioto closed 2 years ago

yuioto commented 2 years ago

RT.

2022-09-03T14:11:57.404741067Z [温馨提示]当前QQ版本过低,请升级至最新版本后再登录。点击进入下载页面

图片

yuioto commented 2 years ago

附位置文件: 已经略去关键key等。

version: "3.8"
services:
  # 如果有现成的 Postgresql 实例,可以删除这一小节
  postgres:
    image: postgres
    container_name: postgresql_q2tg
    restart: unless-stopped
    environment:
      POSTGRES_DB: db_name
      POSTGRES_USER: user
      POSTGRES_PASSWORD: password
    volumes:
      - ./postgresql:/var/lib/postgresql/data
  q2tg:
    image: ghcr.io/clansty/q2tg:raincandy
    container_name: main_q2tg
    restart: unless-stopped
    depends_on:
      - postgres
    volumes:
      - ./data:/app/data
    environment:
      - TG_API_ID=
      - TG_API_HASH=
      - TG_BOT_TOKEN=
      - DATABASE_URL=
      - CRV_API=https://chatrecord-viewer-frontend-4ga.pages.dev/api
      - CRV_KEY=
      # 如果需要通过代理联网,那么设置下面两个变量
      # - PROXY_IP=127.0.0.1
      # - PROXY_PORT=20170
clansty commented 2 years ago

最新的镜像应该修复了。oicq 有修复的 commit,但是没有发 release。我已经提前引用了新的版本

yuioto commented 2 years ago

在运行了sudo docker-compose pull之后,已经恢复了正常。