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

https://github.com/craibuc/docker-ruby-sinatra

Docker image and container for Ruby/Sinatra development.
https://github.com/craibuc/docker-ruby-sinatra

docker ruby sinatra

Last synced: 2 months ago
JSON representation

Docker image and container for Ruby/Sinatra development.

Awesome Lists containing this project

README

          

# docker-ruby-sinatra
Docker image and container for Ruby/Sinatra development.

## Usage

### Generate the Gemfile.lock, using the ruby:3.0 image
```bash
make lock
```
### Create an image that will include the dependencies (Gems)
```bash
make build
```
### Run the container (application); attach logging to stdout
```bash
make run
```
### Access the container's terminal
```bash
make tty
```