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.
- Host: GitHub
- URL: https://github.com/craibuc/docker-ruby-sinatra
- Owner: craibuc
- License: mit
- Created: 2021-12-22T19:11:47.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-22T19:29:59.000Z (over 4 years ago)
- Last Synced: 2023-03-16T18:00:52.854Z (over 3 years ago)
- Topics: docker, ruby, sinatra
- Language: Makefile
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```