2

我是第一次测试 Rocket Chat,我正在按照本指南使用 Docker 进行部署

我已成功启动 Rocket Chat,现在我正在尝试启用 Hubot。我创建了一个名为 bot 的用户,并使用更新的登录信息修改了文件docker-compose.yml 。

这是我的文件:

mongo:
  image: mongo
# volumes:
#    - ./data/runtime/db:/data/db
#    - ./data/dump:/dump
  command: mongod --smallfiles --oplogSize 128

rocketchat:
  image: rocketchat/rocket.chat:latest
# volumes:
#    - ./uploads:/app/uploads
  environment:
    - PORT=3000
    - ROOT_URL=http://localhost:3000
    - MONGO_URL=mongodb://mongo:27017/rocketchat
  links:
    - mongo:mongo
  ports:
    - 3000:3000

# hubot, the popular chatbot (add the bot user first and change the password before starting this image)
hubot:
  image: rocketchat/hubot-rocketchat
  environment:
    - ROCKETCHAT_URL=localhost:3000
    - LISTEN_ON_ALL_PUBLIC=true
    - ROCKETCHAT_ROOM=''
    - ROCKETCHAT_USER=bot
    - ROCKETCHAT_PASSWORD=hubot
    # - RESPOND_TO_DM=true
    #- ROCKETCHAT_AUTH=password
    - BOT_NAME=bot
# you can add more scripts as you'd like here, they need to be installable by npm
    - EXTERNAL_SCRIPTS=hubot-help,hubot-seen,hubot-links,hubot-diagnostics
  links:
    - rocketchat:rocketchat
# this is used to expose the hubot port for notifications on the host on port 3001, e.g. for hubot-jenkins-notifier
  ports:
    - 3001:8080

我已经用 Hubot 启动了容器,但它似乎没有响应 Rocket Chat 中的命令。我不确定预期的输出是什么,但他似乎无法连接到 localhost:3000,这是我用来打开 Rocket Chat 的 URL。

> docker-compose up hubot   
Recreating rocketchat_mongo_1...
Recreating rocketchat_rocketchat_1...
Recreating rocketchat_hubot_1...
Attaching to rocketchat_hubot_1
hubot_1 | hubot-help@0.1.3 node_modules/hubot-help
hubot_1 | 
hubot_1 | hubot-diagnostics@0.0.1 node_modules/hubot-diagnostics
hubot_1 | 
hubot_1 | hubot-links@0.0.1 node_modules/hubot-links
hubot_1 | 
hubot_1 | hubot-seen@0.2.3 node_modules/hubot-seen
hubot_1 | ├── timeago@0.1.0
hubot_1 | └── coffee-script@1.6.3
hubot_1 | [Sat Feb 20 2016 16:37:18 GMT+0000 (UTC)] INFO Starting Rocketchat adapter...
hubot_1 | [Sat Feb 20 2016 16:37:18 GMT+0000 (UTC)] INFO Once connected to rooms I will respond to the name: bot
hubot_1 | [Sat Feb 20 2016 16:37:18 GMT+0000 (UTC)] INFO Connecting To: localhost:3000

你有什么建议吗?

谢谢!

4

2 回答 2

3

localhost:3000在机器上使用,但在 hubot 容器内形成,它应该rocketchat:3000与您在链接中定义的一样。

于 2016-02-23T12:21:28.513 回答
1

不幸的是,您的输出被截断。

在我的情况下,错误不是连接问题,而是 dockerfile 正在拉动 Rocketchat/hubot-rocketchat 图像的事实,该图像指的是 1.x 版本。在rocketbot github页面(https://github.com/RocketChat/hubot-rocketchat)上它指出

请不要使用适配器的 v1.xx。它是实验性的,并期待核心内尚未发生的以性能为导向的彻底变化。

请继续使用 Hubot Adapter v0.1.x,直至另行通知。

所以我把这条线改成

  image: rocketchat/hubot-rocketchat:v0.1.4 # rocketchat/hubot-rocketchat

突然火箭聊天机器人在说话。

于 2016-07-03T10:56:08.137 回答