docker-api 1.10.3 → 1.10.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/Rakefile +7 -0
- data/lib/docker/rake_task.rb +17 -8
- data/lib/docker/version.rb +1 -1
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +35 -43
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +38 -82
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +23 -23
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +4 -4
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +52 -36
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b2999ea15595e8eceacc85569f7106e0a887b90
|
4
|
+
data.tar.gz: b050e42732eaefbb3f768a26d8731b2ad5d11eca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8fa749f7494bd47a98ffb2f9f91189163b2f868becfac44693cb0af931a32519ebd8788b8b91cc94c5aede6dedd27e5b5b8c9790f2b87c24affd2548fdf0fe59
|
7
|
+
data.tar.gz: 7ce552a15abd1e7c0c4a378ab5631f2cc11cff7063e1bb0a6181b4d737e9f1295eaa39db43f530d1711fa6eacccd94aa81dd85bc5dd969aed7cabe8df94a70cb
|
data/README.md
CHANGED
@@ -180,7 +180,7 @@ Much like the Images, this object also has a one-to-one mapping with the [Contai
|
|
180
180
|
```ruby
|
181
181
|
require 'docker'
|
182
182
|
|
183
|
-
# Create a Container.
|
183
|
+
# Create a Container.
|
184
184
|
Docker::Container.create('Cmd' => ['ls'], 'Image' => 'base')
|
185
185
|
# => Docker::Container { :id => 492510dd38e4, :connection => Docker::Connection { :url => http://localhost, :options => {:port=>4243} } }
|
186
186
|
|
data/Rakefile
CHANGED
@@ -14,3 +14,10 @@ end
|
|
14
14
|
Cane::RakeTask.new(:quality) do |cane|
|
15
15
|
cane.canefile = '.cane'
|
16
16
|
end
|
17
|
+
|
18
|
+
desc 'Pull an Ubuntu image'
|
19
|
+
image 'ubuntu:13.10' do
|
20
|
+
puts "Pulling ubuntu:13.10"
|
21
|
+
image = Docker::Image.create('fromImage' => 'ubuntu', 'tag' => '13.10')
|
22
|
+
puts "Pulled ubuntu:13.10, image id: #{image.id}"
|
23
|
+
end
|
data/lib/docker/rake_task.rb
CHANGED
@@ -1,12 +1,21 @@
|
|
1
|
-
require 'rake'
|
2
|
-
require 'docker'
|
3
|
-
|
4
1
|
# This class allows image-based tasks to be created.
|
5
|
-
class Docker::ImageTask
|
2
|
+
class Docker::ImageTask < Rake::Task
|
3
|
+
def self.scope_name(_scope, task_name)
|
4
|
+
task_name
|
5
|
+
end
|
6
|
+
|
6
7
|
def needed?
|
7
|
-
|
8
|
-
|
9
|
-
|
8
|
+
!has_repo_tag?
|
9
|
+
end
|
10
|
+
|
11
|
+
private
|
12
|
+
|
13
|
+
def has_repo_tag?
|
14
|
+
images.any? { |image| image.info['RepoTags'].include?(repo_tag) }
|
15
|
+
end
|
16
|
+
|
17
|
+
def images
|
18
|
+
@images ||= Docker::Image.all(:all => true)
|
10
19
|
end
|
11
20
|
|
12
21
|
def repo
|
@@ -22,7 +31,7 @@ class Docker::ImageTask
|
|
22
31
|
end
|
23
32
|
end
|
24
33
|
|
25
|
-
#
|
34
|
+
# Monkeypatch Rake to add the `image` task.
|
26
35
|
module Rake::DSL
|
27
36
|
def image(*args, &block)
|
28
37
|
Docker::ImageTask.define_task(*args, &block)
|
data/lib/docker/version.rb
CHANGED
@@ -8,7 +8,7 @@ http_interactions:
|
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.10.3
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Sun, 23 Mar 2014 22:51:57 GMT
|
23
23
|
Connection:
|
24
24
|
- close
|
25
25
|
Transfer-Encoding:
|
@@ -27,22 +27,18 @@ http_interactions:
|
|
27
27
|
body:
|
28
28
|
encoding: UTF-8
|
29
29
|
string: |-
|
30
|
-
[{"Created":
|
31
|
-
,{"Created":
|
32
|
-
,{"Created":
|
33
|
-
,{"Created":
|
34
|
-
,{"Created":
|
35
|
-
,{"Created":
|
36
|
-
,{"Created":
|
37
|
-
,{"Created":1391448676,"Id":"9f676bd305a43a931a8d98b13e5840ffbebcd908370765373315926024c7c35e","ParentId":"1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077","RepoTags":["ubuntu:13.10"
|
38
|
-
,{"Created":1391448539,"Id":"eb601b8965b806e798674245307e091b8ac3cdb9fb522aebaa6ac593df8b6b3c","ParentId":"f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd","RepoTags":["ubuntu:13.04","ubuntu:raring"],"Size":170192839,"VirtualSize":170192839}
|
39
|
-
,{"Created":1391448413,"Id":"5ac751e8d62391dab7b5e795e949e74e7053eb443f819cb35e6bd23fe847a794","ParentId":"321f7f4200f444a0ba37aa7bcf35d2776f7f28958ed1cfe79b5108c62a9c1ab5","RepoTags":["ubuntu:12.10","ubuntu:quantal"],"Size":161412295,"VirtualSize":161412295}
|
40
|
-
,{"Created":1391448301,"Id":"9cc9ea5ea540116b89e41898dd30858107c1175260fb7ff50322b34704092232","ParentId":"7a4f8724184531b88441f95d0a12e47e0791aaedf4ef122b5464da54f38973d4","RepoTags":["ubuntu:lucid","ubuntu:10.04"],"Size":182964289,"VirtualSize":182964289}
|
41
|
-
,{"Created":1391448149,"Id":"9cd978db300e27386baa9dd791bf6dc818f13e52235b26e95703361ec3c94dc6","ParentId":"6170bb7b0ad1003a827e4dc5253ba49f6719599eac485db51eaafd507c13c311","RepoTags":["ubuntu:latest","ubuntu:precise","ubuntu:12.04"],"Size":204705001,"VirtualSize":204705001}
|
30
|
+
[{"Created":1395615116,"Id":"3373eb3b86cd0a1633b30e6e60b1ee79bba30f2faf0eeffadfaca40d19c435c8","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
31
|
+
,{"Created":1395615113,"Id":"1fe8ba4c530870ce50481694d43d7cd3544bc9bfc88e503620ffc829782aec2c","ParentId":"4a666898763a9a2bb66779eb0d62ff5238fe6bd20983ee1e88c442e0bfc02b9a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":541,"VirtualSize":175307614}
|
32
|
+
,{"Created":1395615109,"Id":"f436c033a91efcec906b01e34cb6d74a5611c81eceab7c9e8db79de64e3e9c95","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
33
|
+
,{"Created":1395615098,"Id":"b494f28120b37e6630203a034b1b851a53ce9779ab34537d817bf254901f0229","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
34
|
+
,{"Created":1395615095,"Id":"ddefb40d1386d8d96328b5e8d71ead884c969e9fee9a3179c855da209c4f9c4d","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
35
|
+
,{"Created":1395615092,"Id":"49312967b21033fb6081cbe01a4198cd07319a9dc3a71b02142a13c1cac7bed9","ParentId":"6ff1bc8b4a76a2482d8d889503f99cbe883b8bf2990457761fc6da5329de5fab","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":541,"VirtualSize":175307614}
|
36
|
+
,{"Created":1395615088,"Id":"cccbcd861d935edde9160be826cf38ba9aa7b8ddc0421e77801c458156567a27","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
37
|
+
,{"Created":1391448676,"Id":"9f676bd305a43a931a8d98b13e5840ffbebcd908370765373315926024c7c35e","ParentId":"1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077","RepoTags":["ubuntu:13.10"],"Size":182125825,"VirtualSize":182125825}
|
42
38
|
,{"Created":1364102658,"Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","ParentId":"27cf784147099545","RepoTags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl"],"Size":77,"VirtualSize":175307035}
|
43
39
|
]
|
44
40
|
http_version:
|
45
|
-
recorded_at:
|
41
|
+
recorded_at: Sun, 23 Mar 2014 22:51:57 GMT
|
46
42
|
- request:
|
47
43
|
method: post
|
48
44
|
uri: unix:///var/run/docker.sock/v1.10/build
|
@@ -52,7 +48,7 @@ http_interactions:
|
|
52
48
|
RG9ja2VyZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
53
49
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
54
50
|
AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDEx
|
55
|
-
|
51
|
+
ADEyMzEzNjYyNjE1ADAxMzMwMQAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
56
52
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
57
53
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
|
58
54
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
|
@@ -97,7 +93,7 @@ http_interactions:
|
|
97
93
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
|
98
94
|
headers:
|
99
95
|
User-Agent:
|
100
|
-
- Swipely/Docker-API 1.
|
96
|
+
- Swipely/Docker-API 1.10.3
|
101
97
|
Content-Type:
|
102
98
|
- application/json
|
103
99
|
response:
|
@@ -108,7 +104,7 @@ http_interactions:
|
|
108
104
|
Content-Type:
|
109
105
|
- application/json
|
110
106
|
Date:
|
111
|
-
-
|
107
|
+
- Sun, 23 Mar 2014 22:51:57 GMT
|
112
108
|
Connection:
|
113
109
|
- close
|
114
110
|
Transfer-Encoding:
|
@@ -118,7 +114,7 @@ http_interactions:
|
|
118
114
|
string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
|
119
115
|
b750fe79269d\\n\"}\r\n{\"stream\":\"Successfully built b750fe79269d\\n\"}\r\n"
|
120
116
|
http_version:
|
121
|
-
recorded_at:
|
117
|
+
recorded_at: Sun, 23 Mar 2014 22:51:58 GMT
|
122
118
|
- request:
|
123
119
|
method: post
|
124
120
|
uri: unix:///var/run/docker.sock/v1.10/build?rm=true
|
@@ -128,7 +124,7 @@ http_interactions:
|
|
128
124
|
R2VtZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
129
125
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
130
126
|
AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDQ2
|
131
|
-
|
127
|
+
ADEyMzEzNjYyNjE2ADAxMjYxMwAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
132
128
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
133
129
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
|
134
130
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
|
@@ -150,8 +146,8 @@ http_interactions:
|
|
150
146
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAERvY2tlcmZpbGUA
|
151
147
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
152
148
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAw
|
153
|
-
|
154
|
-
|
149
|
+
MDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMDA0MAAxMjMxMzY2MjYx
|
150
|
+
NgAwMTMzMDQAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
155
151
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
156
152
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIAMDB3aGVlbAAAAAAAAAAAAAAA
|
157
153
|
AAAAAAAAAAAAAAAAAAAAAHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
@@ -196,7 +192,7 @@ http_interactions:
|
|
196
192
|
AAAAAAAAAAAAAAAA
|
197
193
|
headers:
|
198
194
|
User-Agent:
|
199
|
-
- Swipely/Docker-API 1.
|
195
|
+
- Swipely/Docker-API 1.10.3
|
200
196
|
Content-Type:
|
201
197
|
- application/json
|
202
198
|
response:
|
@@ -207,7 +203,7 @@ http_interactions:
|
|
207
203
|
Content-Type:
|
208
204
|
- application/json
|
209
205
|
Date:
|
210
|
-
-
|
206
|
+
- Sun, 23 Mar 2014 22:51:58 GMT
|
211
207
|
Connection:
|
212
208
|
- close
|
213
209
|
Transfer-Encoding:
|
@@ -216,10 +212,10 @@ http_interactions:
|
|
216
212
|
encoding: UTF-8
|
217
213
|
string: "{\"stream\":\"Step 0 : from b750fe79269d\\n\"}\r\n{\"stream\":\" ---\\u003e
|
218
214
|
b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add Gemfile /\\n\"}\r\n{\"stream\":\"
|
219
|
-
---\\u003e
|
220
|
-
intermediate container
|
215
|
+
---\\u003e 34d32da3bba1\\n\"}\r\n{\"stream\":\"Successfully built 34d32da3bba1\\n\"}\r\n{\"stream\":\"Removing
|
216
|
+
intermediate container 25c3e96f71b1\\n\"}\r\n"
|
221
217
|
http_version:
|
222
|
-
recorded_at:
|
218
|
+
recorded_at: Sun, 23 Mar 2014 22:52:00 GMT
|
223
219
|
- request:
|
224
220
|
method: get
|
225
221
|
uri: unix:///var/run/docker.sock/v1.10/images/json
|
@@ -228,7 +224,7 @@ http_interactions:
|
|
228
224
|
string: ''
|
229
225
|
headers:
|
230
226
|
User-Agent:
|
231
|
-
- Swipely/Docker-API 1.
|
227
|
+
- Swipely/Docker-API 1.10.3
|
232
228
|
Content-Type:
|
233
229
|
- text/plain
|
234
230
|
response:
|
@@ -239,7 +235,7 @@ http_interactions:
|
|
239
235
|
Content-Type:
|
240
236
|
- application/json
|
241
237
|
Date:
|
242
|
-
-
|
238
|
+
- Sun, 23 Mar 2014 22:52:00 GMT
|
243
239
|
Connection:
|
244
240
|
- close
|
245
241
|
Transfer-Encoding:
|
@@ -247,21 +243,17 @@ http_interactions:
|
|
247
243
|
body:
|
248
244
|
encoding: UTF-8
|
249
245
|
string: |-
|
250
|
-
[{"Created":
|
251
|
-
,{"Created":
|
252
|
-
,{"Created":
|
253
|
-
,{"Created":
|
254
|
-
,{"Created":
|
255
|
-
,{"Created":
|
256
|
-
,{"Created":
|
257
|
-
,{"Created":
|
258
|
-
,{"Created":1391448676,"Id":"9f676bd305a43a931a8d98b13e5840ffbebcd908370765373315926024c7c35e","ParentId":"1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077","RepoTags":["ubuntu:13.10"
|
259
|
-
,{"Created":1391448539,"Id":"eb601b8965b806e798674245307e091b8ac3cdb9fb522aebaa6ac593df8b6b3c","ParentId":"f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd","RepoTags":["ubuntu:raring","ubuntu:13.04"],"Size":170192839,"VirtualSize":170192839}
|
260
|
-
,{"Created":1391448413,"Id":"5ac751e8d62391dab7b5e795e949e74e7053eb443f819cb35e6bd23fe847a794","ParentId":"321f7f4200f444a0ba37aa7bcf35d2776f7f28958ed1cfe79b5108c62a9c1ab5","RepoTags":["ubuntu:12.10","ubuntu:quantal"],"Size":161412295,"VirtualSize":161412295}
|
261
|
-
,{"Created":1391448301,"Id":"9cc9ea5ea540116b89e41898dd30858107c1175260fb7ff50322b34704092232","ParentId":"7a4f8724184531b88441f95d0a12e47e0791aaedf4ef122b5464da54f38973d4","RepoTags":["ubuntu:10.04","ubuntu:lucid"],"Size":182964289,"VirtualSize":182964289}
|
262
|
-
,{"Created":1391448149,"Id":"9cd978db300e27386baa9dd791bf6dc818f13e52235b26e95703361ec3c94dc6","ParentId":"6170bb7b0ad1003a827e4dc5253ba49f6719599eac485db51eaafd507c13c311","RepoTags":["ubuntu:12.04","ubuntu:latest","ubuntu:precise"],"Size":204705001,"VirtualSize":204705001}
|
246
|
+
[{"Created":1395615118,"Id":"34d32da3bba15792bab1dd717599a0858cf3ff3e641f3f2483fc621597730714","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
247
|
+
,{"Created":1395615116,"Id":"3373eb3b86cd0a1633b30e6e60b1ee79bba30f2faf0eeffadfaca40d19c435c8","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
248
|
+
,{"Created":1395615113,"Id":"1fe8ba4c530870ce50481694d43d7cd3544bc9bfc88e503620ffc829782aec2c","ParentId":"4a666898763a9a2bb66779eb0d62ff5238fe6bd20983ee1e88c442e0bfc02b9a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":541,"VirtualSize":175307614}
|
249
|
+
,{"Created":1395615109,"Id":"f436c033a91efcec906b01e34cb6d74a5611c81eceab7c9e8db79de64e3e9c95","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
250
|
+
,{"Created":1395615098,"Id":"b494f28120b37e6630203a034b1b851a53ce9779ab34537d817bf254901f0229","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
251
|
+
,{"Created":1395615095,"Id":"ddefb40d1386d8d96328b5e8d71ead884c969e9fee9a3179c855da209c4f9c4d","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
252
|
+
,{"Created":1395615092,"Id":"49312967b21033fb6081cbe01a4198cd07319a9dc3a71b02142a13c1cac7bed9","ParentId":"6ff1bc8b4a76a2482d8d889503f99cbe883b8bf2990457761fc6da5329de5fab","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":541,"VirtualSize":175307614}
|
253
|
+
,{"Created":1395615088,"Id":"cccbcd861d935edde9160be826cf38ba9aa7b8ddc0421e77801c458156567a27","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
254
|
+
,{"Created":1391448676,"Id":"9f676bd305a43a931a8d98b13e5840ffbebcd908370765373315926024c7c35e","ParentId":"1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077","RepoTags":["ubuntu:13.10"],"Size":182125825,"VirtualSize":182125825}
|
263
255
|
,{"Created":1364102658,"Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","ParentId":"27cf784147099545","RepoTags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl"],"Size":77,"VirtualSize":175307035}
|
264
256
|
]
|
265
257
|
http_version:
|
266
|
-
recorded_at:
|
258
|
+
recorded_at: Sun, 23 Mar 2014 22:52:00 GMT
|
267
259
|
recorded_with: VCR 2.8.0
|
@@ -8,7 +8,7 @@ http_interactions:
|
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.10.3
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Sun, 23 Mar 2014 22:51:55 GMT
|
23
23
|
Connection:
|
24
24
|
- close
|
25
25
|
Transfer-Encoding:
|
@@ -27,41 +27,19 @@ http_interactions:
|
|
27
27
|
body:
|
28
28
|
encoding: UTF-8
|
29
29
|
string: |-
|
30
|
-
[{"Command":"cat /Gemfile /Rakefile","Created":
|
31
|
-
,{"Command":"/bin/sh -c #(nop) ADD file:
|
32
|
-
,{"Command":"/bin/sh -c #(nop) ADD file:
|
33
|
-
,{"Command":"cat /Gemfile","Created":
|
34
|
-
,{"Command":"/bin/sh -c #(nop) ADD file:
|
35
|
-
,{"Command":"
|
36
|
-
,{"Command":"
|
37
|
-
,{"Command":"
|
38
|
-
,{"Command":"
|
39
|
-
,{"Command":"
|
40
|
-
,{"Command":"true","Created":1394631106,"Id":"0ac223f4d407ad2e694bdfcaf63dfdeaa0d33485b1e8163308ceafc821dbc68c","Image":"base:latest","Names":["/lonely_bardeen"],"Ports":[],"Status":"Exit 0"}
|
41
|
-
,{"Command":"true","Created":1394631104,"Id":"d0b6d1a3338746fd6ff45fe24e9b112a370ca9490ad97d2ff30a6c38c171c110","Image":"base:latest","Names":["/tender_einstein"],"Ports":[],"Status":"Exit 0"}
|
42
|
-
,{"Command":"ls","Created":1394631104,"Id":"cab0110ae90373f3f6790a2305bef7b040581dabbc98adbebeb3368f436eee71","Image":"8564cd49afd7","Names":["/agitated_mccarthy"],"Ports":[],"Status":"Exit 0"}
|
43
|
-
,{"Command":"pwd","Created":1394631102,"Id":"c451a96c2eca033537cf7107dcaa291bbecf8ff64c27c9d2258f4d546a1c1855","Image":"base:latest","Names":["/backstabbing_poincare"],"Ports":[],"Status":"Exit 0"}
|
44
|
-
,{"Command":"lol not a real command","Created":1394631101,"Id":"8ae2accd54d66e14604e210feb17ba35c10bea922a66e18df8abfecebe74bb35","Image":"base:latest","Names":["/suspicious_franklin"],"Ports":[],"Status":"Exit 1"}
|
45
|
-
,{"Command":"sleep 5","Created":1394631101,"Id":"c587a897c24942f9101238a1508953c1d0de1bbd32f99544d7f3e0d342483adb","Image":"base:latest","Names":["/prickly_nobel"],"Ports":[],"Status":"Exit 0"}
|
46
|
-
,{"Command":"sleep 5","Created":1394631096,"Id":"6a6064d6270041cae49685ab25cf48af4339e3af2f60dc1d869970deed56ef7e","Image":"base:latest","Names":["/tender_torvalds"],"Ports":[],"Status":"Exit 0"}
|
47
|
-
,{"Command":"tar nonsense","Created":1394631095,"Id":"38022195052bcf048579fe6e2b6631396935b97b569fa1be6d74fca8ee2fcfe4","Image":"base:latest","Names":["/happy_ptolemy"],"Ports":[],"Status":"Exit 64"}
|
48
|
-
,{"Command":"sleep 50","Created":1394631094,"Id":"82f44f5c9e7c3af30763a3de5fb55523816fcee716cad97a3a37ad3573a46738","Image":"base:latest","Names":["/sad_pike"],"Ports":[],"Status":"Up 23 seconds"}
|
49
|
-
,{"Command":"ls","Created":1394631092,"Id":"dd173940ca2db820cab4cf1f951fc97e98786b953ce2e848a7a8b9c9a1800b6b","Image":"base:latest","Names":["/trusting_galileo"],"Ports":[],"Status":"Exit 0"}
|
50
|
-
,{"Command":"true","Created":1394631092,"Id":"0ab853c18a2a8eaa4513a6a017dc749d5d691f689c6bdd339d9a64087aee88c1","Image":"base:latest","Names":["/prickly_galileo"],"Ports":[],"Status":"Exit 2"}
|
51
|
-
,{"Command":"test -d /foo","Created":1394631091,"Id":"6c3645ba631b4370d9199983b9a5133e49edaf019a5944148971b1c2db53bf79","Image":"base:latest","Names":["/angry_lumiere"],"Ports":[],"Status":"Exit 0"}
|
52
|
-
,{"Command":"pwd","Created":1394631090,"Id":"345e4a1df616ce448e2d45cdb95e8a3f0560fba39ab27e816b244f003430d59f","Image":"base:latest","Names":["/desperate_darwin"],"Ports":[],"Status":"Exit 0"}
|
53
|
-
,{"Command":"pwd","Created":1394631090,"Id":"71488237068c3873ebd7ff4cc408b7de962b2a90b7c8b8ad519483b592e282db","Image":"base:latest","Names":["/hungry_curie"],"Ports":[],"Status":"Exit 0"}
|
54
|
-
,{"Command":"rm -rf / --no-preserve-root","Created":1394631087,"Id":"8c8e11746d819efcd1403d94058d28f20c326ad44f0f406cb86a569931f26a60","Image":"base:latest","Names":["/boring_mclean"],"Ports":[],"Status":"Exit 1"}
|
55
|
-
,{"Command":"touch /test","Created":1394631086,"Id":"f68efa48ea8d41a0edade5d966d712133d723c910ef01b96fc3d0a9fbad368fe","Image":"base:latest","Names":["/grave_hawking"],"Ports":[],"Status":"Exit 0"}
|
56
|
-
,{"Command":"touch /test","Created":1394631084,"Id":"2703dd3c331e8405de077d5ed9452e0fe27fe3bb9f54740dc34845e1d0ab5499","Image":"base:latest","Names":["/tender_bell"],"Ports":[],"Status":"Exit 0"}
|
57
|
-
,{"Command":"/while","Created":1394631081,"Id":"d2def324f3daa1989173223f03d22e789c4354aa99d80e7258068de9e911cb35","Image":"2e0a9a843f66","Names":["/stoic_brown"],"Ports":[],"Status":"Up 36 seconds"}
|
58
|
-
,{"Command":"/bin/sh -c printf '#! /bin/sh\nwhile true\ndo\ntrue\ndone\n' \u003e /while \u0026\u0026 chmod +x /while","Created":1394631079,"Id":"68f09ac82fcf7c76327180d3573d3a2b54ebe13afc528e29195642a9710d888e","Image":"base:latest","Names":["/determined_einstein"],"Ports":[],"Status":"Exit 0"}
|
59
|
-
,{"Command":"rm -rf /root","Created":1394631078,"Id":"5584a4b00578255194eea3b885d831e6ea0da94d56529f0dab97cd972471026c","Image":"base:latest","Names":["/thirsty_bardeen"],"Ports":[],"Status":"Exit 0"}
|
60
|
-
,{"Command":"true","Created":1394631078,"Id":"be31311878d52f79a24ae359a00d7859e80fe6bb429026a74ccbafa606b04782","Image":"base:latest","Names":["/bob"],"Ports":[],"Status":"Exit 0"}
|
61
|
-
,{"Command":"true","Created":1394631077,"Id":"b615f325b67d6bf74b31ce94f39dea0c1a9f2707b2f610bbdbf6e5dc779b4444","Image":"base:latest","Names":["/high_pasteur"],"Ports":[],"Status":"Exit 0"}
|
30
|
+
[{"Command":"cat /Gemfile /Rakefile","Created":1395615114,"Id":"41f5bb2b030dafaf52b6451e7d538a1b9e2749e618c351629f25970b142ef091","Image":"1fe8ba4c5308","Names":["/suspicious_nobel"],"Ports":[],"Status":"Exit 0"}
|
31
|
+
,{"Command":"/bin/sh -c #(nop) ADD file:fc000cafaac6c9ef1975d88b91a0dc060c1a06623127233c76f18e867272f599 in /","Created":1395615112,"Id":"b28f7df24111249c6376b716158a103f177d8a7c4468fc0c1122e9ef9ef25c65","Image":"4a666898763a","Names":["/naughty_einstein"],"Ports":[],"Status":"Exit 0"}
|
32
|
+
,{"Command":"/bin/sh -c #(nop) ADD file:675a3f36a170ea5f92020111ebc6a332bc591517ef9f4f40425fa89a92fd16a2 in /","Created":1395615110,"Id":"4168949ea22a21d36dc2081381baf60990fac9242f962969b8b45223c128272b","Image":"base:latest","Names":["/backstabbing_heisenberg"],"Ports":[],"Status":"Exit 0"}
|
33
|
+
,{"Command":"cat /Gemfile","Created":1395615110,"Id":"592b830ab81914a92943a8d3bce3c1234cbd8d83aadc863477db7aef476d1b6e","Image":"f436c033a91e","Names":["/stoic_feynman"],"Ports":[],"Status":"Exit 0"}
|
34
|
+
,{"Command":"/bin/sh -c #(nop) ADD file:55e415893bdbadc4f7eb527228395d27ad0c272ec56c53be0829b2791ac9420c in /","Created":1395615108,"Id":"a42e1ed4c3dd186379a12e84e39e8566488a7426fb75e1054b82a20c8a275745","Image":"base:latest","Names":["/naughty_newton"],"Ports":[],"Status":"Exit 0"}
|
35
|
+
,{"Command":"cat /Gemfile /Rakefile","Created":1395615093,"Id":"a1687110527d24ef8bfc5f1c320724bc8105cb952ef515e28914190ca5b8b51c","Image":"49312967b210","Names":["/furious_pare"],"Ports":[],"Status":"Exit 0"}
|
36
|
+
,{"Command":"/bin/sh -c #(nop) ADD file:70e7412d8807542f4cd318c8f31c72f81debc60e164dd846059f0602652a7e50 in /","Created":1395615092,"Id":"865b86959f045068e5d29e18643d07ddd3b738be1d51045b89efa9bc7e0149ac","Image":"6ff1bc8b4a76","Names":["/tender_fermi"],"Ports":[],"Status":"Exit 0"}
|
37
|
+
,{"Command":"/bin/sh -c #(nop) ADD file:e8e2cb2809ea4c9c3117cdc0aa170daf98f132705f7e0f9f2ffb93f0d9ab2efa in /","Created":1395615090,"Id":"909be783d7626f909ccd2d4db87c5d5e0a4b04d60e7585992bbb8c9babd36ff1","Image":"base:latest","Names":["/sleepy_ritchie"],"Ports":[],"Status":"Exit 0"}
|
38
|
+
,{"Command":"cat /Gemfile","Created":1395615089,"Id":"e2c601a8e00e143fae2c279d58f7e789e76174484c5aed9989c21b521815e81b","Image":"cccbcd861d93","Names":["/cocky_thompson"],"Ports":[],"Status":"Exit 0"}
|
39
|
+
,{"Command":"/bin/sh -c #(nop) ADD file:267dd8662509ad8c2db6581535f1bd5895104ede376c68db66f91fb67e673a96 in /","Created":1395615087,"Id":"9d01185db242cf7453d3b6c92dc4cd790cb1c1b32eb93d7397f408f707afefa2","Image":"base:latest","Names":["/suspicious_turing"],"Ports":[],"Status":"Exit 0"}
|
62
40
|
]
|
63
41
|
http_version:
|
64
|
-
recorded_at:
|
42
|
+
recorded_at: Sun, 23 Mar 2014 22:51:55 GMT
|
65
43
|
- request:
|
66
44
|
method: post
|
67
45
|
uri: unix:///var/run/docker.sock/v1.10/build
|
@@ -71,7 +49,7 @@ http_interactions:
|
|
71
49
|
RG9ja2VyZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
72
50
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
73
51
|
AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDEx
|
74
|
-
|
52
|
+
ADEyMzEzNjYyNjEzADAxMzI3NwAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
75
53
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
76
54
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
|
77
55
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
|
@@ -116,7 +94,7 @@ http_interactions:
|
|
116
94
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
|
117
95
|
headers:
|
118
96
|
User-Agent:
|
119
|
-
- Swipely/Docker-API 1.
|
97
|
+
- Swipely/Docker-API 1.10.3
|
120
98
|
Content-Type:
|
121
99
|
- application/json
|
122
100
|
response:
|
@@ -127,7 +105,7 @@ http_interactions:
|
|
127
105
|
Content-Type:
|
128
106
|
- application/json
|
129
107
|
Date:
|
130
|
-
-
|
108
|
+
- Sun, 23 Mar 2014 22:51:55 GMT
|
131
109
|
Connection:
|
132
110
|
- close
|
133
111
|
Transfer-Encoding:
|
@@ -137,7 +115,7 @@ http_interactions:
|
|
137
115
|
string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
|
138
116
|
b750fe79269d\\n\"}\r\n{\"stream\":\"Successfully built b750fe79269d\\n\"}\r\n"
|
139
117
|
http_version:
|
140
|
-
recorded_at:
|
118
|
+
recorded_at: Sun, 23 Mar 2014 22:51:55 GMT
|
141
119
|
- request:
|
142
120
|
method: post
|
143
121
|
uri: unix:///var/run/docker.sock/v1.10/build?rm=true
|
@@ -147,7 +125,7 @@ http_interactions:
|
|
147
125
|
R2VtZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
148
126
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
149
127
|
AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDQ2
|
150
|
-
|
128
|
+
ADEyMzEzNjYyNjEzADAxMjYxMAAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
151
129
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
152
130
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
|
153
131
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
|
@@ -169,8 +147,8 @@ http_interactions:
|
|
169
147
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAERvY2tlcmZpbGUA
|
170
148
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
171
149
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAw
|
172
|
-
|
173
|
-
|
150
|
+
MDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMDA0MAAxMjMxMzY2MjYx
|
151
|
+
MwAwMTMzMDEAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
174
152
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
175
153
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIAMDB3aGVlbAAAAAAAAAAAAAAA
|
176
154
|
AAAAAAAAAAAAAAAAAAAAAHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
@@ -215,7 +193,7 @@ http_interactions:
|
|
215
193
|
AAAAAAAAAAAAAAAA
|
216
194
|
headers:
|
217
195
|
User-Agent:
|
218
|
-
- Swipely/Docker-API 1.
|
196
|
+
- Swipely/Docker-API 1.10.3
|
219
197
|
Content-Type:
|
220
198
|
- application/json
|
221
199
|
response:
|
@@ -226,7 +204,7 @@ http_interactions:
|
|
226
204
|
Content-Type:
|
227
205
|
- application/json
|
228
206
|
Date:
|
229
|
-
-
|
207
|
+
- Sun, 23 Mar 2014 22:51:55 GMT
|
230
208
|
Connection:
|
231
209
|
- close
|
232
210
|
Transfer-Encoding:
|
@@ -235,10 +213,10 @@ http_interactions:
|
|
235
213
|
encoding: UTF-8
|
236
214
|
string: "{\"stream\":\"Step 0 : from b750fe79269d\\n\"}\r\n{\"stream\":\" ---\\u003e
|
237
215
|
b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add Gemfile /\\n\"}\r\n{\"stream\":\"
|
238
|
-
---\\u003e
|
239
|
-
intermediate container
|
216
|
+
---\\u003e 3373eb3b86cd\\n\"}\r\n{\"stream\":\"Successfully built 3373eb3b86cd\\n\"}\r\n{\"stream\":\"Removing
|
217
|
+
intermediate container 01079fed9f74\\n\"}\r\n"
|
240
218
|
http_version:
|
241
|
-
recorded_at:
|
219
|
+
recorded_at: Sun, 23 Mar 2014 22:51:57 GMT
|
242
220
|
- request:
|
243
221
|
method: get
|
244
222
|
uri: unix:///var/run/docker.sock/v1.10/containers/json?all=true
|
@@ -247,7 +225,7 @@ http_interactions:
|
|
247
225
|
string: ''
|
248
226
|
headers:
|
249
227
|
User-Agent:
|
250
|
-
- Swipely/Docker-API 1.
|
228
|
+
- Swipely/Docker-API 1.10.3
|
251
229
|
Content-Type:
|
252
230
|
- text/plain
|
253
231
|
response:
|
@@ -258,7 +236,7 @@ http_interactions:
|
|
258
236
|
Content-Type:
|
259
237
|
- application/json
|
260
238
|
Date:
|
261
|
-
-
|
239
|
+
- Sun, 23 Mar 2014 22:51:57 GMT
|
262
240
|
Connection:
|
263
241
|
- close
|
264
242
|
Transfer-Encoding:
|
@@ -266,39 +244,17 @@ http_interactions:
|
|
266
244
|
body:
|
267
245
|
encoding: UTF-8
|
268
246
|
string: |-
|
269
|
-
[{"Command":"cat /Gemfile /Rakefile","Created":
|
270
|
-
,{"Command":"/bin/sh -c #(nop) ADD file:
|
271
|
-
,{"Command":"/bin/sh -c #(nop) ADD file:
|
272
|
-
,{"Command":"cat /Gemfile","Created":
|
273
|
-
,{"Command":"/bin/sh -c #(nop) ADD file:
|
274
|
-
,{"Command":"
|
275
|
-
,{"Command":"
|
276
|
-
,{"Command":"
|
277
|
-
,{"Command":"
|
278
|
-
,{"Command":"
|
279
|
-
,{"Command":"true","Created":1394631106,"Id":"0ac223f4d407ad2e694bdfcaf63dfdeaa0d33485b1e8163308ceafc821dbc68c","Image":"base:latest","Names":["/lonely_bardeen"],"Ports":[],"Status":"Exit 0"}
|
280
|
-
,{"Command":"true","Created":1394631104,"Id":"d0b6d1a3338746fd6ff45fe24e9b112a370ca9490ad97d2ff30a6c38c171c110","Image":"base:latest","Names":["/tender_einstein"],"Ports":[],"Status":"Exit 0"}
|
281
|
-
,{"Command":"ls","Created":1394631104,"Id":"cab0110ae90373f3f6790a2305bef7b040581dabbc98adbebeb3368f436eee71","Image":"8564cd49afd7","Names":["/agitated_mccarthy"],"Ports":[],"Status":"Exit 0"}
|
282
|
-
,{"Command":"pwd","Created":1394631102,"Id":"c451a96c2eca033537cf7107dcaa291bbecf8ff64c27c9d2258f4d546a1c1855","Image":"base:latest","Names":["/backstabbing_poincare"],"Ports":[],"Status":"Exit 0"}
|
283
|
-
,{"Command":"lol not a real command","Created":1394631101,"Id":"8ae2accd54d66e14604e210feb17ba35c10bea922a66e18df8abfecebe74bb35","Image":"base:latest","Names":["/suspicious_franklin"],"Ports":[],"Status":"Exit 1"}
|
284
|
-
,{"Command":"sleep 5","Created":1394631101,"Id":"c587a897c24942f9101238a1508953c1d0de1bbd32f99544d7f3e0d342483adb","Image":"base:latest","Names":["/prickly_nobel"],"Ports":[],"Status":"Exit 0"}
|
285
|
-
,{"Command":"sleep 5","Created":1394631096,"Id":"6a6064d6270041cae49685ab25cf48af4339e3af2f60dc1d869970deed56ef7e","Image":"base:latest","Names":["/tender_torvalds"],"Ports":[],"Status":"Exit 0"}
|
286
|
-
,{"Command":"tar nonsense","Created":1394631095,"Id":"38022195052bcf048579fe6e2b6631396935b97b569fa1be6d74fca8ee2fcfe4","Image":"base:latest","Names":["/happy_ptolemy"],"Ports":[],"Status":"Exit 64"}
|
287
|
-
,{"Command":"sleep 50","Created":1394631094,"Id":"82f44f5c9e7c3af30763a3de5fb55523816fcee716cad97a3a37ad3573a46738","Image":"base:latest","Names":["/sad_pike"],"Ports":[],"Status":"Up 26 seconds"}
|
288
|
-
,{"Command":"ls","Created":1394631092,"Id":"dd173940ca2db820cab4cf1f951fc97e98786b953ce2e848a7a8b9c9a1800b6b","Image":"base:latest","Names":["/trusting_galileo"],"Ports":[],"Status":"Exit 0"}
|
289
|
-
,{"Command":"true","Created":1394631092,"Id":"0ab853c18a2a8eaa4513a6a017dc749d5d691f689c6bdd339d9a64087aee88c1","Image":"base:latest","Names":["/prickly_galileo"],"Ports":[],"Status":"Exit 2"}
|
290
|
-
,{"Command":"test -d /foo","Created":1394631091,"Id":"6c3645ba631b4370d9199983b9a5133e49edaf019a5944148971b1c2db53bf79","Image":"base:latest","Names":["/angry_lumiere"],"Ports":[],"Status":"Exit 0"}
|
291
|
-
,{"Command":"pwd","Created":1394631090,"Id":"345e4a1df616ce448e2d45cdb95e8a3f0560fba39ab27e816b244f003430d59f","Image":"base:latest","Names":["/desperate_darwin"],"Ports":[],"Status":"Exit 0"}
|
292
|
-
,{"Command":"pwd","Created":1394631090,"Id":"71488237068c3873ebd7ff4cc408b7de962b2a90b7c8b8ad519483b592e282db","Image":"base:latest","Names":["/hungry_curie"],"Ports":[],"Status":"Exit 0"}
|
293
|
-
,{"Command":"rm -rf / --no-preserve-root","Created":1394631087,"Id":"8c8e11746d819efcd1403d94058d28f20c326ad44f0f406cb86a569931f26a60","Image":"base:latest","Names":["/boring_mclean"],"Ports":[],"Status":"Exit 1"}
|
294
|
-
,{"Command":"touch /test","Created":1394631086,"Id":"f68efa48ea8d41a0edade5d966d712133d723c910ef01b96fc3d0a9fbad368fe","Image":"base:latest","Names":["/grave_hawking"],"Ports":[],"Status":"Exit 0"}
|
295
|
-
,{"Command":"touch /test","Created":1394631084,"Id":"2703dd3c331e8405de077d5ed9452e0fe27fe3bb9f54740dc34845e1d0ab5499","Image":"base:latest","Names":["/tender_bell"],"Ports":[],"Status":"Exit 0"}
|
296
|
-
,{"Command":"/while","Created":1394631081,"Id":"d2def324f3daa1989173223f03d22e789c4354aa99d80e7258068de9e911cb35","Image":"2e0a9a843f66","Names":["/stoic_brown"],"Ports":[],"Status":"Up 39 seconds"}
|
297
|
-
,{"Command":"/bin/sh -c printf '#! /bin/sh\nwhile true\ndo\ntrue\ndone\n' \u003e /while \u0026\u0026 chmod +x /while","Created":1394631079,"Id":"68f09ac82fcf7c76327180d3573d3a2b54ebe13afc528e29195642a9710d888e","Image":"base:latest","Names":["/determined_einstein"],"Ports":[],"Status":"Exit 0"}
|
298
|
-
,{"Command":"rm -rf /root","Created":1394631078,"Id":"5584a4b00578255194eea3b885d831e6ea0da94d56529f0dab97cd972471026c","Image":"base:latest","Names":["/thirsty_bardeen"],"Ports":[],"Status":"Exit 0"}
|
299
|
-
,{"Command":"true","Created":1394631078,"Id":"be31311878d52f79a24ae359a00d7859e80fe6bb429026a74ccbafa606b04782","Image":"base:latest","Names":["/bob"],"Ports":[],"Status":"Exit 0"}
|
300
|
-
,{"Command":"true","Created":1394631077,"Id":"b615f325b67d6bf74b31ce94f39dea0c1a9f2707b2f610bbdbf6e5dc779b4444","Image":"base:latest","Names":["/high_pasteur"],"Ports":[],"Status":"Exit 0"}
|
247
|
+
[{"Command":"cat /Gemfile /Rakefile","Created":1395615114,"Id":"41f5bb2b030dafaf52b6451e7d538a1b9e2749e618c351629f25970b142ef091","Image":"1fe8ba4c5308","Names":["/suspicious_nobel"],"Ports":[],"Status":"Exit 0"}
|
248
|
+
,{"Command":"/bin/sh -c #(nop) ADD file:fc000cafaac6c9ef1975d88b91a0dc060c1a06623127233c76f18e867272f599 in /","Created":1395615112,"Id":"b28f7df24111249c6376b716158a103f177d8a7c4468fc0c1122e9ef9ef25c65","Image":"4a666898763a","Names":["/naughty_einstein"],"Ports":[],"Status":"Exit 0"}
|
249
|
+
,{"Command":"/bin/sh -c #(nop) ADD file:675a3f36a170ea5f92020111ebc6a332bc591517ef9f4f40425fa89a92fd16a2 in /","Created":1395615110,"Id":"4168949ea22a21d36dc2081381baf60990fac9242f962969b8b45223c128272b","Image":"base:latest","Names":["/backstabbing_heisenberg"],"Ports":[],"Status":"Exit 0"}
|
250
|
+
,{"Command":"cat /Gemfile","Created":1395615110,"Id":"592b830ab81914a92943a8d3bce3c1234cbd8d83aadc863477db7aef476d1b6e","Image":"f436c033a91e","Names":["/stoic_feynman"],"Ports":[],"Status":"Exit 0"}
|
251
|
+
,{"Command":"/bin/sh -c #(nop) ADD file:55e415893bdbadc4f7eb527228395d27ad0c272ec56c53be0829b2791ac9420c in /","Created":1395615108,"Id":"a42e1ed4c3dd186379a12e84e39e8566488a7426fb75e1054b82a20c8a275745","Image":"base:latest","Names":["/naughty_newton"],"Ports":[],"Status":"Exit 0"}
|
252
|
+
,{"Command":"cat /Gemfile /Rakefile","Created":1395615093,"Id":"a1687110527d24ef8bfc5f1c320724bc8105cb952ef515e28914190ca5b8b51c","Image":"49312967b210","Names":["/furious_pare"],"Ports":[],"Status":"Exit 0"}
|
253
|
+
,{"Command":"/bin/sh -c #(nop) ADD file:70e7412d8807542f4cd318c8f31c72f81debc60e164dd846059f0602652a7e50 in /","Created":1395615092,"Id":"865b86959f045068e5d29e18643d07ddd3b738be1d51045b89efa9bc7e0149ac","Image":"6ff1bc8b4a76","Names":["/tender_fermi"],"Ports":[],"Status":"Exit 0"}
|
254
|
+
,{"Command":"/bin/sh -c #(nop) ADD file:e8e2cb2809ea4c9c3117cdc0aa170daf98f132705f7e0f9f2ffb93f0d9ab2efa in /","Created":1395615090,"Id":"909be783d7626f909ccd2d4db87c5d5e0a4b04d60e7585992bbb8c9babd36ff1","Image":"base:latest","Names":["/sleepy_ritchie"],"Ports":[],"Status":"Exit 0"}
|
255
|
+
,{"Command":"cat /Gemfile","Created":1395615089,"Id":"e2c601a8e00e143fae2c279d58f7e789e76174484c5aed9989c21b521815e81b","Image":"cccbcd861d93","Names":["/cocky_thompson"],"Ports":[],"Status":"Exit 0"}
|
256
|
+
,{"Command":"/bin/sh -c #(nop) ADD file:267dd8662509ad8c2db6581535f1bd5895104ede376c68db66f91fb67e673a96 in /","Created":1395615087,"Id":"9d01185db242cf7453d3b6c92dc4cd790cb1c1b32eb93d7397f408f707afefa2","Image":"base:latest","Names":["/suspicious_turing"],"Ports":[],"Status":"Exit 0"}
|
301
257
|
]
|
302
258
|
http_version:
|
303
|
-
recorded_at:
|
259
|
+
recorded_at: Sun, 23 Mar 2014 22:51:57 GMT
|
304
260
|
recorded_with: VCR 2.8.0
|
@@ -9,7 +9,7 @@ http_interactions:
|
|
9
9
|
RG9ja2VyZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
10
10
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
11
11
|
AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDEx
|
12
|
-
|
12
|
+
ADEyMzEzNjYyNjA0ADAxMzI3NwAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
13
13
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
14
14
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
|
15
15
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
|
@@ -54,7 +54,7 @@ http_interactions:
|
|
54
54
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
|
55
55
|
headers:
|
56
56
|
User-Agent:
|
57
|
-
- Swipely/Docker-API 1.
|
57
|
+
- Swipely/Docker-API 1.10.3
|
58
58
|
Content-Type:
|
59
59
|
- application/json
|
60
60
|
response:
|
@@ -65,7 +65,7 @@ http_interactions:
|
|
65
65
|
Content-Type:
|
66
66
|
- application/json
|
67
67
|
Date:
|
68
|
-
-
|
68
|
+
- Sun, 23 Mar 2014 22:51:48 GMT
|
69
69
|
Connection:
|
70
70
|
- close
|
71
71
|
Transfer-Encoding:
|
@@ -75,7 +75,7 @@ http_interactions:
|
|
75
75
|
string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
|
76
76
|
b750fe79269d\\n\"}\r\n{\"stream\":\"Successfully built b750fe79269d\\n\"}\r\n"
|
77
77
|
http_version:
|
78
|
-
recorded_at:
|
78
|
+
recorded_at: Sun, 23 Mar 2014 22:51:48 GMT
|
79
79
|
- request:
|
80
80
|
method: post
|
81
81
|
uri: unix:///var/run/docker.sock/v1.10/build
|
@@ -85,7 +85,7 @@ http_interactions:
|
|
85
85
|
R2VtZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
86
86
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
87
87
|
AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDQ2
|
88
|
-
|
88
|
+
ADEyMzEzNjYyNjA0ADAxMjYxMAAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
89
89
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
90
90
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
|
91
91
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
|
@@ -107,8 +107,8 @@ http_interactions:
|
|
107
107
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAERvY2tlcmZpbGUA
|
108
108
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
109
109
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAw
|
110
|
-
|
111
|
-
|
110
|
+
MDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMDA0MAAxMjMxMzY2MjYw
|
111
|
+
NAAwMTMzMDEAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
112
112
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
113
113
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIAMDB3aGVlbAAAAAAAAAAAAAAA
|
114
114
|
AAAAAAAAAAAAAAAAAAAAAHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
@@ -153,7 +153,7 @@ http_interactions:
|
|
153
153
|
AAAAAAAAAAAAAAAA
|
154
154
|
headers:
|
155
155
|
User-Agent:
|
156
|
-
- Swipely/Docker-API 1.
|
156
|
+
- Swipely/Docker-API 1.10.3
|
157
157
|
Content-Type:
|
158
158
|
- application/json
|
159
159
|
response:
|
@@ -164,7 +164,7 @@ http_interactions:
|
|
164
164
|
Content-Type:
|
165
165
|
- application/json
|
166
166
|
Date:
|
167
|
-
-
|
167
|
+
- Sun, 23 Mar 2014 22:51:48 GMT
|
168
168
|
Connection:
|
169
169
|
- close
|
170
170
|
Transfer-Encoding:
|
@@ -173,18 +173,18 @@ http_interactions:
|
|
173
173
|
encoding: UTF-8
|
174
174
|
string: "{\"stream\":\"Step 0 : from b750fe79269d\\n\"}\r\n{\"stream\":\" ---\\u003e
|
175
175
|
b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add Gemfile /\\n\"}\r\n{\"stream\":\"
|
176
|
-
---\\u003e
|
176
|
+
---\\u003e f436c033a91e\\n\"}\r\n{\"stream\":\"Successfully built f436c033a91e\\n\"}\r\n"
|
177
177
|
http_version:
|
178
|
-
recorded_at:
|
178
|
+
recorded_at: Sun, 23 Mar 2014 22:51:50 GMT
|
179
179
|
- request:
|
180
180
|
method: post
|
181
181
|
uri: unix:///var/run/docker.sock/v1.10/containers/create
|
182
182
|
body:
|
183
183
|
encoding: UTF-8
|
184
|
-
string: "{\"Image\":\"
|
184
|
+
string: "{\"Image\":\"f436c033a91e\",\"Cmd\":[\"cat\",\"/Gemfile\"]}"
|
185
185
|
headers:
|
186
186
|
User-Agent:
|
187
|
-
- Swipely/Docker-API 1.
|
187
|
+
- Swipely/Docker-API 1.10.3
|
188
188
|
Content-Type:
|
189
189
|
- application/json
|
190
190
|
response:
|
@@ -195,7 +195,7 @@ http_interactions:
|
|
195
195
|
Content-Type:
|
196
196
|
- application/json
|
197
197
|
Date:
|
198
|
-
-
|
198
|
+
- Sun, 23 Mar 2014 22:51:50 GMT
|
199
199
|
Content-Length:
|
200
200
|
- '90'
|
201
201
|
Connection:
|
@@ -203,18 +203,18 @@ http_interactions:
|
|
203
203
|
body:
|
204
204
|
encoding: UTF-8
|
205
205
|
string: |
|
206
|
-
{"Id":"
|
206
|
+
{"Id":"592b830ab81914a92943a8d3bce3c1234cbd8d83aadc863477db7aef476d1b6e","Warnings":null}
|
207
207
|
http_version:
|
208
|
-
recorded_at:
|
208
|
+
recorded_at: Sun, 23 Mar 2014 22:51:50 GMT
|
209
209
|
- request:
|
210
210
|
method: post
|
211
|
-
uri: unix:///var/run/docker.sock/v1.10/containers/
|
211
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/592b830ab81914a92943a8d3bce3c1234cbd8d83aadc863477db7aef476d1b6e/start
|
212
212
|
body:
|
213
213
|
encoding: UTF-8
|
214
214
|
string: "{}"
|
215
215
|
headers:
|
216
216
|
User-Agent:
|
217
|
-
- Swipely/Docker-API 1.
|
217
|
+
- Swipely/Docker-API 1.10.3
|
218
218
|
Content-Type:
|
219
219
|
- application/json
|
220
220
|
response:
|
@@ -223,7 +223,7 @@ http_interactions:
|
|
223
223
|
message:
|
224
224
|
headers:
|
225
225
|
Date:
|
226
|
-
-
|
226
|
+
- Sun, 23 Mar 2014 22:51:50 GMT
|
227
227
|
Content-Length:
|
228
228
|
- '0'
|
229
229
|
Content-Type:
|
@@ -234,16 +234,16 @@ http_interactions:
|
|
234
234
|
encoding: UTF-8
|
235
235
|
string: ''
|
236
236
|
http_version:
|
237
|
-
recorded_at:
|
237
|
+
recorded_at: Sun, 23 Mar 2014 22:51:50 GMT
|
238
238
|
- request:
|
239
239
|
method: post
|
240
|
-
uri: unix:///var/run/docker.sock/v1.10/containers/
|
240
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/592b830ab81914a92943a8d3bce3c1234cbd8d83aadc863477db7aef476d1b6e/attach?stderr=true&stdout=true&stream=true
|
241
241
|
body:
|
242
242
|
encoding: US-ASCII
|
243
243
|
string: ''
|
244
244
|
headers:
|
245
245
|
User-Agent:
|
246
|
-
- Swipely/Docker-API 1.
|
246
|
+
- Swipely/Docker-API 1.10.3
|
247
247
|
Content-Type:
|
248
248
|
- text/plain
|
249
249
|
response:
|
@@ -259,5 +259,5 @@ http_interactions:
|
|
259
259
|
AQAAAAAAACZzb3VyY2UgJ2h0dHA6Ly9ydWJ5Z2Vtcy5vcmcnCgpnZW1zcGVj
|
260
260
|
Cg==
|
261
261
|
http_version:
|
262
|
-
recorded_at:
|
262
|
+
recorded_at: Sun, 23 Mar 2014 22:51:50 GMT
|
263
263
|
recorded_with: VCR 2.8.0
|
data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml
CHANGED
@@ -9,7 +9,7 @@ http_interactions:
|
|
9
9
|
RG9ja2VyZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
10
10
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
11
11
|
AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDEx
|
12
|
-
|
12
|
+
ADEyMzEzNjYyNjA0ADAxMzI3NwAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
13
13
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
14
14
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
|
15
15
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
|
@@ -54,7 +54,7 @@ http_interactions:
|
|
54
54
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
|
55
55
|
headers:
|
56
56
|
User-Agent:
|
57
|
-
- Swipely/Docker-API 1.
|
57
|
+
- Swipely/Docker-API 1.10.3
|
58
58
|
Content-Type:
|
59
59
|
- application/json
|
60
60
|
response:
|
@@ -65,7 +65,7 @@ http_interactions:
|
|
65
65
|
Content-Type:
|
66
66
|
- application/json
|
67
67
|
Date:
|
68
|
-
-
|
68
|
+
- Sun, 23 Mar 2014 22:51:48 GMT
|
69
69
|
Connection:
|
70
70
|
- close
|
71
71
|
Transfer-Encoding:
|
@@ -75,5 +75,5 @@ http_interactions:
|
|
75
75
|
string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
|
76
76
|
b750fe79269d\\n\"}\r\n{\"stream\":\"Successfully built b750fe79269d\\n\"}\r\n"
|
77
77
|
http_version:
|
78
|
-
recorded_at:
|
78
|
+
recorded_at: Sun, 23 Mar 2014 22:51:48 GMT
|
79
79
|
recorded_with: VCR 2.8.0
|
@@ -9,7 +9,7 @@ http_interactions:
|
|
9
9
|
RG9ja2VyZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
10
10
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
11
11
|
AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDEx
|
12
|
-
|
12
|
+
ADEyMzEzNjYyNjA2ADAxMzMwMQAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
13
13
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
14
14
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
|
15
15
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
|
@@ -54,7 +54,7 @@ http_interactions:
|
|
54
54
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
|
55
55
|
headers:
|
56
56
|
User-Agent:
|
57
|
-
- Swipely/Docker-API 1.
|
57
|
+
- Swipely/Docker-API 1.10.3
|
58
58
|
Content-Type:
|
59
59
|
- application/json
|
60
60
|
response:
|
@@ -65,7 +65,7 @@ http_interactions:
|
|
65
65
|
Content-Type:
|
66
66
|
- application/json
|
67
67
|
Date:
|
68
|
-
-
|
68
|
+
- Sun, 23 Mar 2014 22:51:50 GMT
|
69
69
|
Connection:
|
70
70
|
- close
|
71
71
|
Transfer-Encoding:
|
@@ -75,7 +75,7 @@ http_interactions:
|
|
75
75
|
string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
|
76
76
|
b750fe79269d\\n\"}\r\n{\"stream\":\"Successfully built b750fe79269d\\n\"}\r\n"
|
77
77
|
http_version:
|
78
|
-
recorded_at:
|
78
|
+
recorded_at: Sun, 23 Mar 2014 22:51:50 GMT
|
79
79
|
- request:
|
80
80
|
method: post
|
81
81
|
uri: unix:///var/run/docker.sock/v1.10/build
|
@@ -85,7 +85,7 @@ http_interactions:
|
|
85
85
|
R2VtZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
86
86
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
87
87
|
AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDQ2
|
88
|
-
|
88
|
+
ADEyMzEzNjYyNjA2ADAxMjYxMgAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
89
89
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
90
90
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
|
91
91
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
|
@@ -107,8 +107,8 @@ http_interactions:
|
|
107
107
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFJha2VmaWxlAAAA
|
108
108
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
109
109
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAw
|
110
|
-
|
111
|
-
|
110
|
+
MDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMTAzNQAxMjMxMzY2MjYw
|
111
|
+
NgAwMTI3NjMAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
112
112
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
113
113
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIAMDB3aGVlbAAAAAAAAAAAAAAA
|
114
114
|
AAAAAAAAAAAAAAAAAAAAAHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
@@ -123,29 +123,35 @@ http_interactions:
|
|
123
123
|
LCA6cXVhbGl0eV0KClJTcGVjOjpDb3JlOjpSYWtlVGFzay5uZXcgZG8gfHR8
|
124
124
|
CiAgdC5wYXR0ZXJuID0gJ3NwZWMvKiovKl9zcGVjLnJiJwplbmQKCkNhbmU6
|
125
125
|
OlJha2VUYXNrLm5ldyg6cXVhbGl0eSkgZG8gfGNhbmV8CiAgY2FuZS5jYW5l
|
126
|
-
|
126
|
+
ZmlsZSA9ICcuY2FuZScKZW5kCgpkZXNjICdQdWxsIGFuIFVidW50dSBpbWFn
|
127
|
+
ZScKaW1hZ2UgJ3VidW50dToxMy4xMCcgZG8KICBwdXRzICJQdWxsaW5nIHVi
|
128
|
+
dW50dToxMy4xMCIKICBpbWFnZSA9IERvY2tlcjo6SW1hZ2UuY3JlYXRlKCdm
|
129
|
+
cm9tSW1hZ2UnID0+ICd1YnVudHUnLCAndGFnJyA9PiAnMTMuMTAnKQogIHB1
|
130
|
+
dHMgIlB1bGxlZCB1YnVudHU6MTMuMTAsIGltYWdlIGlkOiAje2ltYWdlLmlk
|
131
|
+
fSIKZW5kCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
127
132
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
128
133
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
129
134
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
130
|
-
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEb2NrZXJmaWxlAAAAAAAAAAAAAAAA
|
131
135
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
132
|
-
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDAwMDY0MAAwMDAw
|
133
|
-
MDAwADAwMDAwMDAAMDAwMDAwMDAwNTcAMTIzMTAwNjA3MTIAMDEzMjc2ACAw
|
134
136
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
135
137
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
136
|
-
AAAAAAAAAAAAAHVzdGFyADAwd2hlZWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
137
|
-
AAAAAAB3aGVlbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAwMDAwMDAA
|
138
|
-
MDAwMDAwMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
139
138
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
140
139
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
141
|
-
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGZyb20g
|
142
|
-
Yjc1MGZlNzkyNjlkCmFkZCBHZW1maWxlIC8KYWRkIFJha2VmaWxlIC8KAAAA
|
143
140
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
141
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAERvY2tl
|
142
|
+
cmZpbGUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
144
143
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
144
|
+
AAAAAAAwMDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMDA1NwAxMjMx
|
145
|
+
MzY2MjYwNgAwMTMzMTMAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
145
146
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
147
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIAMDB3aGVlbAAAAAAA
|
148
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAA
|
149
|
+
AAAAAAAAAAAAMDAwMDAwMAAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
146
150
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
147
151
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
148
152
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
153
|
+
AAAAAAAAAAAAAAAAZnJvbSBiNzUwZmU3OTI2OWQKYWRkIEdlbWZpbGUgLwph
|
154
|
+
ZGQgUmFrZWZpbGUgLwoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
149
155
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
150
156
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
151
157
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
@@ -173,10 +179,15 @@ http_interactions:
|
|
173
179
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
174
180
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
175
181
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
176
|
-
|
182
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
183
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
184
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
185
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
186
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
187
|
+
AAAAAAAAAAAAAAAAAAAAAAAA
|
177
188
|
headers:
|
178
189
|
User-Agent:
|
179
|
-
- Swipely/Docker-API 1.
|
190
|
+
- Swipely/Docker-API 1.10.3
|
180
191
|
Content-Type:
|
181
192
|
- application/json
|
182
193
|
response:
|
@@ -187,7 +198,7 @@ http_interactions:
|
|
187
198
|
Content-Type:
|
188
199
|
- application/json
|
189
200
|
Date:
|
190
|
-
-
|
201
|
+
- Sun, 23 Mar 2014 22:51:50 GMT
|
191
202
|
Connection:
|
192
203
|
- close
|
193
204
|
Transfer-Encoding:
|
@@ -196,19 +207,19 @@ http_interactions:
|
|
196
207
|
encoding: UTF-8
|
197
208
|
string: "{\"stream\":\"Step 0 : from b750fe79269d\\n\"}\r\n{\"stream\":\" ---\\u003e
|
198
209
|
b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add Gemfile /\\n\"}\r\n{\"stream\":\"
|
199
|
-
---\\u003e
|
200
|
-
---\\u003e
|
210
|
+
---\\u003e 4a666898763a\\n\"}\r\n{\"stream\":\"Step 2 : add Rakefile /\\n\"}\r\n{\"stream\":\"
|
211
|
+
---\\u003e 1fe8ba4c5308\\n\"}\r\n{\"stream\":\"Successfully built 1fe8ba4c5308\\n\"}\r\n"
|
201
212
|
http_version:
|
202
|
-
recorded_at:
|
213
|
+
recorded_at: Sun, 23 Mar 2014 22:51:54 GMT
|
203
214
|
- request:
|
204
215
|
method: post
|
205
216
|
uri: unix:///var/run/docker.sock/v1.10/containers/create
|
206
217
|
body:
|
207
218
|
encoding: UTF-8
|
208
|
-
string: "{\"Image\":\"
|
219
|
+
string: "{\"Image\":\"1fe8ba4c5308\",\"Cmd\":[\"cat\",\"/Gemfile\",\"/Rakefile\"]}"
|
209
220
|
headers:
|
210
221
|
User-Agent:
|
211
|
-
- Swipely/Docker-API 1.
|
222
|
+
- Swipely/Docker-API 1.10.3
|
212
223
|
Content-Type:
|
213
224
|
- application/json
|
214
225
|
response:
|
@@ -219,7 +230,7 @@ http_interactions:
|
|
219
230
|
Content-Type:
|
220
231
|
- application/json
|
221
232
|
Date:
|
222
|
-
-
|
233
|
+
- Sun, 23 Mar 2014 22:51:54 GMT
|
223
234
|
Content-Length:
|
224
235
|
- '90'
|
225
236
|
Connection:
|
@@ -227,18 +238,18 @@ http_interactions:
|
|
227
238
|
body:
|
228
239
|
encoding: UTF-8
|
229
240
|
string: |
|
230
|
-
{"Id":"
|
241
|
+
{"Id":"41f5bb2b030dafaf52b6451e7d538a1b9e2749e618c351629f25970b142ef091","Warnings":null}
|
231
242
|
http_version:
|
232
|
-
recorded_at:
|
243
|
+
recorded_at: Sun, 23 Mar 2014 22:51:54 GMT
|
233
244
|
- request:
|
234
245
|
method: post
|
235
|
-
uri: unix:///var/run/docker.sock/v1.10/containers/
|
246
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/41f5bb2b030dafaf52b6451e7d538a1b9e2749e618c351629f25970b142ef091/start
|
236
247
|
body:
|
237
248
|
encoding: UTF-8
|
238
249
|
string: "{}"
|
239
250
|
headers:
|
240
251
|
User-Agent:
|
241
|
-
- Swipely/Docker-API 1.
|
252
|
+
- Swipely/Docker-API 1.10.3
|
242
253
|
Content-Type:
|
243
254
|
- application/json
|
244
255
|
response:
|
@@ -247,7 +258,7 @@ http_interactions:
|
|
247
258
|
message:
|
248
259
|
headers:
|
249
260
|
Date:
|
250
|
-
-
|
261
|
+
- Sun, 23 Mar 2014 22:51:54 GMT
|
251
262
|
Content-Length:
|
252
263
|
- '0'
|
253
264
|
Content-Type:
|
@@ -258,16 +269,16 @@ http_interactions:
|
|
258
269
|
encoding: UTF-8
|
259
270
|
string: ''
|
260
271
|
http_version:
|
261
|
-
recorded_at:
|
272
|
+
recorded_at: Sun, 23 Mar 2014 22:51:54 GMT
|
262
273
|
- request:
|
263
274
|
method: post
|
264
|
-
uri: unix:///var/run/docker.sock/v1.10/containers/
|
275
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/41f5bb2b030dafaf52b6451e7d538a1b9e2749e618c351629f25970b142ef091/attach?stderr=true&stdout=true&stream=true
|
265
276
|
body:
|
266
277
|
encoding: US-ASCII
|
267
278
|
string: ''
|
268
279
|
headers:
|
269
280
|
User-Agent:
|
270
|
-
- Swipely/Docker-API 1.
|
281
|
+
- Swipely/Docker-API 1.10.3
|
271
282
|
Content-Type:
|
272
283
|
- text/plain
|
273
284
|
response:
|
@@ -281,14 +292,19 @@ http_interactions:
|
|
281
292
|
encoding: UTF-8
|
282
293
|
string: !binary |-
|
283
294
|
AQAAAAAAACZzb3VyY2UgJ2h0dHA6Ly9ydWJ5Z2Vtcy5vcmcnCgpnZW1zcGVj
|
284
|
-
|
295
|
+
CgEAAAAAAAIdJExPQURfUEFUSC51bnNoaWZ0KEZpbGUuam9pbihGaWxlLmRp
|
285
296
|
cm5hbWUoX19GSUxFX18pLCAnbGliJykpCgpyZXF1aXJlICdyYWtlJwpyZXF1
|
286
297
|
aXJlICdkb2NrZXInCnJlcXVpcmUgJ3JzcGVjL2NvcmUvcmFrZV90YXNrJwpy
|
287
298
|
ZXF1aXJlICdjYW5lL3Jha2VfdGFzaycKCnRhc2sgOmRlZmF1bHQgPT4gWzpz
|
288
299
|
cGVjLCA6cXVhbGl0eV0KClJTcGVjOjpDb3JlOjpSYWtlVGFzay5uZXcgZG8g
|
289
300
|
fHR8CiAgdC5wYXR0ZXJuID0gJ3NwZWMvKiovKl9zcGVjLnJiJwplbmQKCkNh
|
290
301
|
bmU6OlJha2VUYXNrLm5ldyg6cXVhbGl0eSkgZG8gfGNhbmV8CiAgY2FuZS5j
|
291
|
-
|
302
|
+
YW5lZmlsZSA9ICcuY2FuZScKZW5kCgpkZXNjICdQdWxsIGFuIFVidW50dSBp
|
303
|
+
bWFnZScKaW1hZ2UgJ3VidW50dToxMy4xMCcgZG8KICBwdXRzICJQdWxsaW5n
|
304
|
+
IHVidW50dToxMy4xMCIKICBpbWFnZSA9IERvY2tlcjo6SW1hZ2UuY3JlYXRl
|
305
|
+
KCdmcm9tSW1hZ2UnID0+ICd1YnVudHUnLCAndGFnJyA9PiAnMTMuMTAnKQog
|
306
|
+
IHB1dHMgIlB1bGxlZCB1YnVudHU6MTMuMTAsIGltYWdlIGlkOiAje2ltYWdl
|
307
|
+
LmlkfSIKZW5kCg==
|
292
308
|
http_version:
|
293
|
-
recorded_at:
|
309
|
+
recorded_at: Sun, 23 Mar 2014 22:51:55 GMT
|
294
310
|
recorded_with: VCR 2.8.0
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: docker-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.10.
|
4
|
+
version: 1.10.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Swipely, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-03-
|
11
|
+
date: 2014-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: excon
|