https://github.com/timakin/oceanus
Docker interface, implemented with Ruby
https://github.com/timakin/oceanus
Last synced: 11 months ago
JSON representation
Docker interface, implemented with Ruby
- Host: GitHub
- URL: https://github.com/timakin/oceanus
- Owner: timakin
- License: mit
- Created: 2015-08-19T12:43:27.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-03-11T12:28:30.000Z (over 10 years ago)
- Last Synced: 2025-03-17T09:49:06.501Z (over 1 year ago)
- Language: Ruby
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Oceanus
Docker implementation with Ruby.
Depending on LXC.
## Installation
```ruby
gem 'oceanus'
```
And then execute:
$ bundle
Or install it yourself as:
$ gem install oceanus
## Usage
```sh
$ oceanus pull {image}:{tag}
$ oceanus ps
$ oceanus run {image}
$ oceanus exec {image} {command}
$ oceanus logs {container_id}
$ oceanus images
$ oceanus rm {container_id}
$ oceanus rmi {image_id}
$ oceanus stop {container_id}
$ oceanus build -t {image}:{tag} {directory_path_of_Dockerfile}
```
- [x] pull
- [x] ps
- [x] run
- [x] exec
- [x] logs
- [x] images
- [x] rm
- [x] rmi
- [x] stop
- [ ] build
- [x] commit
## Contributing
1. Fork it ( https://github.com/[my-github-username]/oceanus/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request