An open API service indexing awesome lists of open source software.

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

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
```