Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kazu69/docker-rbenv
Docker image based on centos with rbenv
https://github.com/kazu69/docker-rbenv
Last synced: 27 days ago
JSON representation
Docker image based on centos with rbenv
- Host: GitHub
- URL: https://github.com/kazu69/docker-rbenv
- Owner: kazu69
- Created: 2014-03-30T17:20:30.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-14T16:45:18.000Z (over 10 years ago)
- Last Synced: 2024-10-19T22:42:17.598Z (3 months ago)
- Language: Shell
- Homepage:
- Size: 148 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
docker-rbenv
============Create a dokcer container that can take advantage of multiple versions of ruby using rbenv.
## Usage
Add to ```project/.ruby-version``` multiple versions.
For example below```text
2.0.0-p451
2.1.0
```You can dcoker provisioning in VM using Vagrant
```sh
# provisioning
vagrant up
```You can use docker in VM.
```
vagrant ssh
sudo docker run -i -t kazu69/ruby_versions (or you container tag) /bin/bash
```if not using Vagrant
```
cd project && docker build -t TAG .
```