Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikamai/docker-ruby
Docker Ruby Image
https://github.com/mikamai/docker-ruby
Last synced: about 1 month ago
JSON representation
Docker Ruby Image
- Host: GitHub
- URL: https://github.com/mikamai/docker-ruby
- Owner: mikamai
- License: mit
- Created: 2015-05-12T11:30:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-15T09:21:41.000Z (almost 9 years ago)
- Last Synced: 2023-04-13T13:08:44.226Z (almost 2 years ago)
- Language: Ruby
- Size: 3.91 KB
- Stars: 1
- Watchers: 7
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
## Docker Ruby Image
Our custom docker base image for ruby apps.
### Using this image in your app
In your Dockerfile:
```
FROM quay.io/mikamai/ruby:master
...
```### Building and Pushing
Builds are triggered automatically on push. They updates the `latest` tag and the `` tag (e.g. a push on the master branch updates the `latest` and `master` tags).
You can also build/push manually. This way a `` tag is also generated.
```
bundle
rake docker:build docker:push
```