Home

Awesome

bardchat

部署

获取COOKIE

使用Docker Compose配置

services:
  chatgpt:
    image: sheepgreen/bard-web
    container_name: bardchat
    environment:
      - BARD__Secure_1PSID=上方获取到的value值
      - BARD__Secure_1PSIDTS=上方获取到的value值
    ports:
      - "9898:8088" #8088为容器内端口,不可更换;9898为外部端口,可自行更换
    restart: always

注意事项