bigrig 0.4.2 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/Gemfile.lock +24 -26
  4. data/bigrig.gemspec +2 -2
  5. data/lib/bigrig/models/container.rb +2 -2
  6. data/lib/bigrig/runner.rb +2 -10
  7. data/lib/bigrig/version.rb +1 -1
  8. data/lib/bigrig/waiter.rb +20 -0
  9. data/lib/bigrig.rb +1 -0
  10. data/spec/bigrig/actions/run_action_spec.rb +8 -0
  11. data/spec/bigrig/docker_adapter_spec.rb +1 -1
  12. data/spec/bigrig/models/container_spec.rb +0 -18
  13. data/spec/bigrig_spec.rb +20 -6
  14. data/spec/data/wait_for/Dockerfile +4 -0
  15. data/spec/data/wait_for/bigrig-wait.sh +5 -0
  16. data/spec/data/wait_for/bigrig.json +8 -0
  17. data/spec/data/wait_for_broken/Dockerfile +4 -0
  18. data/spec/data/wait_for_broken/bigrig-wait.sh +3 -0
  19. data/spec/data/wait_for_broken/bigrig.json +8 -0
  20. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +65 -65
  21. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +71 -71
  22. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +11 -11
  23. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +5 -5
  24. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +20 -20
  25. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +13 -13
  26. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +20 -20
  27. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +19 -19
  28. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +20 -20
  29. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +29 -29
  30. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +23 -23
  31. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +8 -8
  32. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +3 -3
  33. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +13 -13
  34. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +54 -54
  35. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +1059 -553
  36. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +40 -40
  37. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +44 -44
  38. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +13 -13
  39. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +12 -12
  40. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +35 -35
  41. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +35 -35
  42. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_env_variables/starts_the_container_with_env_set.yml +35 -35
  43. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +41 -41
  44. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +20 -20
  45. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +13 -15
  46. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +17 -17
  47. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +34 -34
  48. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +43 -43
  49. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +222 -26
  50. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +180 -74
  51. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +181 -75
  52. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +351 -139
  53. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +130 -130
  54. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +140 -140
  55. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +175 -69
  56. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +159 -53
  57. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes/should_pass_volumes_to_the_right_container.yml +180 -74
  58. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +351 -139
  59. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +130 -130
  60. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +268 -77
  61. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +180 -74
  62. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +28 -28
  63. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +266 -158
  64. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +78 -158
  65. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +187 -191
  66. data/spec/vcr/bigrig/dev/spec/data/dev_json/tails_the_logs.yml +38 -118
  67. data/spec/vcr/bigrig/dev/spec/data/scan_json/leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +811 -345
  68. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_dependant_containers_when_the_scanned_file_changes.yml +813 -375
  69. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_the_container_when_the_scanned_file_changes.yml +855 -363
  70. data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +23 -23
  71. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +14 -14
  72. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +14 -14
  73. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +17 -17
  74. data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +12 -12
  75. data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +17 -17
  76. data/spec/vcr/bigrig/run/spec/data/wait_for/bigrig_json/waits_for_wait_for.yml +180 -0
  77. data/spec/vcr/bigrig/run/spec/data/wait_for_broken_json/fails_with_an_error.yml +12 -12
  78. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +28 -28
  79. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +21 -21
  80. data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +28 -28
  81. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +135 -486
  82. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +146 -472
  83. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +402 -192
  84. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +980 -396
  85. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_dependant_containers_when_the_scanned_file_changes.yml +916 -388
  86. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_the_container_when_the_scanned_file_changes.yml +919 -391
  87. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +23 -23
  88. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +159 -53
  89. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +159 -53
  90. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +286 -31
  91. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +159 -53
  92. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +159 -53
  93. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for/bigrig_json_waits_for_wait_for.yml +522 -0
  94. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for_broken_json_fails_with_an_error.yml +175 -80
  95. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +1036 -526
  96. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +1024 -514
  97. metadata +17 -12
  98. data/spec/data/wait_for.json +0 -9
  99. data/spec/data/wait_for_broken.json +0 -9
  100. data/spec/vcr/bigrig/run/spec/data/wait_for_json/waits_for_wait_for.yml +0 -180
  101. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for_json_waits_for_wait_for.yml +0 -412
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.20.0
11
+ - Swipely/Docker-API 1.21.4
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -19,15 +19,15 @@ http_interactions:
19
19
  Content-Type:
20
20
  - text/plain; charset=utf-8
21
21
  Date:
22
- - Mon, 20 Apr 2015 23:29:17 GMT
22
+ - Fri, 05 Jun 2015 23:27:02 GMT
23
23
  Content-Length:
24
- - '28'
24
+ - '21'
25
25
  body:
26
26
  encoding: UTF-8
27
27
  string: |
28
- No such container: dev-test
28
+ no such id: dev-test
29
29
  http_version:
30
- recorded_at: Mon, 20 Apr 2015 23:29:16 GMT
30
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -36,7 +36,7 @@ http_interactions:
36
36
  string: ''
37
37
  headers:
38
38
  User-Agent:
39
- - Swipely/Docker-API 1.20.0
39
+ - Swipely/Docker-API 1.21.4
40
40
  Content-Type:
41
41
  - text/plain
42
42
  response:
@@ -47,15 +47,15 @@ http_interactions:
47
47
  Content-Type:
48
48
  - text/plain; charset=utf-8
49
49
  Date:
50
- - Mon, 20 Apr 2015 23:29:17 GMT
50
+ - Fri, 05 Jun 2015 23:27:02 GMT
51
51
  Content-Length:
52
- - '28'
52
+ - '21'
53
53
  body:
54
54
  encoding: UTF-8
55
55
  string: |
56
- No such container: dev-test
56
+ no such id: dev-test
57
57
  http_version:
58
- recorded_at: Mon, 20 Apr 2015 23:29:16 GMT
58
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -64,7 +64,7 @@ http_interactions:
64
64
  string: ''
65
65
  headers:
66
66
  User-Agent:
67
- - Swipely/Docker-API 1.20.0
67
+ - Swipely/Docker-API 1.21.4
68
68
  Content-Type:
69
69
  - text/plain
70
70
  response:
@@ -75,15 +75,15 @@ http_interactions:
75
75
  Content-Type:
76
76
  - text/plain; charset=utf-8
77
77
  Date:
78
- - Mon, 20 Apr 2015 23:29:17 GMT
78
+ - Fri, 05 Jun 2015 23:27:02 GMT
79
79
  Content-Length:
80
- - '28'
80
+ - '21'
81
81
  body:
82
82
  encoding: UTF-8
83
83
  string: |
84
- No such container: dev-test
84
+ no such id: dev-test
85
85
  http_version:
86
- recorded_at: Mon, 20 Apr 2015 23:29:16 GMT
86
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
87
87
  - request:
88
88
  method: get
89
89
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -92,7 +92,7 @@ http_interactions:
92
92
  string: ''
93
93
  headers:
94
94
  User-Agent:
95
- - Swipely/Docker-API 1.20.0
95
+ - Swipely/Docker-API 1.21.4
96
96
  Content-Type:
97
97
  - text/plain
98
98
  response:
@@ -103,15 +103,15 @@ http_interactions:
103
103
  Content-Type:
104
104
  - text/plain; charset=utf-8
105
105
  Date:
106
- - Mon, 20 Apr 2015 23:29:17 GMT
106
+ - Fri, 05 Jun 2015 23:27:02 GMT
107
107
  Content-Length:
108
- - '28'
108
+ - '21'
109
109
  body:
110
110
  encoding: UTF-8
111
111
  string: |
112
- No such container: dev-test
112
+ no such id: dev-test
113
113
  http_version:
114
- recorded_at: Mon, 20 Apr 2015 23:29:16 GMT
114
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
115
115
  - request:
116
116
  method: get
117
117
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -120,7 +120,7 @@ http_interactions:
120
120
  string: ''
121
121
  headers:
122
122
  User-Agent:
123
- - Swipely/Docker-API 1.20.0
123
+ - Swipely/Docker-API 1.21.4
124
124
  Content-Type:
125
125
  - text/plain
126
126
  response:
@@ -131,15 +131,15 @@ http_interactions:
131
131
  Content-Type:
132
132
  - text/plain; charset=utf-8
133
133
  Date:
134
- - Mon, 20 Apr 2015 23:29:17 GMT
134
+ - Fri, 05 Jun 2015 23:27:02 GMT
135
135
  Content-Length:
136
- - '28'
136
+ - '21'
137
137
  body:
138
138
  encoding: UTF-8
139
139
  string: |
140
- No such container: dev-logs
140
+ no such id: dev-logs
141
141
  http_version:
142
- recorded_at: Mon, 20 Apr 2015 23:29:16 GMT
142
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
143
143
  - request:
144
144
  method: get
145
145
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -148,7 +148,7 @@ http_interactions:
148
148
  string: ''
149
149
  headers:
150
150
  User-Agent:
151
- - Swipely/Docker-API 1.20.0
151
+ - Swipely/Docker-API 1.21.4
152
152
  Content-Type:
153
153
  - text/plain
154
154
  response:
@@ -159,15 +159,15 @@ http_interactions:
159
159
  Content-Type:
160
160
  - text/plain; charset=utf-8
161
161
  Date:
162
- - Mon, 20 Apr 2015 23:29:17 GMT
162
+ - Fri, 05 Jun 2015 23:27:02 GMT
163
163
  Content-Length:
164
- - '28'
164
+ - '21'
165
165
  body:
166
166
  encoding: UTF-8
167
167
  string: |
168
- No such container: dev-logs
168
+ no such id: dev-logs
169
169
  http_version:
170
- recorded_at: Mon, 20 Apr 2015 23:29:16 GMT
170
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
171
171
  - request:
172
172
  method: get
173
173
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -176,7 +176,7 @@ http_interactions:
176
176
  string: ''
177
177
  headers:
178
178
  User-Agent:
179
- - Swipely/Docker-API 1.20.0
179
+ - Swipely/Docker-API 1.21.4
180
180
  Content-Type:
181
181
  - text/plain
182
182
  response:
@@ -187,15 +187,15 @@ http_interactions:
187
187
  Content-Type:
188
188
  - text/plain; charset=utf-8
189
189
  Date:
190
- - Mon, 20 Apr 2015 23:29:17 GMT
190
+ - Fri, 05 Jun 2015 23:27:02 GMT
191
191
  Content-Length:
192
- - '28'
192
+ - '21'
193
193
  body:
194
194
  encoding: UTF-8
195
195
  string: |
196
- No such container: dev-logs
196
+ no such id: dev-logs
197
197
  http_version:
198
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
198
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
199
199
  - request:
200
200
  method: get
201
201
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -204,7 +204,7 @@ http_interactions:
204
204
  string: ''
205
205
  headers:
206
206
  User-Agent:
207
- - Swipely/Docker-API 1.20.0
207
+ - Swipely/Docker-API 1.21.4
208
208
  Content-Type:
209
209
  - text/plain
210
210
  response:
@@ -215,15 +215,15 @@ http_interactions:
215
215
  Content-Type:
216
216
  - text/plain; charset=utf-8
217
217
  Date:
218
- - Mon, 20 Apr 2015 23:29:17 GMT
218
+ - Fri, 05 Jun 2015 23:27:02 GMT
219
219
  Content-Length:
220
- - '28'
220
+ - '21'
221
221
  body:
222
222
  encoding: UTF-8
223
223
  string: |
224
- No such container: dev-logs
224
+ no such id: dev-logs
225
225
  http_version:
226
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
226
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
227
227
  - request:
228
228
  method: get
229
229
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -232,7 +232,7 @@ http_interactions:
232
232
  string: ''
233
233
  headers:
234
234
  User-Agent:
235
- - Swipely/Docker-API 1.20.0
235
+ - Swipely/Docker-API 1.21.4
236
236
  Content-Type:
237
237
  - text/plain
238
238
  response:
@@ -243,15 +243,15 @@ http_interactions:
243
243
  Content-Type:
244
244
  - text/plain; charset=utf-8
245
245
  Date:
246
- - Mon, 20 Apr 2015 23:29:17 GMT
246
+ - Fri, 05 Jun 2015 23:27:02 GMT
247
247
  Content-Length:
248
- - '28'
248
+ - '21'
249
249
  body:
250
250
  encoding: UTF-8
251
251
  string: |
252
- No such container: dev-test
252
+ no such id: dev-test
253
253
  http_version:
254
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
254
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
255
255
  - request:
256
256
  method: get
257
257
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -260,7 +260,7 @@ http_interactions:
260
260
  string: ''
261
261
  headers:
262
262
  User-Agent:
263
- - Swipely/Docker-API 1.20.0
263
+ - Swipely/Docker-API 1.21.4
264
264
  Content-Type:
265
265
  - text/plain
266
266
  response:
@@ -271,15 +271,15 @@ http_interactions:
271
271
  Content-Type:
272
272
  - text/plain; charset=utf-8
273
273
  Date:
274
- - Mon, 20 Apr 2015 23:29:17 GMT
274
+ - Fri, 05 Jun 2015 23:27:02 GMT
275
275
  Content-Length:
276
- - '28'
276
+ - '21'
277
277
  body:
278
278
  encoding: UTF-8
279
279
  string: |
280
- No such container: dev-test
280
+ no such id: dev-test
281
281
  http_version:
282
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
282
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
283
283
  - request:
284
284
  method: get
285
285
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -288,7 +288,7 @@ http_interactions:
288
288
  string: ''
289
289
  headers:
290
290
  User-Agent:
291
- - Swipely/Docker-API 1.20.0
291
+ - Swipely/Docker-API 1.21.4
292
292
  Content-Type:
293
293
  - text/plain
294
294
  response:
@@ -299,15 +299,15 @@ http_interactions:
299
299
  Content-Type:
300
300
  - text/plain; charset=utf-8
301
301
  Date:
302
- - Mon, 20 Apr 2015 23:29:17 GMT
302
+ - Fri, 05 Jun 2015 23:27:02 GMT
303
303
  Content-Length:
304
- - '28'
304
+ - '21'
305
305
  body:
306
306
  encoding: UTF-8
307
307
  string: |
308
- No such container: dev-test
308
+ no such id: dev-test
309
309
  http_version:
310
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
310
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
311
311
  - request:
312
312
  method: get
313
313
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -316,7 +316,7 @@ http_interactions:
316
316
  string: ''
317
317
  headers:
318
318
  User-Agent:
319
- - Swipely/Docker-API 1.20.0
319
+ - Swipely/Docker-API 1.21.4
320
320
  Content-Type:
321
321
  - text/plain
322
322
  response:
@@ -327,15 +327,15 @@ http_interactions:
327
327
  Content-Type:
328
328
  - text/plain; charset=utf-8
329
329
  Date:
330
- - Mon, 20 Apr 2015 23:29:17 GMT
330
+ - Fri, 05 Jun 2015 23:27:02 GMT
331
331
  Content-Length:
332
- - '28'
332
+ - '21'
333
333
  body:
334
334
  encoding: UTF-8
335
335
  string: |
336
- No such container: dev-test
336
+ no such id: dev-test
337
337
  http_version:
338
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
338
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
339
339
  - request:
340
340
  method: get
341
341
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -344,7 +344,7 @@ http_interactions:
344
344
  string: ''
345
345
  headers:
346
346
  User-Agent:
347
- - Swipely/Docker-API 1.20.0
347
+ - Swipely/Docker-API 1.21.4
348
348
  Content-Type:
349
349
  - text/plain
350
350
  response:
@@ -355,15 +355,15 @@ http_interactions:
355
355
  Content-Type:
356
356
  - text/plain; charset=utf-8
357
357
  Date:
358
- - Mon, 20 Apr 2015 23:29:17 GMT
358
+ - Fri, 05 Jun 2015 23:27:02 GMT
359
359
  Content-Length:
360
- - '28'
360
+ - '21'
361
361
  body:
362
362
  encoding: UTF-8
363
363
  string: |
364
- No such container: dev-test
364
+ no such id: dev-test
365
365
  http_version:
366
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
366
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
367
367
  - request:
368
368
  method: get
369
369
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -372,7 +372,7 @@ http_interactions:
372
372
  string: ''
373
373
  headers:
374
374
  User-Agent:
375
- - Swipely/Docker-API 1.20.0
375
+ - Swipely/Docker-API 1.21.4
376
376
  Content-Type:
377
377
  - text/plain
378
378
  response:
@@ -383,15 +383,15 @@ http_interactions:
383
383
  Content-Type:
384
384
  - text/plain; charset=utf-8
385
385
  Date:
386
- - Mon, 20 Apr 2015 23:29:17 GMT
386
+ - Fri, 05 Jun 2015 23:27:02 GMT
387
387
  Content-Length:
388
- - '28'
388
+ - '21'
389
389
  body:
390
390
  encoding: UTF-8
391
391
  string: |
392
- No such container: dev-test
392
+ no such id: dev-test
393
393
  http_version:
394
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
394
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
395
395
  - request:
396
396
  method: get
397
397
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -400,7 +400,7 @@ http_interactions:
400
400
  string: ''
401
401
  headers:
402
402
  User-Agent:
403
- - Swipely/Docker-API 1.20.0
403
+ - Swipely/Docker-API 1.21.4
404
404
  Content-Type:
405
405
  - text/plain
406
406
  response:
@@ -411,15 +411,15 @@ http_interactions:
411
411
  Content-Type:
412
412
  - text/plain; charset=utf-8
413
413
  Date:
414
- - Mon, 20 Apr 2015 23:29:17 GMT
414
+ - Fri, 05 Jun 2015 23:27:02 GMT
415
415
  Content-Length:
416
- - '28'
416
+ - '21'
417
417
  body:
418
418
  encoding: UTF-8
419
419
  string: |
420
- No such container: dev-test
420
+ no such id: dev-test
421
421
  http_version:
422
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
422
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
423
423
  - request:
424
424
  method: get
425
425
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -428,7 +428,7 @@ http_interactions:
428
428
  string: ''
429
429
  headers:
430
430
  User-Agent:
431
- - Swipely/Docker-API 1.20.0
431
+ - Swipely/Docker-API 1.21.4
432
432
  Content-Type:
433
433
  - text/plain
434
434
  response:
@@ -439,15 +439,15 @@ http_interactions:
439
439
  Content-Type:
440
440
  - text/plain; charset=utf-8
441
441
  Date:
442
- - Mon, 20 Apr 2015 23:29:17 GMT
442
+ - Fri, 05 Jun 2015 23:27:02 GMT
443
443
  Content-Length:
444
- - '28'
444
+ - '21'
445
445
  body:
446
446
  encoding: UTF-8
447
447
  string: |
448
- No such container: dev-test
448
+ no such id: dev-test
449
449
  http_version:
450
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
450
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
451
451
  - request:
452
452
  method: get
453
453
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -456,7 +456,7 @@ http_interactions:
456
456
  string: ''
457
457
  headers:
458
458
  User-Agent:
459
- - Swipely/Docker-API 1.20.0
459
+ - Swipely/Docker-API 1.21.4
460
460
  Content-Type:
461
461
  - text/plain
462
462
  response:
@@ -467,15 +467,15 @@ http_interactions:
467
467
  Content-Type:
468
468
  - text/plain; charset=utf-8
469
469
  Date:
470
- - Mon, 20 Apr 2015 23:29:17 GMT
470
+ - Fri, 05 Jun 2015 23:27:02 GMT
471
471
  Content-Length:
472
- - '28'
472
+ - '21'
473
473
  body:
474
474
  encoding: UTF-8
475
475
  string: |
476
- No such container: dev-test
476
+ no such id: dev-test
477
477
  http_version:
478
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
478
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
479
479
  - request:
480
480
  method: get
481
481
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -484,7 +484,7 @@ http_interactions:
484
484
  string: ''
485
485
  headers:
486
486
  User-Agent:
487
- - Swipely/Docker-API 1.20.0
487
+ - Swipely/Docker-API 1.21.4
488
488
  Content-Type:
489
489
  - text/plain
490
490
  response:
@@ -495,15 +495,15 @@ http_interactions:
495
495
  Content-Type:
496
496
  - text/plain; charset=utf-8
497
497
  Date:
498
- - Mon, 20 Apr 2015 23:29:17 GMT
498
+ - Fri, 05 Jun 2015 23:27:02 GMT
499
499
  Content-Length:
500
- - '28'
500
+ - '21'
501
501
  body:
502
502
  encoding: UTF-8
503
503
  string: |
504
- No such container: dev-test
504
+ no such id: dev-test
505
505
  http_version:
506
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
506
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
507
507
  - request:
508
508
  method: get
509
509
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -512,7 +512,7 @@ http_interactions:
512
512
  string: ''
513
513
  headers:
514
514
  User-Agent:
515
- - Swipely/Docker-API 1.20.0
515
+ - Swipely/Docker-API 1.21.4
516
516
  Content-Type:
517
517
  - text/plain
518
518
  response:
@@ -523,15 +523,15 @@ http_interactions:
523
523
  Content-Type:
524
524
  - text/plain; charset=utf-8
525
525
  Date:
526
- - Mon, 20 Apr 2015 23:29:17 GMT
526
+ - Fri, 05 Jun 2015 23:27:02 GMT
527
527
  Content-Length:
528
- - '28'
528
+ - '21'
529
529
  body:
530
530
  encoding: UTF-8
531
531
  string: |
532
- No such container: dev-test
532
+ no such id: dev-test
533
533
  http_version:
534
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
534
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
535
535
  - request:
536
536
  method: get
537
537
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -540,7 +540,7 @@ http_interactions:
540
540
  string: ''
541
541
  headers:
542
542
  User-Agent:
543
- - Swipely/Docker-API 1.20.0
543
+ - Swipely/Docker-API 1.21.4
544
544
  Content-Type:
545
545
  - text/plain
546
546
  response:
@@ -551,15 +551,15 @@ http_interactions:
551
551
  Content-Type:
552
552
  - text/plain; charset=utf-8
553
553
  Date:
554
- - Mon, 20 Apr 2015 23:29:17 GMT
554
+ - Fri, 05 Jun 2015 23:27:02 GMT
555
555
  Content-Length:
556
- - '28'
556
+ - '21'
557
557
  body:
558
558
  encoding: UTF-8
559
559
  string: |
560
- No such container: dev-test
560
+ no such id: dev-test
561
561
  http_version:
562
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
562
+ recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
563
563
  - request:
564
564
  method: get
565
565
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -568,7 +568,7 @@ http_interactions:
568
568
  string: ''
569
569
  headers:
570
570
  User-Agent:
571
- - Swipely/Docker-API 1.20.0
571
+ - Swipely/Docker-API 1.21.4
572
572
  Content-Type:
573
573
  - text/plain
574
574
  response:
@@ -579,15 +579,15 @@ http_interactions:
579
579
  Content-Type:
580
580
  - text/plain; charset=utf-8
581
581
  Date:
582
- - Mon, 20 Apr 2015 23:29:17 GMT
582
+ - Fri, 05 Jun 2015 23:27:03 GMT
583
583
  Content-Length:
584
- - '28'
584
+ - '21'
585
585
  body:
586
586
  encoding: UTF-8
587
587
  string: |
588
- No such container: dev-test
588
+ no such id: dev-test
589
589
  http_version:
590
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
590
+ recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
591
591
  - request:
592
592
  method: get
593
593
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -596,7 +596,7 @@ http_interactions:
596
596
  string: ''
597
597
  headers:
598
598
  User-Agent:
599
- - Swipely/Docker-API 1.20.0
599
+ - Swipely/Docker-API 1.21.4
600
600
  Content-Type:
601
601
  - text/plain
602
602
  response:
@@ -607,15 +607,15 @@ http_interactions:
607
607
  Content-Type:
608
608
  - text/plain; charset=utf-8
609
609
  Date:
610
- - Mon, 20 Apr 2015 23:29:18 GMT
610
+ - Fri, 05 Jun 2015 23:27:03 GMT
611
611
  Content-Length:
612
- - '28'
612
+ - '21'
613
613
  body:
614
614
  encoding: UTF-8
615
615
  string: |
616
- No such container: dev-test
616
+ no such id: dev-test
617
617
  http_version:
618
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
618
+ recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
619
619
  - request:
620
620
  method: get
621
621
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -624,7 +624,7 @@ http_interactions:
624
624
  string: ''
625
625
  headers:
626
626
  User-Agent:
627
- - Swipely/Docker-API 1.20.0
627
+ - Swipely/Docker-API 1.21.4
628
628
  Content-Type:
629
629
  - text/plain
630
630
  response:
@@ -635,15 +635,15 @@ http_interactions:
635
635
  Content-Type:
636
636
  - text/plain; charset=utf-8
637
637
  Date:
638
- - Mon, 20 Apr 2015 23:29:18 GMT
638
+ - Fri, 05 Jun 2015 23:27:03 GMT
639
639
  Content-Length:
640
- - '28'
640
+ - '21'
641
641
  body:
642
642
  encoding: UTF-8
643
643
  string: |
644
- No such container: dev-test
644
+ no such id: dev-test
645
645
  http_version:
646
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
646
+ recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
647
647
  - request:
648
648
  method: get
649
649
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -652,7 +652,7 @@ http_interactions:
652
652
  string: ''
653
653
  headers:
654
654
  User-Agent:
655
- - Swipely/Docker-API 1.20.0
655
+ - Swipely/Docker-API 1.21.4
656
656
  Content-Type:
657
657
  - text/plain
658
658
  response:
@@ -663,15 +663,15 @@ http_interactions:
663
663
  Content-Type:
664
664
  - text/plain; charset=utf-8
665
665
  Date:
666
- - Mon, 20 Apr 2015 23:29:18 GMT
666
+ - Fri, 05 Jun 2015 23:27:03 GMT
667
667
  Content-Length:
668
- - '28'
668
+ - '21'
669
669
  body:
670
670
  encoding: UTF-8
671
671
  string: |
672
- No such container: dev-test
672
+ no such id: dev-test
673
673
  http_version:
674
- recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
674
+ recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
675
675
  - request:
676
676
  method: get
677
677
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -680,7 +680,7 @@ http_interactions:
680
680
  string: ''
681
681
  headers:
682
682
  User-Agent:
683
- - Swipely/Docker-API 1.20.0
683
+ - Swipely/Docker-API 1.21.4
684
684
  Content-Type:
685
685
  - text/plain
686
686
  response:
@@ -691,15 +691,15 @@ http_interactions:
691
691
  Content-Type:
692
692
  - text/plain; charset=utf-8
693
693
  Date:
694
- - Mon, 20 Apr 2015 23:29:18 GMT
694
+ - Fri, 05 Jun 2015 23:27:03 GMT
695
695
  Content-Length:
696
- - '28'
696
+ - '21'
697
697
  body:
698
698
  encoding: UTF-8
699
699
  string: |
700
- No such container: dev-test
700
+ no such id: dev-test
701
701
  http_version:
702
- recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
702
+ recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
703
703
  - request:
704
704
  method: get
705
705
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -708,7 +708,7 @@ http_interactions:
708
708
  string: ''
709
709
  headers:
710
710
  User-Agent:
711
- - Swipely/Docker-API 1.20.0
711
+ - Swipely/Docker-API 1.21.4
712
712
  Content-Type:
713
713
  - text/plain
714
714
  response:
@@ -719,15 +719,15 @@ http_interactions:
719
719
  Content-Type:
720
720
  - text/plain; charset=utf-8
721
721
  Date:
722
- - Mon, 20 Apr 2015 23:29:18 GMT
722
+ - Fri, 05 Jun 2015 23:27:03 GMT
723
723
  Content-Length:
724
- - '28'
724
+ - '21'
725
725
  body:
726
726
  encoding: UTF-8
727
727
  string: |
728
- No such container: dev-test
728
+ no such id: dev-test
729
729
  http_version:
730
- recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
730
+ recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
731
731
  - request:
732
732
  method: get
733
733
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -736,7 +736,7 @@ http_interactions:
736
736
  string: ''
737
737
  headers:
738
738
  User-Agent:
739
- - Swipely/Docker-API 1.20.0
739
+ - Swipely/Docker-API 1.21.4
740
740
  Content-Type:
741
741
  - text/plain
742
742
  response:
@@ -747,15 +747,15 @@ http_interactions:
747
747
  Content-Type:
748
748
  - text/plain; charset=utf-8
749
749
  Date:
750
- - Mon, 20 Apr 2015 23:29:18 GMT
750
+ - Fri, 05 Jun 2015 23:27:03 GMT
751
751
  Content-Length:
752
- - '28'
752
+ - '21'
753
753
  body:
754
754
  encoding: UTF-8
755
755
  string: |
756
- No such container: dev-test
756
+ no such id: dev-test
757
757
  http_version:
758
- recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
758
+ recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
759
759
  - request:
760
760
  method: get
761
761
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -764,7 +764,7 @@ http_interactions:
764
764
  string: ''
765
765
  headers:
766
766
  User-Agent:
767
- - Swipely/Docker-API 1.20.0
767
+ - Swipely/Docker-API 1.21.4
768
768
  Content-Type:
769
769
  - text/plain
770
770
  response:
@@ -775,15 +775,15 @@ http_interactions:
775
775
  Content-Type:
776
776
  - text/plain; charset=utf-8
777
777
  Date:
778
- - Mon, 20 Apr 2015 23:29:18 GMT
778
+ - Fri, 05 Jun 2015 23:27:03 GMT
779
779
  Content-Length:
780
- - '28'
780
+ - '21'
781
781
  body:
782
782
  encoding: UTF-8
783
783
  string: |
784
- No such container: dev-test
784
+ no such id: dev-test
785
785
  http_version:
786
- recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
786
+ recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
787
787
  - request:
788
788
  method: get
789
789
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -792,7 +792,7 @@ http_interactions:
792
792
  string: ''
793
793
  headers:
794
794
  User-Agent:
795
- - Swipely/Docker-API 1.20.0
795
+ - Swipely/Docker-API 1.21.4
796
796
  Content-Type:
797
797
  - text/plain
798
798
  response:
@@ -803,15 +803,15 @@ http_interactions:
803
803
  Content-Type:
804
804
  - text/plain; charset=utf-8
805
805
  Date:
806
- - Mon, 20 Apr 2015 23:29:18 GMT
806
+ - Fri, 05 Jun 2015 23:27:03 GMT
807
807
  Content-Length:
808
- - '28'
808
+ - '21'
809
809
  body:
810
810
  encoding: UTF-8
811
811
  string: |
812
- No such container: dev-test
812
+ no such id: dev-test
813
813
  http_version:
814
- recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
814
+ recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
815
815
  - request:
816
816
  method: get
817
817
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -820,7 +820,7 @@ http_interactions:
820
820
  string: ''
821
821
  headers:
822
822
  User-Agent:
823
- - Swipely/Docker-API 1.20.0
823
+ - Swipely/Docker-API 1.21.4
824
824
  Content-Type:
825
825
  - text/plain
826
826
  response:
@@ -831,15 +831,15 @@ http_interactions:
831
831
  Content-Type:
832
832
  - text/plain; charset=utf-8
833
833
  Date:
834
- - Mon, 20 Apr 2015 23:29:18 GMT
834
+ - Fri, 05 Jun 2015 23:27:03 GMT
835
835
  Content-Length:
836
- - '28'
836
+ - '21'
837
837
  body:
838
838
  encoding: UTF-8
839
839
  string: |
840
- No such container: dev-test
840
+ no such id: dev-test
841
841
  http_version:
842
- recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
842
+ recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
843
843
  - request:
844
844
  method: get
845
845
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -848,7 +848,7 @@ http_interactions:
848
848
  string: ''
849
849
  headers:
850
850
  User-Agent:
851
- - Swipely/Docker-API 1.20.0
851
+ - Swipely/Docker-API 1.21.4
852
852
  Content-Type:
853
853
  - text/plain
854
854
  response:
@@ -859,15 +859,15 @@ http_interactions:
859
859
  Content-Type:
860
860
  - text/plain; charset=utf-8
861
861
  Date:
862
- - Mon, 20 Apr 2015 23:29:18 GMT
862
+ - Fri, 05 Jun 2015 23:27:03 GMT
863
863
  Content-Length:
864
- - '28'
864
+ - '21'
865
865
  body:
866
866
  encoding: UTF-8
867
867
  string: |
868
- No such container: dev-test
868
+ no such id: dev-test
869
869
  http_version:
870
- recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
870
+ recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
871
871
  - request:
872
872
  method: get
873
873
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -876,7 +876,7 @@ http_interactions:
876
876
  string: ''
877
877
  headers:
878
878
  User-Agent:
879
- - Swipely/Docker-API 1.20.0
879
+ - Swipely/Docker-API 1.21.4
880
880
  Content-Type:
881
881
  - text/plain
882
882
  response:
@@ -887,15 +887,15 @@ http_interactions:
887
887
  Content-Type:
888
888
  - text/plain; charset=utf-8
889
889
  Date:
890
- - Mon, 20 Apr 2015 23:29:18 GMT
890
+ - Fri, 05 Jun 2015 23:27:03 GMT
891
891
  Content-Length:
892
- - '28'
892
+ - '21'
893
893
  body:
894
894
  encoding: UTF-8
895
895
  string: |
896
- No such container: dev-test
896
+ no such id: dev-test
897
897
  http_version:
898
- recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
898
+ recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
899
899
  - request:
900
900
  method: get
901
901
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -904,7 +904,7 @@ http_interactions:
904
904
  string: ''
905
905
  headers:
906
906
  User-Agent:
907
- - Swipely/Docker-API 1.20.0
907
+ - Swipely/Docker-API 1.21.4
908
908
  Content-Type:
909
909
  - text/plain
910
910
  response:
@@ -915,24 +915,22 @@ http_interactions:
915
915
  Content-Type:
916
916
  - application/json
917
917
  Date:
918
- - Mon, 20 Apr 2015 23:29:18 GMT
919
- Content-Length:
920
- - '1994'
918
+ - Fri, 05 Jun 2015 23:27:03 GMT
921
919
  body:
922
920
  encoding: UTF-8
923
921
  string: |
924
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"eaf0dbdc05d6","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:29:18.695152011Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":{},"VolumesRW":{}}
922
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"1a34650d3814","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:03.753156173Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":null,"VolumesRW":null}
925
923
  http_version:
926
- recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
924
+ recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
927
925
  - request:
928
926
  method: get
929
- uri: "<DOCKER_HOST>/v1.16/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/json"
927
+ uri: "<DOCKER_HOST>/v1.16/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/json"
930
928
  body:
931
929
  encoding: US-ASCII
932
930
  string: ''
933
931
  headers:
934
932
  User-Agent:
935
- - Swipely/Docker-API 1.20.0
933
+ - Swipely/Docker-API 1.21.4
936
934
  Content-Type:
937
935
  - text/plain
938
936
  response:
@@ -943,15 +941,13 @@ http_interactions:
943
941
  Content-Type:
944
942
  - application/json
945
943
  Date:
946
- - Mon, 20 Apr 2015 23:29:18 GMT
947
- Content-Length:
948
- - '1994'
944
+ - Fri, 05 Jun 2015 23:27:03 GMT
949
945
  body:
950
946
  encoding: UTF-8
951
947
  string: |
952
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"eaf0dbdc05d6","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:29:18.695152011Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":{},"VolumesRW":{}}
948
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"1a34650d3814","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:03.753156173Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":null,"VolumesRW":null}
953
949
  http_version:
954
- recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
950
+ recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
955
951
  - request:
956
952
  method: get
957
953
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -960,7 +956,7 @@ http_interactions:
960
956
  string: ''
961
957
  headers:
962
958
  User-Agent:
963
- - Swipely/Docker-API 1.20.0
959
+ - Swipely/Docker-API 1.21.4
964
960
  Content-Type:
965
961
  - text/plain
966
962
  response:
@@ -971,22 +967,22 @@ http_interactions:
971
967
  Content-Type:
972
968
  - application/json
973
969
  Date:
974
- - Mon, 20 Apr 2015 23:29:19 GMT
970
+ - Fri, 05 Jun 2015 23:27:04 GMT
975
971
  body:
976
972
  encoding: UTF-8
977
973
  string: |
978
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"eaf0dbdc05d6","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:29:18.695152011Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/hosts","Id":"eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.222","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7de","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:de","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13753,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:29:19.448710651Z"},"Volumes":{},"VolumesRW":{}}
974
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"1a34650d3814","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:03.753156173Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/hosts","Id":"1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.97","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:161","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:61","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24050,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:04.459717997Z"},"Volumes":{},"VolumesRW":{}}
979
975
  http_version:
980
- recorded_at: Mon, 20 Apr 2015 23:29:19 GMT
976
+ recorded_at: Fri, 05 Jun 2015 23:27:04 GMT
981
977
  - request:
982
978
  method: get
983
- uri: "<DOCKER_HOST>/v1.16/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/json"
979
+ uri: "<DOCKER_HOST>/v1.16/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/json"
984
980
  body:
985
981
  encoding: US-ASCII
986
982
  string: ''
987
983
  headers:
988
984
  User-Agent:
989
- - Swipely/Docker-API 1.20.0
985
+ - Swipely/Docker-API 1.21.4
990
986
  Content-Type:
991
987
  - text/plain
992
988
  response:
@@ -997,13 +993,13 @@ http_interactions:
997
993
  Content-Type:
998
994
  - application/json
999
995
  Date:
1000
- - Mon, 20 Apr 2015 23:29:19 GMT
996
+ - Fri, 05 Jun 2015 23:27:04 GMT
1001
997
  body:
1002
998
  encoding: UTF-8
1003
999
  string: |
1004
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"eaf0dbdc05d6","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:29:18.695152011Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/hosts","Id":"eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.222","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7de","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:de","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13753,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:29:19.448710651Z"},"Volumes":{},"VolumesRW":{}}
1000
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"1a34650d3814","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:03.753156173Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/hosts","Id":"1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.97","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:161","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:61","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24050,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:04.459717997Z"},"Volumes":{},"VolumesRW":{}}
1005
1001
  http_version:
1006
- recorded_at: Mon, 20 Apr 2015 23:29:19 GMT
1002
+ recorded_at: Fri, 05 Jun 2015 23:27:04 GMT
1007
1003
  - request:
1008
1004
  method: get
1009
1005
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -1012,7 +1008,7 @@ http_interactions:
1012
1008
  string: ''
1013
1009
  headers:
1014
1010
  User-Agent:
1015
- - Swipely/Docker-API 1.20.0
1011
+ - Swipely/Docker-API 1.21.4
1016
1012
  Content-Type:
1017
1013
  - text/plain
1018
1014
  response:
@@ -1023,22 +1019,22 @@ http_interactions:
1023
1019
  Content-Type:
1024
1020
  - application/json
1025
1021
  Date:
1026
- - Mon, 20 Apr 2015 23:29:19 GMT
1022
+ - Fri, 05 Jun 2015 23:27:04 GMT
1027
1023
  body:
1028
1024
  encoding: UTF-8
1029
1025
  string: |
1030
- {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/run.sh"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"070748b6fd6a","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:29:18.702786221Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875/hosts","Id":"070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.223","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7df","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:df","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13748,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:29:19.448648962Z"},"Volumes":{},"VolumesRW":{}}
1026
+ {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/run.sh"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"1a75d722e1e5","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:03.762607668Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["15be473dcfb47481918db764ad1909235476faf55305ee70c58ff009cd1cc46d"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/hosts","Id":"1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.98","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:162","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:62","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24046,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:04.323323967Z"},"Volumes":{},"VolumesRW":{}}
1031
1027
  http_version:
1032
- recorded_at: Mon, 20 Apr 2015 23:29:19 GMT
1028
+ recorded_at: Fri, 05 Jun 2015 23:27:04 GMT
1033
1029
  - request:
1034
1030
  method: get
1035
- uri: "<DOCKER_HOST>/v1.16/containers/070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875/json"
1031
+ uri: "<DOCKER_HOST>/v1.16/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/json"
1036
1032
  body:
1037
1033
  encoding: US-ASCII
1038
1034
  string: ''
1039
1035
  headers:
1040
1036
  User-Agent:
1041
- - Swipely/Docker-API 1.20.0
1037
+ - Swipely/Docker-API 1.21.4
1042
1038
  Content-Type:
1043
1039
  - text/plain
1044
1040
  response:
@@ -1049,11 +1045,11 @@ http_interactions:
1049
1045
  Content-Type:
1050
1046
  - application/json
1051
1047
  Date:
1052
- - Mon, 20 Apr 2015 23:29:19 GMT
1048
+ - Fri, 05 Jun 2015 23:27:04 GMT
1053
1049
  body:
1054
1050
  encoding: UTF-8
1055
1051
  string: |
1056
- {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/run.sh"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"070748b6fd6a","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:29:18.702786221Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875/hosts","Id":"070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.223","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7df","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:df","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13748,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:29:19.448648962Z"},"Volumes":{},"VolumesRW":{}}
1052
+ {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/run.sh"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"1a75d722e1e5","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:03.762607668Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["15be473dcfb47481918db764ad1909235476faf55305ee70c58ff009cd1cc46d"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/hosts","Id":"1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.98","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:162","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:62","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24046,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:04.323323967Z"},"Volumes":{},"VolumesRW":{}}
1057
1053
  http_version:
1058
- recorded_at: Mon, 20 Apr 2015 23:29:19 GMT
1054
+ recorded_at: Fri, 05 Jun 2015 23:27:04 GMT
1059
1055
  recorded_with: VCR 2.9.3