我有一个旧版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