dockage 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2417e272201a9a36b24260d7e8b168379718e9e3
4
- data.tar.gz: eb9a331706bfe55962f6dcc90a265221eec0367b
3
+ metadata.gz: 38fa9b1d1ff4dcb10bd70bcbc556f1ca66fd80d3
4
+ data.tar.gz: a8f3c6ca8b9abb01f3f35c0e84416fd7dc9ab00b
5
5
  SHA512:
6
- metadata.gz: 46ab38e61c9d00034b60c539306f22c6d57d1921722f92ba2b17cb1049016005e94572894a255acbb8a83bc8633a511abb6c40b1248dcbd52624fb2414ec6bfe
7
- data.tar.gz: 7cc2aa98103a73399c8c8935cc3a9c134e05018fab01f9af29b45b0c3e7fcf9ceda1f24f2c553da19b362d73c63ffa9044562dcb543685c3efa4cc1501caa663
6
+ metadata.gz: f4db7bf04ab2cc4700d9c3a0f011ac9074cc2d516bc8e53d398b0019d753d25054dac5161d77d3b1ffd12ace4bc72795e30cfc45ffedc77e8e1b981901efdd3c
7
+ data.tar.gz: 3d1684089e997695994cebd140cf37ab58978afa9a8784c7d9be0e9dd3be895c8c5796117ee583d3dd72abf63cdd7ac149a6cf19a4b269bcd2b2fb3115d19b24
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
- # Dockage [![Dependency Status](https://gemnasium.com/kressh/dockage.svg)](https://gemnasium.com/kressh/dockage) [![Code Climate](https://codeclimate.com/github/kressh/dockage/badges/gpa.svg)](https://codeclimate.com/github/kressh/dockage) [![Build Status](https://travis-ci.org/kressh/dockage.svg?branch=master)](https://travis-ci.org/kressh/dockage)
1
+ # Dockage [![Dependency Status](https://gemnasium.com/kressh/dockage.svg)](https://gemnasium.com/kressh/dockage) [![Code Climate](https://codeclimate.com/github/kressh/dockage/badges/gpa.svg)](https://codeclimate.com/github/kressh/dockage) [![Build Status](https://travis-ci.org/kressh/dockage.svg?branch=master)](https://travis-ci.org/kressh/dockage) [![Gem Version](https://badge.fury.io/rb/dockage.svg)](http://badge.fury.io/rb/dockage)
2
+
3
+ Ruby tool to manage multiple Docker containers at once
2
4
 
3
- TODO: Write a gem description
4
5
 
5
6
  ## Installation
6
7
 
@@ -20,11 +21,37 @@ Or install it yourself as:
20
21
 
21
22
  ## Usage
22
23
 
23
- TODO: Write usage instructions here
24
+ $ dockage help
25
+
26
+ Create example configuration file with:
27
+
28
+ $ dockage init
29
+
30
+ Modify it and run
31
+
32
+ $ dockage up
33
+
34
+ ## Configuration dockage.yml
35
+
36
+ * **docker_host** - docker daemon host (by default unix:///var/run/docker.sock) MacOSX users can use boot2docker LXC functionality
37
+ * **containers** - array of containers
38
+ * **name** - name of container
39
+ * **image** - image to use for docker pull
40
+ * **keep_fresh** - if true docker will check image for updates every time
41
+ * **volumes** - array of volumes to mount (format: **HOST_PATH**:**CONTAINER_PATH**)
42
+ * **ports** - array of ports to forward from container (format: **HOST_PORT**:**CONTAINER_PORT**)
43
+ * **links** - array of links to other containers (format: **CONTAINER_NAME**:**CONTAINER_HOST_NAME**)
44
+ * **cmd** - override container's CMD to run
45
+ * **ssh** - SSH configuration
46
+ * **login** - SSH login
47
+ * **host** - SSH host. In most cases docker daemon host.
48
+ * **port** - SSH port. Forward this port to docker host.
49
+ * **identity_file** - SSH private key to authenticate with
50
+ * **provision** - array of provision scripts. Can be script or inline. Requires SSH access to container.
24
51
 
25
52
  ## Contributing
26
53
 
27
- 1. Fork it ( https://github.com/[my-github-username]/dockage/fork )
54
+ 1. Fork it ( https://github.com/kressh/dockage/fork )
28
55
  2. Create your feature branch (`git checkout -b my-new-feature`)
29
56
  3. Commit your changes (`git commit -am 'Add some feature'`)
30
57
  4. Push to the branch (`git push origin my-new-feature`)
data/dockage.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ['kr3ssh@gmail.com']
11
11
  spec.summary = 'Control multiple docker containers with ease'
12
12
  spec.description = 'Gem to manage multiple docker containers at once'
13
- spec.homepage = 'http://github.com/kr3ssh/dockage'
13
+ spec.homepage = 'http://github.com/kressh/dockage'
14
14
  spec.license = 'MIT'
15
15
 
16
16
  spec.required_ruby_version = '>= 1.9'
@@ -1,3 +1,3 @@
1
1
  module Dockage
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dockage
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergey Besedin
@@ -107,7 +107,7 @@ files:
107
107
  - lib/dockage/templates/dockage.yml
108
108
  - lib/dockage/version.rb
109
109
  - spec/spec_helper.rb
110
- homepage: http://github.com/kr3ssh/dockage
110
+ homepage: http://github.com/kressh/dockage
111
111
  licenses:
112
112
  - MIT
113
113
  metadata: {}