Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timakin/oceanus
Docker interface, implemented with Ruby
https://github.com/timakin/oceanus
Last synced: about 1 month 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-11T12:28:30.000Z (over 8 years ago)
- Last Synced: 2024-04-17T01:14:04.390Z (7 months ago)
- Language: Ruby
- Size: 40 KB
- Stars: 0
- Watchers: 2
- 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