rocker-docket 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c674906c6147e5e60e609cbd97472cc6aa3c14a3
4
+ data.tar.gz: e7776eabe1d9ee930cac12baf40f8d74f567b6ac
5
+ SHA512:
6
+ metadata.gz: a05822775171c2910db40079a2432182733c39e6a49034ddd48c00c7a50239360a4fb9781dcabec448a8f86cb7f8e200b973ce4fe8efa139a66de44c0fe2301b
7
+ data.tar.gz: 3820afda15505f60cc97458ad411f75ef756a23fe0e8002695687457fd3bb4dfdffdefc5d6a58732d555db90fcfb00a1b9ea5178ce9509dce4d2daf37eb78099
data/.gitignore ADDED
@@ -0,0 +1,16 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
15
+ *.gem
16
+
data/Dockerfile ADDED
@@ -0,0 +1,6 @@
1
+ FROM centos
2
+ RUN yum install -y tar
3
+ RUN curl -L https://github.com/coreos/rocket/releases/download/v0.1.0/rocket-v0.1.0.tar.gz | tar xz
4
+ RUN ln -s /rocket-v0.1.0 /rocket
5
+ WORKDIR /rocket
6
+ ENTRYPOINT ["./rkt"]
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rocker-docket.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 TODO: Write your name
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # Rocker-Docket
2
+ Run Rocket under Docker.
3
+
4
+ # Usage
5
+ Basic usage:
6
+ ```bash
7
+ docker pull sheax0r/rocker-docket
8
+ docker run rocker-docket help
9
+ ```
10
+
11
+ This really isn't very useful unless you mount some host volumes (or data containers or what-have-you)
12
+ to store your rocket ACIs on; otherwise they will just disappear when the container stops.
13
+
14
+ I'll include some scripts to help with this in the near future.
15
+
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
data/bin/rkt ADDED
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ def rocket_dir
4
+ ENV.fetch('ROCKET_DIR', '/var/lib/rkt')
5
+ end
6
+
7
+ fail "#{rocket_dir} does not exist" unless File.exists? rocket_dir
8
+
9
+ exec "docker run -v #{rocket_dir}:/var/lib/rkt -t sheax0r/rocker-docket #{ARGV.join(' ')}"
data/bin/rocker-docket ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+ case ARGV[0]
3
+ when 'build'
4
+ Dir.chdir File.join(File.dirname(__FILE__), '..')
5
+ exec "docker build -t sheax0r/rocker-docket ."
6
+ when 'pull'
7
+ exec "docker pull sheax0r/rocker-docket"
8
+ else
9
+ puts "Usage: rocker-docket [build|pull]"
10
+ exit 1
11
+ end
12
+
@@ -0,0 +1,7 @@
1
+ require "rocker/docket/version"
2
+
3
+ module Rocker
4
+ module Docket
5
+ # Your code goes here...
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ module Rocker
2
+ module Docket
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1,22 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rocker/docket/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "rocker-docket"
8
+ spec.version = Rocker::Docket::VERSION
9
+ spec.authors = ["Michael Shea"]
10
+ spec.email = ["mike.shea@gmail.com"]
11
+ spec.summary = %q{Run rocket under docker, plus utils to make this easy.}
12
+ spec.homepage = "https://github.com/sheax0r/rocker-docket"
13
+ spec.license = "MIT"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0")
16
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ["lib"]
19
+
20
+ spec.add_development_dependency "bundler", "~> 1.7"
21
+ spec.add_development_dependency "rake", "~> 10.0"
22
+ end
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rocker-docket
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Michael Shea
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-12-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description:
42
+ email:
43
+ - mike.shea@gmail.com
44
+ executables:
45
+ - rkt
46
+ - rocker-docket
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - ".gitignore"
51
+ - Dockerfile
52
+ - Gemfile
53
+ - LICENSE.txt
54
+ - README.md
55
+ - Rakefile
56
+ - bin/rkt
57
+ - bin/rocker-docket
58
+ - lib/rocker/docket.rb
59
+ - lib/rocker/docket/version.rb
60
+ - rocker-docket.gemspec
61
+ homepage: https://github.com/sheax0r/rocker-docket
62
+ licenses:
63
+ - MIT
64
+ metadata: {}
65
+ post_install_message:
66
+ rdoc_options: []
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ requirements: []
80
+ rubyforge_project:
81
+ rubygems_version: 2.2.2
82
+ signing_key:
83
+ specification_version: 4
84
+ summary: Run rocket under docker, plus utils to make this easy.
85
+ test_files: []