如何配置docker与byebug一起使用?

时间:2019-04-11 14:36:53

标签: ruby-on-rails docker docker-compose

我有一个旧版Rails 5.1应用程序。我们最近开始使用docker-compose。我们使用puma和nginx来启动应用程序,例如:

bundle exec puma -d && nginx -g "daemon off;"

为锅使用此映射:

version: '3'
services:
  ...
  web:
    ports:
      - 3001:80

工作正常(但我看不到Rails应用程序的任何日志)。 我需要能够使用byebug gem调试我的Rails应用。

我尝试过但是没有运气:

web: ...
  stdin_open: true
  tty: true
  $ docker-compose up -d

  $ docker attach app_web_1

0 个答案:

没有答案