https://github.com/catkins/unicorn-docker-remote-debug
Demo app to demonstrate remote debugging unicorn apps in Docker
https://github.com/catkins/unicorn-docker-remote-debug
Last synced: 28 days ago
JSON representation
Demo app to demonstrate remote debugging unicorn apps in Docker
- Host: GitHub
- URL: https://github.com/catkins/unicorn-docker-remote-debug
- Owner: catkins
- Created: 2016-07-20T03:41:29.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-07-20T03:41:44.000Z (almost 9 years ago)
- Last Synced: 2024-10-19T22:01:20.314Z (6 months ago)
- Language: Ruby
- Homepage:
- Size: 1.95 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Remote debugging ruby apps in Docker
#### Prerequisites
- [Docker](https://www.docker.com/products/docker#/mac)
- [Docker Compose](https://docs.docker.com/compose/)#### Running the app
```bash
# start the app and database containers
docker compose up# in another shell start the debugger
bundle exec byebug --remote :3031# add breakpoints in the code and trigger them with requests to :3000
```