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:01 GMT
22
+ - Fri, 05 Jun 2015 23:26:43 GMT
23
23
  Content-Length:
24
- - '28'
24
+ - '21'
25
25
  body:
26
26
  encoding: UTF-8
27
27
  string: |
28
- No such container: scanning
28
+ no such id: scanning
29
29
  http_version:
30
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
30
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/containers/scanning/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:01 GMT
50
+ - Fri, 05 Jun 2015 23:26:43 GMT
51
51
  Content-Length:
52
- - '28'
52
+ - '21'
53
53
  body:
54
54
  encoding: UTF-8
55
55
  string: |
56
- No such container: scanning
56
+ no such id: scanning
57
57
  http_version:
58
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
58
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: "<DOCKER_HOST>/v1.16/containers/scanning/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:01 GMT
78
+ - Fri, 05 Jun 2015 23:26:43 GMT
79
79
  Content-Length:
80
- - '28'
80
+ - '21'
81
81
  body:
82
82
  encoding: UTF-8
83
83
  string: |
84
- No such container: scanning
84
+ no such id: scanning
85
85
  http_version:
86
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
86
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
87
87
  - request:
88
88
  method: get
89
89
  uri: "<DOCKER_HOST>/v1.16/containers/scanning/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:01 GMT
106
+ - Fri, 05 Jun 2015 23:26:43 GMT
107
107
  Content-Length:
108
- - '28'
108
+ - '21'
109
109
  body:
110
110
  encoding: UTF-8
111
111
  string: |
112
- No such container: scanning
112
+ no such id: scanning
113
113
  http_version:
114
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
114
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
115
115
  - request:
116
116
  method: get
117
117
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:01 GMT
134
+ - Fri, 05 Jun 2015 23:26:43 GMT
135
135
  Content-Length:
136
- - '33'
136
+ - '26'
137
137
  body:
138
138
  encoding: UTF-8
139
139
  string: |
140
- No such container: uses_scanning
140
+ no such id: uses_scanning
141
141
  http_version:
142
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
142
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
143
143
  - request:
144
144
  method: get
145
145
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:01 GMT
162
+ - Fri, 05 Jun 2015 23:26:43 GMT
163
163
  Content-Length:
164
- - '33'
164
+ - '26'
165
165
  body:
166
166
  encoding: UTF-8
167
167
  string: |
168
- No such container: uses_scanning
168
+ no such id: uses_scanning
169
169
  http_version:
170
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
170
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
171
171
  - request:
172
172
  method: get
173
173
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:01 GMT
190
+ - Fri, 05 Jun 2015 23:26:43 GMT
191
191
  Content-Length:
192
- - '33'
192
+ - '26'
193
193
  body:
194
194
  encoding: UTF-8
195
195
  string: |
196
- No such container: uses_scanning
196
+ no such id: uses_scanning
197
197
  http_version:
198
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
198
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
199
199
  - request:
200
200
  method: get
201
201
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:01 GMT
218
+ - Fri, 05 Jun 2015 23:26:43 GMT
219
219
  Content-Length:
220
- - '33'
220
+ - '26'
221
221
  body:
222
222
  encoding: UTF-8
223
223
  string: |
224
- No such container: uses_scanning
224
+ no such id: uses_scanning
225
225
  http_version:
226
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
226
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
227
227
  - request:
228
228
  method: get
229
229
  uri: "<DOCKER_HOST>/v1.16/containers/some_ahole/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:01 GMT
246
+ - Fri, 05 Jun 2015 23:26:43 GMT
247
247
  Content-Length:
248
- - '30'
248
+ - '23'
249
249
  body:
250
250
  encoding: UTF-8
251
251
  string: |
252
- No such container: some_ahole
252
+ no such id: some_ahole
253
253
  http_version:
254
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
254
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
255
255
  - request:
256
256
  method: get
257
257
  uri: "<DOCKER_HOST>/v1.16/containers/some_ahole/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:01 GMT
274
+ - Fri, 05 Jun 2015 23:26:43 GMT
275
275
  Content-Length:
276
- - '30'
276
+ - '23'
277
277
  body:
278
278
  encoding: UTF-8
279
279
  string: |
280
- No such container: some_ahole
280
+ no such id: some_ahole
281
281
  http_version:
282
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
282
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
283
283
  - request:
284
284
  method: get
285
285
  uri: "<DOCKER_HOST>/v1.16/containers/some_ahole/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:01 GMT
302
+ - Fri, 05 Jun 2015 23:26:43 GMT
303
303
  Content-Length:
304
- - '30'
304
+ - '23'
305
305
  body:
306
306
  encoding: UTF-8
307
307
  string: |
308
- No such container: some_ahole
308
+ no such id: some_ahole
309
309
  http_version:
310
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
310
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
311
311
  - request:
312
312
  method: get
313
313
  uri: "<DOCKER_HOST>/v1.16/containers/some_ahole/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:01 GMT
330
+ - Fri, 05 Jun 2015 23:26:43 GMT
331
331
  Content-Length:
332
- - '30'
332
+ - '23'
333
333
  body:
334
334
  encoding: UTF-8
335
335
  string: |
336
- No such container: some_ahole
336
+ no such id: some_ahole
337
337
  http_version:
338
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
338
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
339
339
  - request:
340
340
  method: get
341
341
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:01 GMT
358
+ - Fri, 05 Jun 2015 23:26:43 GMT
359
359
  Content-Length:
360
- - '33'
360
+ - '26'
361
361
  body:
362
362
  encoding: UTF-8
363
363
  string: |
364
- No such container: uses_scanning
364
+ no such id: uses_scanning
365
365
  http_version:
366
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
366
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
367
367
  - request:
368
368
  method: get
369
369
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:01 GMT
386
+ - Fri, 05 Jun 2015 23:26:43 GMT
387
387
  Content-Length:
388
- - '33'
388
+ - '26'
389
389
  body:
390
390
  encoding: UTF-8
391
391
  string: |
392
- No such container: uses_scanning
392
+ no such id: uses_scanning
393
393
  http_version:
394
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
394
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
395
395
  - request:
396
396
  method: get
397
397
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:01 GMT
414
+ - Fri, 05 Jun 2015 23:26:43 GMT
415
415
  Content-Length:
416
- - '33'
416
+ - '26'
417
417
  body:
418
418
  encoding: UTF-8
419
419
  string: |
420
- No such container: uses_scanning
420
+ no such id: uses_scanning
421
421
  http_version:
422
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
422
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
423
423
  - request:
424
424
  method: get
425
425
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:01 GMT
442
+ - Fri, 05 Jun 2015 23:26:43 GMT
443
443
  Content-Length:
444
- - '33'
444
+ - '26'
445
445
  body:
446
446
  encoding: UTF-8
447
447
  string: |
448
- No such container: uses_scanning
448
+ no such id: uses_scanning
449
449
  http_version:
450
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
450
+ recorded_at: Fri, 05 Jun 2015 23:26:43 GMT
451
451
  - request:
452
452
  method: get
453
453
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
470
+ - Fri, 05 Jun 2015 23:26:44 GMT
471
471
  Content-Length:
472
- - '33'
472
+ - '26'
473
473
  body:
474
474
  encoding: UTF-8
475
475
  string: |
476
- No such container: uses_scanning
476
+ no such id: uses_scanning
477
477
  http_version:
478
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
478
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
479
479
  - request:
480
480
  method: get
481
481
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
498
+ - Fri, 05 Jun 2015 23:26:44 GMT
499
499
  Content-Length:
500
- - '33'
500
+ - '26'
501
501
  body:
502
502
  encoding: UTF-8
503
503
  string: |
504
- No such container: uses_scanning
504
+ no such id: uses_scanning
505
505
  http_version:
506
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
506
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
507
507
  - request:
508
508
  method: get
509
509
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
526
+ - Fri, 05 Jun 2015 23:26:44 GMT
527
527
  Content-Length:
528
- - '33'
528
+ - '26'
529
529
  body:
530
530
  encoding: UTF-8
531
531
  string: |
532
- No such container: uses_scanning
532
+ no such id: uses_scanning
533
533
  http_version:
534
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
534
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
535
535
  - request:
536
536
  method: get
537
537
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
554
+ - Fri, 05 Jun 2015 23:26:44 GMT
555
555
  Content-Length:
556
- - '33'
556
+ - '26'
557
557
  body:
558
558
  encoding: UTF-8
559
559
  string: |
560
- No such container: uses_scanning
560
+ no such id: uses_scanning
561
561
  http_version:
562
- recorded_at: Mon, 20 Apr 2015 23:29:01 GMT
562
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
563
563
  - request:
564
564
  method: get
565
565
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
582
+ - Fri, 05 Jun 2015 23:26:44 GMT
583
583
  Content-Length:
584
- - '33'
584
+ - '26'
585
585
  body:
586
586
  encoding: UTF-8
587
587
  string: |
588
- No such container: uses_scanning
588
+ no such id: uses_scanning
589
589
  http_version:
590
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
590
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
591
591
  - request:
592
592
  method: get
593
593
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
610
+ - Fri, 05 Jun 2015 23:26:44 GMT
611
611
  Content-Length:
612
- - '33'
612
+ - '26'
613
613
  body:
614
614
  encoding: UTF-8
615
615
  string: |
616
- No such container: uses_scanning
616
+ no such id: uses_scanning
617
617
  http_version:
618
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
618
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
619
619
  - request:
620
620
  method: get
621
621
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
638
+ - Fri, 05 Jun 2015 23:26:44 GMT
639
639
  Content-Length:
640
- - '33'
640
+ - '26'
641
641
  body:
642
642
  encoding: UTF-8
643
643
  string: |
644
- No such container: uses_scanning
644
+ no such id: uses_scanning
645
645
  http_version:
646
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
646
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
647
647
  - request:
648
648
  method: get
649
649
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
666
+ - Fri, 05 Jun 2015 23:26:44 GMT
667
667
  Content-Length:
668
- - '33'
668
+ - '26'
669
669
  body:
670
670
  encoding: UTF-8
671
671
  string: |
672
- No such container: uses_scanning
672
+ no such id: uses_scanning
673
673
  http_version:
674
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
674
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
675
675
  - request:
676
676
  method: get
677
677
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
694
+ - Fri, 05 Jun 2015 23:26:44 GMT
695
695
  Content-Length:
696
- - '33'
696
+ - '26'
697
697
  body:
698
698
  encoding: UTF-8
699
699
  string: |
700
- No such container: uses_scanning
700
+ no such id: uses_scanning
701
701
  http_version:
702
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
702
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
703
703
  - request:
704
704
  method: get
705
705
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
722
+ - Fri, 05 Jun 2015 23:26:44 GMT
723
723
  Content-Length:
724
- - '33'
724
+ - '26'
725
725
  body:
726
726
  encoding: UTF-8
727
727
  string: |
728
- No such container: uses_scanning
728
+ no such id: uses_scanning
729
729
  http_version:
730
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
730
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
731
731
  - request:
732
732
  method: get
733
733
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
750
+ - Fri, 05 Jun 2015 23:26:44 GMT
751
751
  Content-Length:
752
- - '33'
752
+ - '26'
753
753
  body:
754
754
  encoding: UTF-8
755
755
  string: |
756
- No such container: uses_scanning
756
+ no such id: uses_scanning
757
757
  http_version:
758
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
758
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
759
759
  - request:
760
760
  method: get
761
761
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
778
+ - Fri, 05 Jun 2015 23:26:44 GMT
779
779
  Content-Length:
780
- - '33'
780
+ - '26'
781
781
  body:
782
782
  encoding: UTF-8
783
783
  string: |
784
- No such container: uses_scanning
784
+ no such id: uses_scanning
785
785
  http_version:
786
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
786
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
787
787
  - request:
788
788
  method: get
789
789
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
806
+ - Fri, 05 Jun 2015 23:26:44 GMT
807
807
  Content-Length:
808
- - '33'
808
+ - '26'
809
809
  body:
810
810
  encoding: UTF-8
811
811
  string: |
812
- No such container: uses_scanning
812
+ no such id: uses_scanning
813
813
  http_version:
814
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
814
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
815
815
  - request:
816
816
  method: get
817
817
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
834
+ - Fri, 05 Jun 2015 23:26:44 GMT
835
835
  Content-Length:
836
- - '33'
836
+ - '26'
837
837
  body:
838
838
  encoding: UTF-8
839
839
  string: |
840
- No such container: uses_scanning
840
+ no such id: uses_scanning
841
841
  http_version:
842
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
842
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
843
843
  - request:
844
844
  method: get
845
845
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
862
+ - Fri, 05 Jun 2015 23:26:44 GMT
863
863
  Content-Length:
864
- - '33'
864
+ - '26'
865
865
  body:
866
866
  encoding: UTF-8
867
867
  string: |
868
- No such container: uses_scanning
868
+ no such id: uses_scanning
869
869
  http_version:
870
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
870
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
871
871
  - request:
872
872
  method: get
873
873
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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:02 GMT
890
+ - Fri, 05 Jun 2015 23:26:44 GMT
891
891
  Content-Length:
892
- - '33'
892
+ - '26'
893
893
  body:
894
894
  encoding: UTF-8
895
895
  string: |
896
- No such container: uses_scanning
896
+ no such id: uses_scanning
897
897
  http_version:
898
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
898
+ recorded_at: Fri, 05 Jun 2015 23:26:44 GMT
899
899
  - request:
900
900
  method: get
901
901
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/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,15 +915,15 @@ http_interactions:
915
915
  Content-Type:
916
916
  - text/plain; charset=utf-8
917
917
  Date:
918
- - Mon, 20 Apr 2015 23:29:03 GMT
918
+ - Fri, 05 Jun 2015 23:26:45 GMT
919
919
  Content-Length:
920
- - '33'
920
+ - '26'
921
921
  body:
922
922
  encoding: UTF-8
923
923
  string: |
924
- No such container: uses_scanning
924
+ no such id: uses_scanning
925
925
  http_version:
926
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
926
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
927
927
  - request:
928
928
  method: get
929
929
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -932,7 +932,7 @@ http_interactions:
932
932
  string: ''
933
933
  headers:
934
934
  User-Agent:
935
- - Swipely/Docker-API 1.20.0
935
+ - Swipely/Docker-API 1.21.4
936
936
  Content-Type:
937
937
  - text/plain
938
938
  response:
@@ -943,15 +943,15 @@ http_interactions:
943
943
  Content-Type:
944
944
  - text/plain; charset=utf-8
945
945
  Date:
946
- - Mon, 20 Apr 2015 23:29:03 GMT
946
+ - Fri, 05 Jun 2015 23:26:45 GMT
947
947
  Content-Length:
948
- - '33'
948
+ - '26'
949
949
  body:
950
950
  encoding: UTF-8
951
951
  string: |
952
- No such container: uses_scanning
952
+ no such id: uses_scanning
953
953
  http_version:
954
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
954
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
955
955
  - request:
956
956
  method: get
957
957
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -960,7 +960,7 @@ http_interactions:
960
960
  string: ''
961
961
  headers:
962
962
  User-Agent:
963
- - Swipely/Docker-API 1.20.0
963
+ - Swipely/Docker-API 1.21.4
964
964
  Content-Type:
965
965
  - text/plain
966
966
  response:
@@ -971,15 +971,15 @@ http_interactions:
971
971
  Content-Type:
972
972
  - text/plain; charset=utf-8
973
973
  Date:
974
- - Mon, 20 Apr 2015 23:29:03 GMT
974
+ - Fri, 05 Jun 2015 23:26:45 GMT
975
975
  Content-Length:
976
- - '33'
976
+ - '26'
977
977
  body:
978
978
  encoding: UTF-8
979
979
  string: |
980
- No such container: uses_scanning
980
+ no such id: uses_scanning
981
981
  http_version:
982
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
982
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
983
983
  - request:
984
984
  method: get
985
985
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -988,7 +988,7 @@ http_interactions:
988
988
  string: ''
989
989
  headers:
990
990
  User-Agent:
991
- - Swipely/Docker-API 1.20.0
991
+ - Swipely/Docker-API 1.21.4
992
992
  Content-Type:
993
993
  - text/plain
994
994
  response:
@@ -999,15 +999,15 @@ http_interactions:
999
999
  Content-Type:
1000
1000
  - text/plain; charset=utf-8
1001
1001
  Date:
1002
- - Mon, 20 Apr 2015 23:29:03 GMT
1002
+ - Fri, 05 Jun 2015 23:26:45 GMT
1003
1003
  Content-Length:
1004
- - '33'
1004
+ - '26'
1005
1005
  body:
1006
1006
  encoding: UTF-8
1007
1007
  string: |
1008
- No such container: uses_scanning
1008
+ no such id: uses_scanning
1009
1009
  http_version:
1010
- recorded_at: Mon, 20 Apr 2015 23:29:02 GMT
1010
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
1011
1011
  - request:
1012
1012
  method: get
1013
1013
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1016,7 +1016,7 @@ http_interactions:
1016
1016
  string: ''
1017
1017
  headers:
1018
1018
  User-Agent:
1019
- - Swipely/Docker-API 1.20.0
1019
+ - Swipely/Docker-API 1.21.4
1020
1020
  Content-Type:
1021
1021
  - text/plain
1022
1022
  response:
@@ -1027,15 +1027,15 @@ http_interactions:
1027
1027
  Content-Type:
1028
1028
  - text/plain; charset=utf-8
1029
1029
  Date:
1030
- - Mon, 20 Apr 2015 23:29:03 GMT
1030
+ - Fri, 05 Jun 2015 23:26:45 GMT
1031
1031
  Content-Length:
1032
- - '33'
1032
+ - '26'
1033
1033
  body:
1034
1034
  encoding: UTF-8
1035
1035
  string: |
1036
- No such container: uses_scanning
1036
+ no such id: uses_scanning
1037
1037
  http_version:
1038
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1038
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
1039
1039
  - request:
1040
1040
  method: get
1041
1041
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1044,7 +1044,7 @@ http_interactions:
1044
1044
  string: ''
1045
1045
  headers:
1046
1046
  User-Agent:
1047
- - Swipely/Docker-API 1.20.0
1047
+ - Swipely/Docker-API 1.21.4
1048
1048
  Content-Type:
1049
1049
  - text/plain
1050
1050
  response:
@@ -1055,15 +1055,15 @@ http_interactions:
1055
1055
  Content-Type:
1056
1056
  - text/plain; charset=utf-8
1057
1057
  Date:
1058
- - Mon, 20 Apr 2015 23:29:03 GMT
1058
+ - Fri, 05 Jun 2015 23:26:45 GMT
1059
1059
  Content-Length:
1060
- - '33'
1060
+ - '26'
1061
1061
  body:
1062
1062
  encoding: UTF-8
1063
1063
  string: |
1064
- No such container: uses_scanning
1064
+ no such id: uses_scanning
1065
1065
  http_version:
1066
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1066
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
1067
1067
  - request:
1068
1068
  method: get
1069
1069
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1072,7 +1072,7 @@ http_interactions:
1072
1072
  string: ''
1073
1073
  headers:
1074
1074
  User-Agent:
1075
- - Swipely/Docker-API 1.20.0
1075
+ - Swipely/Docker-API 1.21.4
1076
1076
  Content-Type:
1077
1077
  - text/plain
1078
1078
  response:
@@ -1083,15 +1083,15 @@ http_interactions:
1083
1083
  Content-Type:
1084
1084
  - text/plain; charset=utf-8
1085
1085
  Date:
1086
- - Mon, 20 Apr 2015 23:29:03 GMT
1086
+ - Fri, 05 Jun 2015 23:26:45 GMT
1087
1087
  Content-Length:
1088
- - '33'
1088
+ - '26'
1089
1089
  body:
1090
1090
  encoding: UTF-8
1091
1091
  string: |
1092
- No such container: uses_scanning
1092
+ no such id: uses_scanning
1093
1093
  http_version:
1094
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1094
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
1095
1095
  - request:
1096
1096
  method: get
1097
1097
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1100,7 +1100,7 @@ http_interactions:
1100
1100
  string: ''
1101
1101
  headers:
1102
1102
  User-Agent:
1103
- - Swipely/Docker-API 1.20.0
1103
+ - Swipely/Docker-API 1.21.4
1104
1104
  Content-Type:
1105
1105
  - text/plain
1106
1106
  response:
@@ -1111,15 +1111,15 @@ http_interactions:
1111
1111
  Content-Type:
1112
1112
  - text/plain; charset=utf-8
1113
1113
  Date:
1114
- - Mon, 20 Apr 2015 23:29:03 GMT
1114
+ - Fri, 05 Jun 2015 23:26:45 GMT
1115
1115
  Content-Length:
1116
- - '33'
1116
+ - '26'
1117
1117
  body:
1118
1118
  encoding: UTF-8
1119
1119
  string: |
1120
- No such container: uses_scanning
1120
+ no such id: uses_scanning
1121
1121
  http_version:
1122
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1122
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
1123
1123
  - request:
1124
1124
  method: get
1125
1125
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1128,7 +1128,7 @@ http_interactions:
1128
1128
  string: ''
1129
1129
  headers:
1130
1130
  User-Agent:
1131
- - Swipely/Docker-API 1.20.0
1131
+ - Swipely/Docker-API 1.21.4
1132
1132
  Content-Type:
1133
1133
  - text/plain
1134
1134
  response:
@@ -1139,15 +1139,15 @@ http_interactions:
1139
1139
  Content-Type:
1140
1140
  - text/plain; charset=utf-8
1141
1141
  Date:
1142
- - Mon, 20 Apr 2015 23:29:03 GMT
1142
+ - Fri, 05 Jun 2015 23:26:45 GMT
1143
1143
  Content-Length:
1144
- - '33'
1144
+ - '26'
1145
1145
  body:
1146
1146
  encoding: UTF-8
1147
1147
  string: |
1148
- No such container: uses_scanning
1148
+ no such id: uses_scanning
1149
1149
  http_version:
1150
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1150
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
1151
1151
  - request:
1152
1152
  method: get
1153
1153
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1156,7 +1156,7 @@ http_interactions:
1156
1156
  string: ''
1157
1157
  headers:
1158
1158
  User-Agent:
1159
- - Swipely/Docker-API 1.20.0
1159
+ - Swipely/Docker-API 1.21.4
1160
1160
  Content-Type:
1161
1161
  - text/plain
1162
1162
  response:
@@ -1167,15 +1167,15 @@ http_interactions:
1167
1167
  Content-Type:
1168
1168
  - text/plain; charset=utf-8
1169
1169
  Date:
1170
- - Mon, 20 Apr 2015 23:29:03 GMT
1170
+ - Fri, 05 Jun 2015 23:26:45 GMT
1171
1171
  Content-Length:
1172
- - '33'
1172
+ - '26'
1173
1173
  body:
1174
1174
  encoding: UTF-8
1175
1175
  string: |
1176
- No such container: uses_scanning
1176
+ no such id: uses_scanning
1177
1177
  http_version:
1178
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1178
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
1179
1179
  - request:
1180
1180
  method: get
1181
1181
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1184,7 +1184,7 @@ http_interactions:
1184
1184
  string: ''
1185
1185
  headers:
1186
1186
  User-Agent:
1187
- - Swipely/Docker-API 1.20.0
1187
+ - Swipely/Docker-API 1.21.4
1188
1188
  Content-Type:
1189
1189
  - text/plain
1190
1190
  response:
@@ -1195,15 +1195,15 @@ http_interactions:
1195
1195
  Content-Type:
1196
1196
  - text/plain; charset=utf-8
1197
1197
  Date:
1198
- - Mon, 20 Apr 2015 23:29:03 GMT
1198
+ - Fri, 05 Jun 2015 23:26:45 GMT
1199
1199
  Content-Length:
1200
- - '33'
1200
+ - '26'
1201
1201
  body:
1202
1202
  encoding: UTF-8
1203
1203
  string: |
1204
- No such container: uses_scanning
1204
+ no such id: uses_scanning
1205
1205
  http_version:
1206
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1206
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
1207
1207
  - request:
1208
1208
  method: get
1209
1209
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1212,7 +1212,7 @@ http_interactions:
1212
1212
  string: ''
1213
1213
  headers:
1214
1214
  User-Agent:
1215
- - Swipely/Docker-API 1.20.0
1215
+ - Swipely/Docker-API 1.21.4
1216
1216
  Content-Type:
1217
1217
  - text/plain
1218
1218
  response:
@@ -1223,15 +1223,15 @@ http_interactions:
1223
1223
  Content-Type:
1224
1224
  - text/plain; charset=utf-8
1225
1225
  Date:
1226
- - Mon, 20 Apr 2015 23:29:03 GMT
1226
+ - Fri, 05 Jun 2015 23:26:45 GMT
1227
1227
  Content-Length:
1228
- - '33'
1228
+ - '26'
1229
1229
  body:
1230
1230
  encoding: UTF-8
1231
1231
  string: |
1232
- No such container: uses_scanning
1232
+ no such id: uses_scanning
1233
1233
  http_version:
1234
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1234
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
1235
1235
  - request:
1236
1236
  method: get
1237
1237
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1240,7 +1240,7 @@ http_interactions:
1240
1240
  string: ''
1241
1241
  headers:
1242
1242
  User-Agent:
1243
- - Swipely/Docker-API 1.20.0
1243
+ - Swipely/Docker-API 1.21.4
1244
1244
  Content-Type:
1245
1245
  - text/plain
1246
1246
  response:
@@ -1251,15 +1251,15 @@ http_interactions:
1251
1251
  Content-Type:
1252
1252
  - text/plain; charset=utf-8
1253
1253
  Date:
1254
- - Mon, 20 Apr 2015 23:29:03 GMT
1254
+ - Fri, 05 Jun 2015 23:26:45 GMT
1255
1255
  Content-Length:
1256
- - '33'
1256
+ - '26'
1257
1257
  body:
1258
1258
  encoding: UTF-8
1259
1259
  string: |
1260
- No such container: uses_scanning
1260
+ no such id: uses_scanning
1261
1261
  http_version:
1262
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1262
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
1263
1263
  - request:
1264
1264
  method: get
1265
1265
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1268,7 +1268,7 @@ http_interactions:
1268
1268
  string: ''
1269
1269
  headers:
1270
1270
  User-Agent:
1271
- - Swipely/Docker-API 1.20.0
1271
+ - Swipely/Docker-API 1.21.4
1272
1272
  Content-Type:
1273
1273
  - text/plain
1274
1274
  response:
@@ -1279,15 +1279,15 @@ http_interactions:
1279
1279
  Content-Type:
1280
1280
  - text/plain; charset=utf-8
1281
1281
  Date:
1282
- - Mon, 20 Apr 2015 23:29:03 GMT
1282
+ - Fri, 05 Jun 2015 23:26:45 GMT
1283
1283
  Content-Length:
1284
- - '33'
1284
+ - '26'
1285
1285
  body:
1286
1286
  encoding: UTF-8
1287
1287
  string: |
1288
- No such container: uses_scanning
1288
+ no such id: uses_scanning
1289
1289
  http_version:
1290
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1290
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
1291
1291
  - request:
1292
1292
  method: get
1293
1293
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1296,7 +1296,7 @@ http_interactions:
1296
1296
  string: ''
1297
1297
  headers:
1298
1298
  User-Agent:
1299
- - Swipely/Docker-API 1.20.0
1299
+ - Swipely/Docker-API 1.21.4
1300
1300
  Content-Type:
1301
1301
  - text/plain
1302
1302
  response:
@@ -1307,15 +1307,15 @@ http_interactions:
1307
1307
  Content-Type:
1308
1308
  - text/plain; charset=utf-8
1309
1309
  Date:
1310
- - Mon, 20 Apr 2015 23:29:03 GMT
1310
+ - Fri, 05 Jun 2015 23:26:45 GMT
1311
1311
  Content-Length:
1312
- - '33'
1312
+ - '26'
1313
1313
  body:
1314
1314
  encoding: UTF-8
1315
1315
  string: |
1316
- No such container: uses_scanning
1316
+ no such id: uses_scanning
1317
1317
  http_version:
1318
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1318
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
1319
1319
  - request:
1320
1320
  method: get
1321
1321
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1324,7 +1324,7 @@ http_interactions:
1324
1324
  string: ''
1325
1325
  headers:
1326
1326
  User-Agent:
1327
- - Swipely/Docker-API 1.20.0
1327
+ - Swipely/Docker-API 1.21.4
1328
1328
  Content-Type:
1329
1329
  - text/plain
1330
1330
  response:
@@ -1335,15 +1335,15 @@ http_interactions:
1335
1335
  Content-Type:
1336
1336
  - text/plain; charset=utf-8
1337
1337
  Date:
1338
- - Mon, 20 Apr 2015 23:29:03 GMT
1338
+ - Fri, 05 Jun 2015 23:26:45 GMT
1339
1339
  Content-Length:
1340
- - '33'
1340
+ - '26'
1341
1341
  body:
1342
1342
  encoding: UTF-8
1343
1343
  string: |
1344
- No such container: uses_scanning
1344
+ no such id: uses_scanning
1345
1345
  http_version:
1346
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1346
+ recorded_at: Fri, 05 Jun 2015 23:26:45 GMT
1347
1347
  - request:
1348
1348
  method: get
1349
1349
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1352,7 +1352,7 @@ http_interactions:
1352
1352
  string: ''
1353
1353
  headers:
1354
1354
  User-Agent:
1355
- - Swipely/Docker-API 1.20.0
1355
+ - Swipely/Docker-API 1.21.4
1356
1356
  Content-Type:
1357
1357
  - text/plain
1358
1358
  response:
@@ -1363,15 +1363,15 @@ http_interactions:
1363
1363
  Content-Type:
1364
1364
  - text/plain; charset=utf-8
1365
1365
  Date:
1366
- - Mon, 20 Apr 2015 23:29:03 GMT
1366
+ - Fri, 05 Jun 2015 23:26:46 GMT
1367
1367
  Content-Length:
1368
- - '33'
1368
+ - '26'
1369
1369
  body:
1370
1370
  encoding: UTF-8
1371
1371
  string: |
1372
- No such container: uses_scanning
1372
+ no such id: uses_scanning
1373
1373
  http_version:
1374
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1374
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1375
1375
  - request:
1376
1376
  method: get
1377
1377
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1380,7 +1380,7 @@ http_interactions:
1380
1380
  string: ''
1381
1381
  headers:
1382
1382
  User-Agent:
1383
- - Swipely/Docker-API 1.20.0
1383
+ - Swipely/Docker-API 1.21.4
1384
1384
  Content-Type:
1385
1385
  - text/plain
1386
1386
  response:
@@ -1391,15 +1391,15 @@ http_interactions:
1391
1391
  Content-Type:
1392
1392
  - text/plain; charset=utf-8
1393
1393
  Date:
1394
- - Mon, 20 Apr 2015 23:29:04 GMT
1394
+ - Fri, 05 Jun 2015 23:26:46 GMT
1395
1395
  Content-Length:
1396
- - '33'
1396
+ - '26'
1397
1397
  body:
1398
1398
  encoding: UTF-8
1399
1399
  string: |
1400
- No such container: uses_scanning
1400
+ no such id: uses_scanning
1401
1401
  http_version:
1402
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1402
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1403
1403
  - request:
1404
1404
  method: get
1405
1405
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1408,7 +1408,7 @@ http_interactions:
1408
1408
  string: ''
1409
1409
  headers:
1410
1410
  User-Agent:
1411
- - Swipely/Docker-API 1.20.0
1411
+ - Swipely/Docker-API 1.21.4
1412
1412
  Content-Type:
1413
1413
  - text/plain
1414
1414
  response:
@@ -1419,15 +1419,15 @@ http_interactions:
1419
1419
  Content-Type:
1420
1420
  - text/plain; charset=utf-8
1421
1421
  Date:
1422
- - Mon, 20 Apr 2015 23:29:04 GMT
1422
+ - Fri, 05 Jun 2015 23:26:46 GMT
1423
1423
  Content-Length:
1424
- - '33'
1424
+ - '26'
1425
1425
  body:
1426
1426
  encoding: UTF-8
1427
1427
  string: |
1428
- No such container: uses_scanning
1428
+ no such id: uses_scanning
1429
1429
  http_version:
1430
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1430
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1431
1431
  - request:
1432
1432
  method: get
1433
1433
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1436,7 +1436,7 @@ http_interactions:
1436
1436
  string: ''
1437
1437
  headers:
1438
1438
  User-Agent:
1439
- - Swipely/Docker-API 1.20.0
1439
+ - Swipely/Docker-API 1.21.4
1440
1440
  Content-Type:
1441
1441
  - text/plain
1442
1442
  response:
@@ -1447,15 +1447,15 @@ http_interactions:
1447
1447
  Content-Type:
1448
1448
  - text/plain; charset=utf-8
1449
1449
  Date:
1450
- - Mon, 20 Apr 2015 23:29:04 GMT
1450
+ - Fri, 05 Jun 2015 23:26:46 GMT
1451
1451
  Content-Length:
1452
- - '33'
1452
+ - '26'
1453
1453
  body:
1454
1454
  encoding: UTF-8
1455
1455
  string: |
1456
- No such container: uses_scanning
1456
+ no such id: uses_scanning
1457
1457
  http_version:
1458
- recorded_at: Mon, 20 Apr 2015 23:29:03 GMT
1458
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1459
1459
  - request:
1460
1460
  method: get
1461
1461
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1464,7 +1464,7 @@ http_interactions:
1464
1464
  string: ''
1465
1465
  headers:
1466
1466
  User-Agent:
1467
- - Swipely/Docker-API 1.20.0
1467
+ - Swipely/Docker-API 1.21.4
1468
1468
  Content-Type:
1469
1469
  - text/plain
1470
1470
  response:
@@ -1475,15 +1475,15 @@ http_interactions:
1475
1475
  Content-Type:
1476
1476
  - text/plain; charset=utf-8
1477
1477
  Date:
1478
- - Mon, 20 Apr 2015 23:29:04 GMT
1478
+ - Fri, 05 Jun 2015 23:26:46 GMT
1479
1479
  Content-Length:
1480
- - '33'
1480
+ - '26'
1481
1481
  body:
1482
1482
  encoding: UTF-8
1483
1483
  string: |
1484
- No such container: uses_scanning
1484
+ no such id: uses_scanning
1485
1485
  http_version:
1486
- recorded_at: Mon, 20 Apr 2015 23:29:04 GMT
1486
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1487
1487
  - request:
1488
1488
  method: get
1489
1489
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1492,7 +1492,7 @@ http_interactions:
1492
1492
  string: ''
1493
1493
  headers:
1494
1494
  User-Agent:
1495
- - Swipely/Docker-API 1.20.0
1495
+ - Swipely/Docker-API 1.21.4
1496
1496
  Content-Type:
1497
1497
  - text/plain
1498
1498
  response:
@@ -1503,15 +1503,15 @@ http_interactions:
1503
1503
  Content-Type:
1504
1504
  - text/plain; charset=utf-8
1505
1505
  Date:
1506
- - Mon, 20 Apr 2015 23:29:04 GMT
1506
+ - Fri, 05 Jun 2015 23:26:46 GMT
1507
1507
  Content-Length:
1508
- - '33'
1508
+ - '26'
1509
1509
  body:
1510
1510
  encoding: UTF-8
1511
1511
  string: |
1512
- No such container: uses_scanning
1512
+ no such id: uses_scanning
1513
1513
  http_version:
1514
- recorded_at: Mon, 20 Apr 2015 23:29:04 GMT
1514
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1515
1515
  - request:
1516
1516
  method: get
1517
1517
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1520,7 +1520,7 @@ http_interactions:
1520
1520
  string: ''
1521
1521
  headers:
1522
1522
  User-Agent:
1523
- - Swipely/Docker-API 1.20.0
1523
+ - Swipely/Docker-API 1.21.4
1524
1524
  Content-Type:
1525
1525
  - text/plain
1526
1526
  response:
@@ -1531,15 +1531,15 @@ http_interactions:
1531
1531
  Content-Type:
1532
1532
  - text/plain; charset=utf-8
1533
1533
  Date:
1534
- - Mon, 20 Apr 2015 23:29:04 GMT
1534
+ - Fri, 05 Jun 2015 23:26:46 GMT
1535
1535
  Content-Length:
1536
- - '33'
1536
+ - '26'
1537
1537
  body:
1538
1538
  encoding: UTF-8
1539
1539
  string: |
1540
- No such container: uses_scanning
1540
+ no such id: uses_scanning
1541
1541
  http_version:
1542
- recorded_at: Mon, 20 Apr 2015 23:29:04 GMT
1542
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1543
1543
  - request:
1544
1544
  method: get
1545
1545
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1548,7 +1548,7 @@ http_interactions:
1548
1548
  string: ''
1549
1549
  headers:
1550
1550
  User-Agent:
1551
- - Swipely/Docker-API 1.20.0
1551
+ - Swipely/Docker-API 1.21.4
1552
1552
  Content-Type:
1553
1553
  - text/plain
1554
1554
  response:
@@ -1559,15 +1559,15 @@ http_interactions:
1559
1559
  Content-Type:
1560
1560
  - text/plain; charset=utf-8
1561
1561
  Date:
1562
- - Mon, 20 Apr 2015 23:29:04 GMT
1562
+ - Fri, 05 Jun 2015 23:26:46 GMT
1563
1563
  Content-Length:
1564
- - '33'
1564
+ - '26'
1565
1565
  body:
1566
1566
  encoding: UTF-8
1567
1567
  string: |
1568
- No such container: uses_scanning
1568
+ no such id: uses_scanning
1569
1569
  http_version:
1570
- recorded_at: Mon, 20 Apr 2015 23:29:04 GMT
1570
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1571
1571
  - request:
1572
1572
  method: get
1573
1573
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1576,7 +1576,7 @@ http_interactions:
1576
1576
  string: ''
1577
1577
  headers:
1578
1578
  User-Agent:
1579
- - Swipely/Docker-API 1.20.0
1579
+ - Swipely/Docker-API 1.21.4
1580
1580
  Content-Type:
1581
1581
  - text/plain
1582
1582
  response:
@@ -1587,15 +1587,15 @@ http_interactions:
1587
1587
  Content-Type:
1588
1588
  - text/plain; charset=utf-8
1589
1589
  Date:
1590
- - Mon, 20 Apr 2015 23:29:04 GMT
1590
+ - Fri, 05 Jun 2015 23:26:46 GMT
1591
1591
  Content-Length:
1592
- - '33'
1592
+ - '26'
1593
1593
  body:
1594
1594
  encoding: UTF-8
1595
1595
  string: |
1596
- No such container: uses_scanning
1596
+ no such id: uses_scanning
1597
1597
  http_version:
1598
- recorded_at: Mon, 20 Apr 2015 23:29:04 GMT
1598
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1599
1599
  - request:
1600
1600
  method: get
1601
1601
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1604,7 +1604,7 @@ http_interactions:
1604
1604
  string: ''
1605
1605
  headers:
1606
1606
  User-Agent:
1607
- - Swipely/Docker-API 1.20.0
1607
+ - Swipely/Docker-API 1.21.4
1608
1608
  Content-Type:
1609
1609
  - text/plain
1610
1610
  response:
@@ -1615,15 +1615,15 @@ http_interactions:
1615
1615
  Content-Type:
1616
1616
  - text/plain; charset=utf-8
1617
1617
  Date:
1618
- - Mon, 20 Apr 2015 23:29:04 GMT
1618
+ - Fri, 05 Jun 2015 23:26:46 GMT
1619
1619
  Content-Length:
1620
- - '33'
1620
+ - '26'
1621
1621
  body:
1622
1622
  encoding: UTF-8
1623
1623
  string: |
1624
- No such container: uses_scanning
1624
+ no such id: uses_scanning
1625
1625
  http_version:
1626
- recorded_at: Mon, 20 Apr 2015 23:29:04 GMT
1626
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1627
1627
  - request:
1628
1628
  method: get
1629
1629
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1632,7 +1632,7 @@ http_interactions:
1632
1632
  string: ''
1633
1633
  headers:
1634
1634
  User-Agent:
1635
- - Swipely/Docker-API 1.20.0
1635
+ - Swipely/Docker-API 1.21.4
1636
1636
  Content-Type:
1637
1637
  - text/plain
1638
1638
  response:
@@ -1643,15 +1643,15 @@ http_interactions:
1643
1643
  Content-Type:
1644
1644
  - text/plain; charset=utf-8
1645
1645
  Date:
1646
- - Mon, 20 Apr 2015 23:29:04 GMT
1646
+ - Fri, 05 Jun 2015 23:26:46 GMT
1647
1647
  Content-Length:
1648
- - '33'
1648
+ - '26'
1649
1649
  body:
1650
1650
  encoding: UTF-8
1651
1651
  string: |
1652
- No such container: uses_scanning
1652
+ no such id: uses_scanning
1653
1653
  http_version:
1654
- recorded_at: Mon, 20 Apr 2015 23:29:04 GMT
1654
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1655
1655
  - request:
1656
1656
  method: get
1657
1657
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1660,7 +1660,7 @@ http_interactions:
1660
1660
  string: ''
1661
1661
  headers:
1662
1662
  User-Agent:
1663
- - Swipely/Docker-API 1.20.0
1663
+ - Swipely/Docker-API 1.21.4
1664
1664
  Content-Type:
1665
1665
  - text/plain
1666
1666
  response:
@@ -1671,15 +1671,15 @@ http_interactions:
1671
1671
  Content-Type:
1672
1672
  - text/plain; charset=utf-8
1673
1673
  Date:
1674
- - Mon, 20 Apr 2015 23:29:04 GMT
1674
+ - Fri, 05 Jun 2015 23:26:46 GMT
1675
1675
  Content-Length:
1676
- - '33'
1676
+ - '26'
1677
1677
  body:
1678
1678
  encoding: UTF-8
1679
1679
  string: |
1680
- No such container: uses_scanning
1680
+ no such id: uses_scanning
1681
1681
  http_version:
1682
- recorded_at: Mon, 20 Apr 2015 23:29:04 GMT
1682
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1683
1683
  - request:
1684
1684
  method: get
1685
1685
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1688,7 +1688,231 @@ http_interactions:
1688
1688
  string: ''
1689
1689
  headers:
1690
1690
  User-Agent:
1691
- - Swipely/Docker-API 1.20.0
1691
+ - Swipely/Docker-API 1.21.4
1692
+ Content-Type:
1693
+ - text/plain
1694
+ response:
1695
+ status:
1696
+ code: 404
1697
+ message:
1698
+ headers:
1699
+ Content-Type:
1700
+ - text/plain; charset=utf-8
1701
+ Date:
1702
+ - Fri, 05 Jun 2015 23:26:46 GMT
1703
+ Content-Length:
1704
+ - '26'
1705
+ body:
1706
+ encoding: UTF-8
1707
+ string: |
1708
+ no such id: uses_scanning
1709
+ http_version:
1710
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1711
+ - request:
1712
+ method: get
1713
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
1714
+ body:
1715
+ encoding: US-ASCII
1716
+ string: ''
1717
+ headers:
1718
+ User-Agent:
1719
+ - Swipely/Docker-API 1.21.4
1720
+ Content-Type:
1721
+ - text/plain
1722
+ response:
1723
+ status:
1724
+ code: 404
1725
+ message:
1726
+ headers:
1727
+ Content-Type:
1728
+ - text/plain; charset=utf-8
1729
+ Date:
1730
+ - Fri, 05 Jun 2015 23:26:46 GMT
1731
+ Content-Length:
1732
+ - '26'
1733
+ body:
1734
+ encoding: UTF-8
1735
+ string: |
1736
+ no such id: uses_scanning
1737
+ http_version:
1738
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1739
+ - request:
1740
+ method: get
1741
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
1742
+ body:
1743
+ encoding: US-ASCII
1744
+ string: ''
1745
+ headers:
1746
+ User-Agent:
1747
+ - Swipely/Docker-API 1.21.4
1748
+ Content-Type:
1749
+ - text/plain
1750
+ response:
1751
+ status:
1752
+ code: 404
1753
+ message:
1754
+ headers:
1755
+ Content-Type:
1756
+ - text/plain; charset=utf-8
1757
+ Date:
1758
+ - Fri, 05 Jun 2015 23:26:46 GMT
1759
+ Content-Length:
1760
+ - '26'
1761
+ body:
1762
+ encoding: UTF-8
1763
+ string: |
1764
+ no such id: uses_scanning
1765
+ http_version:
1766
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1767
+ - request:
1768
+ method: get
1769
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
1770
+ body:
1771
+ encoding: US-ASCII
1772
+ string: ''
1773
+ headers:
1774
+ User-Agent:
1775
+ - Swipely/Docker-API 1.21.4
1776
+ Content-Type:
1777
+ - text/plain
1778
+ response:
1779
+ status:
1780
+ code: 404
1781
+ message:
1782
+ headers:
1783
+ Content-Type:
1784
+ - text/plain; charset=utf-8
1785
+ Date:
1786
+ - Fri, 05 Jun 2015 23:26:46 GMT
1787
+ Content-Length:
1788
+ - '26'
1789
+ body:
1790
+ encoding: UTF-8
1791
+ string: |
1792
+ no such id: uses_scanning
1793
+ http_version:
1794
+ recorded_at: Fri, 05 Jun 2015 23:26:46 GMT
1795
+ - request:
1796
+ method: get
1797
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
1798
+ body:
1799
+ encoding: US-ASCII
1800
+ string: ''
1801
+ headers:
1802
+ User-Agent:
1803
+ - Swipely/Docker-API 1.21.4
1804
+ Content-Type:
1805
+ - text/plain
1806
+ response:
1807
+ status:
1808
+ code: 404
1809
+ message:
1810
+ headers:
1811
+ Content-Type:
1812
+ - text/plain; charset=utf-8
1813
+ Date:
1814
+ - Fri, 05 Jun 2015 23:26:47 GMT
1815
+ Content-Length:
1816
+ - '26'
1817
+ body:
1818
+ encoding: UTF-8
1819
+ string: |
1820
+ no such id: uses_scanning
1821
+ http_version:
1822
+ recorded_at: Fri, 05 Jun 2015 23:26:47 GMT
1823
+ - request:
1824
+ method: get
1825
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
1826
+ body:
1827
+ encoding: US-ASCII
1828
+ string: ''
1829
+ headers:
1830
+ User-Agent:
1831
+ - Swipely/Docker-API 1.21.4
1832
+ Content-Type:
1833
+ - text/plain
1834
+ response:
1835
+ status:
1836
+ code: 404
1837
+ message:
1838
+ headers:
1839
+ Content-Type:
1840
+ - text/plain; charset=utf-8
1841
+ Date:
1842
+ - Fri, 05 Jun 2015 23:26:47 GMT
1843
+ Content-Length:
1844
+ - '26'
1845
+ body:
1846
+ encoding: UTF-8
1847
+ string: |
1848
+ no such id: uses_scanning
1849
+ http_version:
1850
+ recorded_at: Fri, 05 Jun 2015 23:26:47 GMT
1851
+ - request:
1852
+ method: get
1853
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
1854
+ body:
1855
+ encoding: US-ASCII
1856
+ string: ''
1857
+ headers:
1858
+ User-Agent:
1859
+ - Swipely/Docker-API 1.21.4
1860
+ Content-Type:
1861
+ - text/plain
1862
+ response:
1863
+ status:
1864
+ code: 404
1865
+ message:
1866
+ headers:
1867
+ Content-Type:
1868
+ - text/plain; charset=utf-8
1869
+ Date:
1870
+ - Fri, 05 Jun 2015 23:26:47 GMT
1871
+ Content-Length:
1872
+ - '26'
1873
+ body:
1874
+ encoding: UTF-8
1875
+ string: |
1876
+ no such id: uses_scanning
1877
+ http_version:
1878
+ recorded_at: Fri, 05 Jun 2015 23:26:47 GMT
1879
+ - request:
1880
+ method: get
1881
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
1882
+ body:
1883
+ encoding: US-ASCII
1884
+ string: ''
1885
+ headers:
1886
+ User-Agent:
1887
+ - Swipely/Docker-API 1.21.4
1888
+ Content-Type:
1889
+ - text/plain
1890
+ response:
1891
+ status:
1892
+ code: 404
1893
+ message:
1894
+ headers:
1895
+ Content-Type:
1896
+ - text/plain; charset=utf-8
1897
+ Date:
1898
+ - Fri, 05 Jun 2015 23:26:47 GMT
1899
+ Content-Length:
1900
+ - '26'
1901
+ body:
1902
+ encoding: UTF-8
1903
+ string: |
1904
+ no such id: uses_scanning
1905
+ http_version:
1906
+ recorded_at: Fri, 05 Jun 2015 23:26:47 GMT
1907
+ - request:
1908
+ method: get
1909
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
1910
+ body:
1911
+ encoding: US-ASCII
1912
+ string: ''
1913
+ headers:
1914
+ User-Agent:
1915
+ - Swipely/Docker-API 1.21.4
1692
1916
  Content-Type:
1693
1917
  - text/plain
1694
1918
  response:
@@ -1699,15 +1923,15 @@ http_interactions:
1699
1923
  Content-Type:
1700
1924
  - application/json
1701
1925
  Date:
1702
- - Mon, 20 Apr 2015 23:29:04 GMT
1926
+ - Fri, 05 Jun 2015 23:26:47 GMT
1703
1927
  Content-Length:
1704
- - '1794'
1928
+ - '1972'
1705
1929
  body:
1706
1930
  encoding: UTF-8
1707
1931
  string: |
1708
- {"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":"c43cacc37e52","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:04.681877953Z","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":"c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.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":{}}
1932
+ {"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":"d594d1699b39","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:26:47.238149227Z","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":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.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}
1709
1933
  http_version:
1710
- recorded_at: Mon, 20 Apr 2015 23:29:04 GMT
1934
+ recorded_at: Fri, 05 Jun 2015 23:26:47 GMT
1711
1935
  - request:
1712
1936
  method: get
1713
1937
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1716,7 +1940,7 @@ http_interactions:
1716
1940
  string: ''
1717
1941
  headers:
1718
1942
  User-Agent:
1719
- - Swipely/Docker-API 1.20.0
1943
+ - Swipely/Docker-API 1.21.4
1720
1944
  Content-Type:
1721
1945
  - text/plain
1722
1946
  response:
@@ -1727,13 +1951,13 @@ http_interactions:
1727
1951
  Content-Type:
1728
1952
  - application/json
1729
1953
  Date:
1730
- - Mon, 20 Apr 2015 23:29:05 GMT
1954
+ - Fri, 05 Jun 2015 23:26:47 GMT
1731
1955
  body:
1732
1956
  encoding: UTF-8
1733
1957
  string: |
1734
- {"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":"c43cacc37e52","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:04.681877953Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":["/scanning:/uses_scanning/scanning"],"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/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hosts","Id":"c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.214","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7d6","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:d6","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13619,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:29:05.239312451Z"},"Volumes":{},"VolumesRW":{}}
1958
+ {"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":"d594d1699b39","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:26:47.238149227Z","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":["/scanning:/uses_scanning/scanning"],"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/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.89","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:159","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:59","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23862,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
1735
1959
  http_version:
1736
- recorded_at: Mon, 20 Apr 2015 23:29:05 GMT
1960
+ recorded_at: Fri, 05 Jun 2015 23:26:47 GMT
1737
1961
  - request:
1738
1962
  method: get
1739
1963
  uri: "<DOCKER_HOST>/v1.16/containers/scanning/json"
@@ -1742,7 +1966,7 @@ http_interactions:
1742
1966
  string: ''
1743
1967
  headers:
1744
1968
  User-Agent:
1745
- - Swipely/Docker-API 1.20.0
1969
+ - Swipely/Docker-API 1.21.4
1746
1970
  Content-Type:
1747
1971
  - text/plain
1748
1972
  response:
@@ -1753,13 +1977,13 @@ http_interactions:
1753
1977
  Content-Type:
1754
1978
  - application/json
1755
1979
  Date:
1756
- - Mon, 20 Apr 2015 23:29:05 GMT
1980
+ - Fri, 05 Jun 2015 23:26:47 GMT
1757
1981
  body:
1758
1982
  encoding: UTF-8
1759
1983
  string: |
1760
- {"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":"79f1615a3907","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:03.787710378Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":["/some_ahole:/scanning/some_ahole"],"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/79f1615a39078cb8918195f7aa78518f80b831f7adf35e9a148a6bb8a3fc8900/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/79f1615a39078cb8918195f7aa78518f80b831f7adf35e9a148a6bb8a3fc8900/hosts","Id":"79f1615a39078cb8918195f7aa78518f80b831f7adf35e9a148a6bb8a3fc8900","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/scanning","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.213","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7d5","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:d5","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/79f1615a39078cb8918195f7aa78518f80b831f7adf35e9a148a6bb8a3fc8900/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13606,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:29:04.23265595Z"},"Volumes":{},"VolumesRW":{}}
1984
+ {"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":"6990d0e0dcce","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:26:46.118269822Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["db597bd73caff4fecccc43511caf3ae328a59fbb702c91438ad9db1615933d24"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":["/some_ahole:/scanning/some_ahole"],"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/6990d0e0dcce32f8c5d823f7d4cd27b3f326b20ff33cbccc7546de75d2796bed/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/6990d0e0dcce32f8c5d823f7d4cd27b3f326b20ff33cbccc7546de75d2796bed/hosts","Id":"6990d0e0dcce32f8c5d823f7d4cd27b3f326b20ff33cbccc7546de75d2796bed","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/6990d0e0dcce32f8c5d823f7d4cd27b3f326b20ff33cbccc7546de75d2796bed/6990d0e0dcce32f8c5d823f7d4cd27b3f326b20ff33cbccc7546de75d2796bed-json.log","MountLabel":"","Name":"/scanning","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.88","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:158","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:58","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/6990d0e0dcce32f8c5d823f7d4cd27b3f326b20ff33cbccc7546de75d2796bed/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23838,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:46.493954571Z"},"Volumes":{},"VolumesRW":{}}
1761
1985
  http_version:
1762
- recorded_at: Mon, 20 Apr 2015 23:29:05 GMT
1986
+ recorded_at: Fri, 05 Jun 2015 23:26:47 GMT
1763
1987
  - request:
1764
1988
  method: get
1765
1989
  uri: "<DOCKER_HOST>/v1.16/containers/some_ahole/json"
@@ -1768,7 +1992,59 @@ http_interactions:
1768
1992
  string: ''
1769
1993
  headers:
1770
1994
  User-Agent:
1771
- - Swipely/Docker-API 1.20.0
1995
+ - Swipely/Docker-API 1.21.4
1996
+ Content-Type:
1997
+ - text/plain
1998
+ response:
1999
+ status:
2000
+ code: 200
2001
+ message:
2002
+ headers:
2003
+ Content-Type:
2004
+ - application/json
2005
+ Date:
2006
+ - Fri, 05 Jun 2015 23:26:47 GMT
2007
+ body:
2008
+ encoding: UTF-8
2009
+ string: |
2010
+ {"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":"bc5b0db727ae","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:26:44.93719718Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["bdd71acc4408e34e633cdd859dc65342e54361640e291fbdc6734487b9df4488"],"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/bc5b0db727ae838cc3d979710e1c86867e0019a59ba011f099cfeffcd7015b3d/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/bc5b0db727ae838cc3d979710e1c86867e0019a59ba011f099cfeffcd7015b3d/hosts","Id":"bc5b0db727ae838cc3d979710e1c86867e0019a59ba011f099cfeffcd7015b3d","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/bc5b0db727ae838cc3d979710e1c86867e0019a59ba011f099cfeffcd7015b3d/bc5b0db727ae838cc3d979710e1c86867e0019a59ba011f099cfeffcd7015b3d-json.log","MountLabel":"","Name":"/some_ahole","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.87","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:157","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:57","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/bc5b0db727ae838cc3d979710e1c86867e0019a59ba011f099cfeffcd7015b3d/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23822,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:45.32376872Z"},"Volumes":{},"VolumesRW":{}}
2011
+ http_version:
2012
+ recorded_at: Fri, 05 Jun 2015 23:26:47 GMT
2013
+ - request:
2014
+ method: get
2015
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
2016
+ body:
2017
+ encoding: US-ASCII
2018
+ string: ''
2019
+ headers:
2020
+ User-Agent:
2021
+ - Swipely/Docker-API 1.21.4
2022
+ Content-Type:
2023
+ - text/plain
2024
+ response:
2025
+ status:
2026
+ code: 200
2027
+ message:
2028
+ headers:
2029
+ Content-Type:
2030
+ - application/json
2031
+ Date:
2032
+ - Fri, 05 Jun 2015 23:26:47 GMT
2033
+ body:
2034
+ encoding: UTF-8
2035
+ string: |
2036
+ {"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":"d594d1699b39","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:26:47.238149227Z","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":["/scanning:/uses_scanning/scanning"],"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/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.89","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:159","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:59","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23862,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
2037
+ http_version:
2038
+ recorded_at: Fri, 05 Jun 2015 23:26:47 GMT
2039
+ - request:
2040
+ method: get
2041
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
2042
+ body:
2043
+ encoding: US-ASCII
2044
+ string: ''
2045
+ headers:
2046
+ User-Agent:
2047
+ - Swipely/Docker-API 1.21.4
1772
2048
  Content-Type:
1773
2049
  - text/plain
1774
2050
  response:
@@ -1779,13 +2055,13 @@ http_interactions:
1779
2055
  Content-Type:
1780
2056
  - application/json
1781
2057
  Date:
1782
- - Mon, 20 Apr 2015 23:29:05 GMT
2058
+ - Fri, 05 Jun 2015 23:26:48 GMT
1783
2059
  body:
1784
2060
  encoding: UTF-8
1785
2061
  string: |
1786
- {"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":"44330eda042f","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:02.912521307Z","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/44330eda042f9be88cd7acc32657fdb2df98979376ba689a15851aba494d0303/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/44330eda042f9be88cd7acc32657fdb2df98979376ba689a15851aba494d0303/hosts","Id":"44330eda042f9be88cd7acc32657fdb2df98979376ba689a15851aba494d0303","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/some_ahole","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.212","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7d4","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:d4","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/44330eda042f9be88cd7acc32657fdb2df98979376ba689a15851aba494d0303/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13597,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:29:03.362629435Z"},"Volumes":{},"VolumesRW":{}}
2062
+ {"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":"d594d1699b39","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:26:47.238149227Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["d3f448e468b8a4665c56010ec0ae7fe8fb157af5e5b7cfe993496b35fca3ea0b"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":["/scanning:/uses_scanning/scanning"],"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/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.89","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:159","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:59","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23862,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
1787
2063
  http_version:
1788
- recorded_at: Mon, 20 Apr 2015 23:29:05 GMT
2064
+ recorded_at: Fri, 05 Jun 2015 23:26:48 GMT
1789
2065
  - request:
1790
2066
  method: get
1791
2067
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1794,7 +2070,7 @@ http_interactions:
1794
2070
  string: ''
1795
2071
  headers:
1796
2072
  User-Agent:
1797
- - Swipely/Docker-API 1.20.0
2073
+ - Swipely/Docker-API 1.21.4
1798
2074
  Content-Type:
1799
2075
  - text/plain
1800
2076
  response:
@@ -1805,13 +2081,13 @@ http_interactions:
1805
2081
  Content-Type:
1806
2082
  - application/json
1807
2083
  Date:
1808
- - Mon, 20 Apr 2015 23:29:05 GMT
2084
+ - Fri, 05 Jun 2015 23:26:48 GMT
1809
2085
  body:
1810
2086
  encoding: UTF-8
1811
2087
  string: |
1812
- {"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":"c43cacc37e52","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:04.681877953Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":["/scanning:/uses_scanning/scanning"],"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/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hosts","Id":"c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.214","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7d6","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:d6","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13619,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:29:05.239312451Z"},"Volumes":{},"VolumesRW":{}}
2088
+ {"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":"d594d1699b39","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:26:47.238149227Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["d3f448e468b8a4665c56010ec0ae7fe8fb157af5e5b7cfe993496b35fca3ea0b"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":["/scanning:/uses_scanning/scanning"],"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/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.89","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:159","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:59","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23862,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
1813
2089
  http_version:
1814
- recorded_at: Mon, 20 Apr 2015 23:29:05 GMT
2090
+ recorded_at: Fri, 05 Jun 2015 23:26:48 GMT
1815
2091
  - request:
1816
2092
  method: get
1817
2093
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1820,7 +2096,7 @@ http_interactions:
1820
2096
  string: ''
1821
2097
  headers:
1822
2098
  User-Agent:
1823
- - Swipely/Docker-API 1.20.0
2099
+ - Swipely/Docker-API 1.21.4
1824
2100
  Content-Type:
1825
2101
  - text/plain
1826
2102
  response:
@@ -1831,13 +2107,13 @@ http_interactions:
1831
2107
  Content-Type:
1832
2108
  - application/json
1833
2109
  Date:
1834
- - Mon, 20 Apr 2015 23:29:05 GMT
2110
+ - Fri, 05 Jun 2015 23:26:48 GMT
1835
2111
  body:
1836
2112
  encoding: UTF-8
1837
2113
  string: |
1838
- {"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":"c43cacc37e52","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:04.681877953Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":["/scanning:/uses_scanning/scanning"],"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/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hosts","Id":"c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.214","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7d6","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:d6","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13619,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:29:05.239312451Z"},"Volumes":{},"VolumesRW":{}}
2114
+ {"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":"d594d1699b39","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:26:47.238149227Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["d3f448e468b8a4665c56010ec0ae7fe8fb157af5e5b7cfe993496b35fca3ea0b"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":["/scanning:/uses_scanning/scanning"],"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/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.89","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:159","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:59","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23862,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
1839
2115
  http_version:
1840
- recorded_at: Mon, 20 Apr 2015 23:29:05 GMT
2116
+ recorded_at: Fri, 05 Jun 2015 23:26:48 GMT
1841
2117
  - request:
1842
2118
  method: get
1843
2119
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1846,7 +2122,7 @@ http_interactions:
1846
2122
  string: ''
1847
2123
  headers:
1848
2124
  User-Agent:
1849
- - Swipely/Docker-API 1.20.0
2125
+ - Swipely/Docker-API 1.21.4
1850
2126
  Content-Type:
1851
2127
  - text/plain
1852
2128
  response:
@@ -1857,13 +2133,13 @@ http_interactions:
1857
2133
  Content-Type:
1858
2134
  - application/json
1859
2135
  Date:
1860
- - Mon, 20 Apr 2015 23:29:05 GMT
2136
+ - Fri, 05 Jun 2015 23:26:48 GMT
1861
2137
  body:
1862
2138
  encoding: UTF-8
1863
2139
  string: |
1864
- {"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":"c43cacc37e52","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:04.681877953Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":["/scanning:/uses_scanning/scanning"],"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/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hosts","Id":"c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:29:05.696949288Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:29:05.239312451Z"},"Volumes":{},"VolumesRW":{}}
2140
+ {"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":"d594d1699b39","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:26:47.238149227Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["d3f448e468b8a4665c56010ec0ae7fe8fb157af5e5b7cfe993496b35fca3ea0b"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":["/scanning:/uses_scanning/scanning"],"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/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.89","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:159","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:59","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23862,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
1865
2141
  http_version:
1866
- recorded_at: Mon, 20 Apr 2015 23:29:05 GMT
2142
+ recorded_at: Fri, 05 Jun 2015 23:26:48 GMT
1867
2143
  - request:
1868
2144
  method: get
1869
2145
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1872,7 +2148,7 @@ http_interactions:
1872
2148
  string: ''
1873
2149
  headers:
1874
2150
  User-Agent:
1875
- - Swipely/Docker-API 1.20.0
2151
+ - Swipely/Docker-API 1.21.4
1876
2152
  Content-Type:
1877
2153
  - text/plain
1878
2154
  response:
@@ -1883,13 +2159,13 @@ http_interactions:
1883
2159
  Content-Type:
1884
2160
  - application/json
1885
2161
  Date:
1886
- - Mon, 20 Apr 2015 23:29:05 GMT
2162
+ - Fri, 05 Jun 2015 23:26:48 GMT
1887
2163
  body:
1888
2164
  encoding: UTF-8
1889
2165
  string: |
1890
- {"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":"c43cacc37e52","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:04.681877953Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":["/scanning:/uses_scanning/scanning"],"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/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hosts","Id":"c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:29:05.696949288Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:29:05.239312451Z"},"Volumes":{},"VolumesRW":{}}
2166
+ {"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":"d594d1699b39","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:26:47.238149227Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["d3f448e468b8a4665c56010ec0ae7fe8fb157af5e5b7cfe993496b35fca3ea0b"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":["/scanning:/uses_scanning/scanning"],"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/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.89","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:159","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:59","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23862,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
1891
2167
  http_version:
1892
- recorded_at: Mon, 20 Apr 2015 23:29:05 GMT
2168
+ recorded_at: Fri, 05 Jun 2015 23:26:48 GMT
1893
2169
  - request:
1894
2170
  method: get
1895
2171
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1898,7 +2174,7 @@ http_interactions:
1898
2174
  string: ''
1899
2175
  headers:
1900
2176
  User-Agent:
1901
- - Swipely/Docker-API 1.20.0
2177
+ - Swipely/Docker-API 1.21.4
1902
2178
  Content-Type:
1903
2179
  - text/plain
1904
2180
  response:
@@ -1909,13 +2185,13 @@ http_interactions:
1909
2185
  Content-Type:
1910
2186
  - application/json
1911
2187
  Date:
1912
- - Mon, 20 Apr 2015 23:29:06 GMT
2188
+ - Fri, 05 Jun 2015 23:26:48 GMT
1913
2189
  body:
1914
2190
  encoding: UTF-8
1915
2191
  string: |
1916
- {"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":"c43cacc37e52","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:04.681877953Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":["/scanning:/uses_scanning/scanning"],"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/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hosts","Id":"c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:29:05.696949288Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:29:05.239312451Z"},"Volumes":{},"VolumesRW":{}}
2192
+ {"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":"d594d1699b39","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:26:47.238149227Z","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":["/scanning:/uses_scanning/scanning"],"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/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:26:48.74195241Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
1917
2193
  http_version:
1918
- recorded_at: Mon, 20 Apr 2015 23:29:05 GMT
2194
+ recorded_at: Fri, 05 Jun 2015 23:26:48 GMT
1919
2195
  - request:
1920
2196
  method: get
1921
2197
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1924,7 +2200,7 @@ http_interactions:
1924
2200
  string: ''
1925
2201
  headers:
1926
2202
  User-Agent:
1927
- - Swipely/Docker-API 1.20.0
2203
+ - Swipely/Docker-API 1.21.4
1928
2204
  Content-Type:
1929
2205
  - text/plain
1930
2206
  response:
@@ -1935,13 +2211,13 @@ http_interactions:
1935
2211
  Content-Type:
1936
2212
  - application/json
1937
2213
  Date:
1938
- - Mon, 20 Apr 2015 23:29:06 GMT
2214
+ - Fri, 05 Jun 2015 23:26:48 GMT
1939
2215
  body:
1940
2216
  encoding: UTF-8
1941
2217
  string: |
1942
- {"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":"c43cacc37e52","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:04.681877953Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":["/scanning:/uses_scanning/scanning"],"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/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hosts","Id":"c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:29:05.696949288Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:29:05.239312451Z"},"Volumes":{},"VolumesRW":{}}
2218
+ {"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":"d594d1699b39","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:26:47.238149227Z","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":["/scanning:/uses_scanning/scanning"],"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/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:26:48.74195241Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
1943
2219
  http_version:
1944
- recorded_at: Mon, 20 Apr 2015 23:29:05 GMT
2220
+ recorded_at: Fri, 05 Jun 2015 23:26:48 GMT
1945
2221
  - request:
1946
2222
  method: get
1947
2223
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1950,7 +2226,7 @@ http_interactions:
1950
2226
  string: ''
1951
2227
  headers:
1952
2228
  User-Agent:
1953
- - Swipely/Docker-API 1.20.0
2229
+ - Swipely/Docker-API 1.21.4
1954
2230
  Content-Type:
1955
2231
  - text/plain
1956
2232
  response:
@@ -1961,13 +2237,13 @@ http_interactions:
1961
2237
  Content-Type:
1962
2238
  - application/json
1963
2239
  Date:
1964
- - Mon, 20 Apr 2015 23:29:06 GMT
2240
+ - Fri, 05 Jun 2015 23:26:49 GMT
1965
2241
  body:
1966
2242
  encoding: UTF-8
1967
2243
  string: |
1968
- {"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":"c43cacc37e52","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:04.681877953Z","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/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hosts","Id":"c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:29:05.696949288Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:29:05.239312451Z"},"Volumes":{},"VolumesRW":{}}
2244
+ {"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":"d594d1699b39","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:26:47.238149227Z","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":["/scanning:/uses_scanning/scanning"],"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/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:26:48.74195241Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
1969
2245
  http_version:
1970
- recorded_at: Mon, 20 Apr 2015 23:29:06 GMT
2246
+ recorded_at: Fri, 05 Jun 2015 23:26:49 GMT
1971
2247
  - request:
1972
2248
  method: get
1973
2249
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -1976,7 +2252,7 @@ http_interactions:
1976
2252
  string: ''
1977
2253
  headers:
1978
2254
  User-Agent:
1979
- - Swipely/Docker-API 1.20.0
2255
+ - Swipely/Docker-API 1.21.4
1980
2256
  Content-Type:
1981
2257
  - text/plain
1982
2258
  response:
@@ -1987,13 +2263,13 @@ http_interactions:
1987
2263
  Content-Type:
1988
2264
  - application/json
1989
2265
  Date:
1990
- - Mon, 20 Apr 2015 23:29:06 GMT
2266
+ - Fri, 05 Jun 2015 23:26:49 GMT
1991
2267
  body:
1992
2268
  encoding: UTF-8
1993
2269
  string: |
1994
- {"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":"c43cacc37e52","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:04.681877953Z","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/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hosts","Id":"c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:29:05.696949288Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:29:05.239312451Z"},"Volumes":{},"VolumesRW":{}}
2270
+ {"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":"d594d1699b39","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:26:47.238149227Z","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":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:26:48.74195241Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
1995
2271
  http_version:
1996
- recorded_at: Mon, 20 Apr 2015 23:29:06 GMT
2272
+ recorded_at: Fri, 05 Jun 2015 23:26:49 GMT
1997
2273
  - request:
1998
2274
  method: get
1999
2275
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -2002,7 +2278,7 @@ http_interactions:
2002
2278
  string: ''
2003
2279
  headers:
2004
2280
  User-Agent:
2005
- - Swipely/Docker-API 1.20.0
2281
+ - Swipely/Docker-API 1.21.4
2006
2282
  Content-Type:
2007
2283
  - text/plain
2008
2284
  response:
@@ -2013,13 +2289,13 @@ http_interactions:
2013
2289
  Content-Type:
2014
2290
  - application/json
2015
2291
  Date:
2016
- - Mon, 20 Apr 2015 23:29:06 GMT
2292
+ - Fri, 05 Jun 2015 23:26:49 GMT
2017
2293
  body:
2018
2294
  encoding: UTF-8
2019
2295
  string: |
2020
- {"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":"c43cacc37e52","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:04.681877953Z","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/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hosts","Id":"c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:29:05.696949288Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:29:05.239312451Z"},"Volumes":{},"VolumesRW":{}}
2296
+ {"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":"d594d1699b39","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:26:47.238149227Z","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":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:26:48.74195241Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
2021
2297
  http_version:
2022
- recorded_at: Mon, 20 Apr 2015 23:29:06 GMT
2298
+ recorded_at: Fri, 05 Jun 2015 23:26:49 GMT
2023
2299
  - request:
2024
2300
  method: get
2025
2301
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -2028,7 +2304,7 @@ http_interactions:
2028
2304
  string: ''
2029
2305
  headers:
2030
2306
  User-Agent:
2031
- - Swipely/Docker-API 1.20.0
2307
+ - Swipely/Docker-API 1.21.4
2032
2308
  Content-Type:
2033
2309
  - text/plain
2034
2310
  response:
@@ -2039,13 +2315,13 @@ http_interactions:
2039
2315
  Content-Type:
2040
2316
  - application/json
2041
2317
  Date:
2042
- - Mon, 20 Apr 2015 23:29:07 GMT
2318
+ - Fri, 05 Jun 2015 23:26:49 GMT
2043
2319
  body:
2044
2320
  encoding: UTF-8
2045
2321
  string: |
2046
- {"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":"c43cacc37e52","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:04.681877953Z","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/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hosts","Id":"c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:29:05.696949288Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:29:05.239312451Z"},"Volumes":{},"VolumesRW":{}}
2322
+ {"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":"d594d1699b39","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:26:47.238149227Z","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":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:26:48.74195241Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
2047
2323
  http_version:
2048
- recorded_at: Mon, 20 Apr 2015 23:29:06 GMT
2324
+ recorded_at: Fri, 05 Jun 2015 23:26:49 GMT
2049
2325
  - request:
2050
2326
  method: get
2051
2327
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -2054,7 +2330,7 @@ http_interactions:
2054
2330
  string: ''
2055
2331
  headers:
2056
2332
  User-Agent:
2057
- - Swipely/Docker-API 1.20.0
2333
+ - Swipely/Docker-API 1.21.4
2058
2334
  Content-Type:
2059
2335
  - text/plain
2060
2336
  response:
@@ -2065,13 +2341,175 @@ http_interactions:
2065
2341
  Content-Type:
2066
2342
  - application/json
2067
2343
  Date:
2068
- - Mon, 20 Apr 2015 23:29:07 GMT
2344
+ - Fri, 05 Jun 2015 23:26:50 GMT
2345
+ body:
2346
+ encoding: UTF-8
2347
+ string: |
2348
+ {"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":"d594d1699b39","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:26:47.238149227Z","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":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:26:48.74195241Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
2349
+ http_version:
2350
+ recorded_at: Fri, 05 Jun 2015 23:26:50 GMT
2351
+ - request:
2352
+ method: get
2353
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
2354
+ body:
2355
+ encoding: US-ASCII
2356
+ string: ''
2357
+ headers:
2358
+ User-Agent:
2359
+ - Swipely/Docker-API 1.21.4
2360
+ Content-Type:
2361
+ - text/plain
2362
+ response:
2363
+ status:
2364
+ code: 200
2365
+ message:
2366
+ headers:
2367
+ Content-Type:
2368
+ - application/json
2369
+ Date:
2370
+ - Fri, 05 Jun 2015 23:26:50 GMT
2371
+ body:
2372
+ encoding: UTF-8
2373
+ string: |
2374
+ {"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":"d594d1699b39","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:26:47.238149227Z","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":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:26:48.74195241Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
2375
+ http_version:
2376
+ recorded_at: Fri, 05 Jun 2015 23:26:50 GMT
2377
+ - request:
2378
+ method: get
2379
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
2380
+ body:
2381
+ encoding: US-ASCII
2382
+ string: ''
2383
+ headers:
2384
+ User-Agent:
2385
+ - Swipely/Docker-API 1.21.4
2386
+ Content-Type:
2387
+ - text/plain
2388
+ response:
2389
+ status:
2390
+ code: 200
2391
+ message:
2392
+ headers:
2393
+ Content-Type:
2394
+ - application/json
2395
+ Date:
2396
+ - Fri, 05 Jun 2015 23:26:50 GMT
2397
+ body:
2398
+ encoding: UTF-8
2399
+ string: |
2400
+ {"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":"d594d1699b39","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:26:47.238149227Z","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":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:26:48.74195241Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
2401
+ http_version:
2402
+ recorded_at: Fri, 05 Jun 2015 23:26:50 GMT
2403
+ - request:
2404
+ method: get
2405
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
2406
+ body:
2407
+ encoding: US-ASCII
2408
+ string: ''
2409
+ headers:
2410
+ User-Agent:
2411
+ - Swipely/Docker-API 1.21.4
2412
+ Content-Type:
2413
+ - text/plain
2414
+ response:
2415
+ status:
2416
+ code: 200
2417
+ message:
2418
+ headers:
2419
+ Content-Type:
2420
+ - application/json
2421
+ Date:
2422
+ - Fri, 05 Jun 2015 23:26:50 GMT
2423
+ body:
2424
+ encoding: UTF-8
2425
+ string: |
2426
+ {"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":"d594d1699b39","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:26:47.238149227Z","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":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/hosts","Id":"d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d594d1699b3916c7c441fa9ceb43ae6f9812032a4e52af669ae82c69dbd06d58/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:26:48.74195241Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:26:47.754150796Z"},"Volumes":{},"VolumesRW":{}}
2427
+ http_version:
2428
+ recorded_at: Fri, 05 Jun 2015 23:26:50 GMT
2429
+ - request:
2430
+ method: get
2431
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
2432
+ body:
2433
+ encoding: US-ASCII
2434
+ string: ''
2435
+ headers:
2436
+ User-Agent:
2437
+ - Swipely/Docker-API 1.21.4
2438
+ Content-Type:
2439
+ - text/plain
2440
+ response:
2441
+ status:
2442
+ code: 404
2443
+ message:
2444
+ headers:
2445
+ Content-Type:
2446
+ - text/plain; charset=utf-8
2447
+ Date:
2448
+ - Fri, 05 Jun 2015 23:26:50 GMT
2449
+ Content-Length:
2450
+ - '26'
2451
+ body:
2452
+ encoding: UTF-8
2453
+ string: |
2454
+ no such id: uses_scanning
2455
+ http_version:
2456
+ recorded_at: Fri, 05 Jun 2015 23:26:50 GMT
2457
+ - request:
2458
+ method: get
2459
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
2460
+ body:
2461
+ encoding: US-ASCII
2462
+ string: ''
2463
+ headers:
2464
+ User-Agent:
2465
+ - Swipely/Docker-API 1.21.4
2466
+ Content-Type:
2467
+ - text/plain
2468
+ response:
2469
+ status:
2470
+ code: 404
2471
+ message:
2472
+ headers:
2473
+ Content-Type:
2474
+ - text/plain; charset=utf-8
2475
+ Date:
2476
+ - Fri, 05 Jun 2015 23:26:50 GMT
2477
+ Content-Length:
2478
+ - '26'
2479
+ body:
2480
+ encoding: UTF-8
2481
+ string: |
2482
+ no such id: uses_scanning
2483
+ http_version:
2484
+ recorded_at: Fri, 05 Jun 2015 23:26:50 GMT
2485
+ - request:
2486
+ method: get
2487
+ uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
2488
+ body:
2489
+ encoding: US-ASCII
2490
+ string: ''
2491
+ headers:
2492
+ User-Agent:
2493
+ - Swipely/Docker-API 1.21.4
2494
+ Content-Type:
2495
+ - text/plain
2496
+ response:
2497
+ status:
2498
+ code: 404
2499
+ message:
2500
+ headers:
2501
+ Content-Type:
2502
+ - text/plain; charset=utf-8
2503
+ Date:
2504
+ - Fri, 05 Jun 2015 23:26:50 GMT
2505
+ Content-Length:
2506
+ - '26'
2069
2507
  body:
2070
2508
  encoding: UTF-8
2071
2509
  string: |
2072
- {"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":"c43cacc37e52","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:04.681877953Z","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/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/hosts","Id":"c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c43cacc37e52a25a948141754fdd03bdce35898af988b091859c1e2288b45ee4/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:29:05.696949288Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:29:05.239312451Z"},"Volumes":{},"VolumesRW":{}}
2510
+ no such id: uses_scanning
2073
2511
  http_version:
2074
- recorded_at: Mon, 20 Apr 2015 23:29:06 GMT
2512
+ recorded_at: Fri, 05 Jun 2015 23:26:50 GMT
2075
2513
  - request:
2076
2514
  method: get
2077
2515
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -2080,7 +2518,7 @@ http_interactions:
2080
2518
  string: ''
2081
2519
  headers:
2082
2520
  User-Agent:
2083
- - Swipely/Docker-API 1.20.0
2521
+ - Swipely/Docker-API 1.21.4
2084
2522
  Content-Type:
2085
2523
  - text/plain
2086
2524
  response:
@@ -2091,15 +2529,15 @@ http_interactions:
2091
2529
  Content-Type:
2092
2530
  - application/json
2093
2531
  Date:
2094
- - Mon, 20 Apr 2015 23:29:07 GMT
2532
+ - Fri, 05 Jun 2015 23:26:50 GMT
2095
2533
  Content-Length:
2096
- - '1798'
2534
+ - '1972'
2097
2535
  body:
2098
2536
  encoding: UTF-8
2099
2537
  string: |
2100
- {"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":"6b64fb5d3fc6","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:07.314929409Z","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":"6b64fb5d3fc64c1e8f10598600c1bb7a820c75d804fab853a413ab1ffd682c2e","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.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":null,"VolumesRW":null}
2538
+ {"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":"ec2ff06310e3","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:26:50.727955952Z","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":"ec2ff06310e31a1693ddc62fe9f5c4fde977a52a610d19bf09633c8daf8aa86f","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.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}
2101
2539
  http_version:
2102
- recorded_at: Mon, 20 Apr 2015 23:29:07 GMT
2540
+ recorded_at: Fri, 05 Jun 2015 23:26:50 GMT
2103
2541
  - request:
2104
2542
  method: get
2105
2543
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -2108,7 +2546,7 @@ http_interactions:
2108
2546
  string: ''
2109
2547
  headers:
2110
2548
  User-Agent:
2111
- - Swipely/Docker-API 1.20.0
2549
+ - Swipely/Docker-API 1.21.4
2112
2550
  Content-Type:
2113
2551
  - text/plain
2114
2552
  response:
@@ -2119,15 +2557,15 @@ http_interactions:
2119
2557
  Content-Type:
2120
2558
  - application/json
2121
2559
  Date:
2122
- - Mon, 20 Apr 2015 23:29:07 GMT
2560
+ - Fri, 05 Jun 2015 23:26:50 GMT
2123
2561
  Content-Length:
2124
- - '1798'
2562
+ - '1968'
2125
2563
  body:
2126
2564
  encoding: UTF-8
2127
2565
  string: |
2128
- {"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":"6b64fb5d3fc6","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:07.314929409Z","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":"6b64fb5d3fc64c1e8f10598600c1bb7a820c75d804fab853a413ab1ffd682c2e","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.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":null,"VolumesRW":null}
2566
+ {"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":"ec2ff06310e3","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:26:50.727955952Z","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":"ec2ff06310e31a1693ddc62fe9f5c4fde977a52a610d19bf09633c8daf8aa86f","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.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":{},"VolumesRW":{}}
2129
2567
  http_version:
2130
- recorded_at: Mon, 20 Apr 2015 23:29:07 GMT
2568
+ recorded_at: Fri, 05 Jun 2015 23:26:50 GMT
2131
2569
  - request:
2132
2570
  method: get
2133
2571
  uri: "<DOCKER_HOST>/v1.16/containers/uses_scanning/json"
@@ -2136,7 +2574,7 @@ http_interactions:
2136
2574
  string: ''
2137
2575
  headers:
2138
2576
  User-Agent:
2139
- - Swipely/Docker-API 1.20.0
2577
+ - Swipely/Docker-API 1.21.4
2140
2578
  Content-Type:
2141
2579
  - text/plain
2142
2580
  response:
@@ -2147,11 +2585,11 @@ http_interactions:
2147
2585
  Content-Type:
2148
2586
  - application/json
2149
2587
  Date:
2150
- - Mon, 20 Apr 2015 23:29:07 GMT
2588
+ - Fri, 05 Jun 2015 23:26:51 GMT
2151
2589
  body:
2152
2590
  encoding: UTF-8
2153
2591
  string: |
2154
- {"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":"6b64fb5d3fc6","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:07.314929409Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":["/scanning:/uses_scanning/scanning"],"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/6b64fb5d3fc64c1e8f10598600c1bb7a820c75d804fab853a413ab1ffd682c2e/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/6b64fb5d3fc64c1e8f10598600c1bb7a820c75d804fab853a413ab1ffd682c2e/hosts","Id":"6b64fb5d3fc64c1e8f10598600c1bb7a820c75d804fab853a413ab1ffd682c2e","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.216","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7d8","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:d8","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/6b64fb5d3fc64c1e8f10598600c1bb7a820c75d804fab853a413ab1ffd682c2e/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13651,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:29:07.63733554Z"},"Volumes":{},"VolumesRW":{}}
2592
+ {"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":"ec2ff06310e3","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:26:50.727955952Z","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":["/scanning:/uses_scanning/scanning"],"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/ec2ff06310e31a1693ddc62fe9f5c4fde977a52a610d19bf09633c8daf8aa86f/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/ec2ff06310e31a1693ddc62fe9f5c4fde977a52a610d19bf09633c8daf8aa86f/hosts","Id":"ec2ff06310e31a1693ddc62fe9f5c4fde977a52a610d19bf09633c8daf8aa86f","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/ec2ff06310e31a1693ddc62fe9f5c4fde977a52a610d19bf09633c8daf8aa86f/ec2ff06310e31a1693ddc62fe9f5c4fde977a52a610d19bf09633c8daf8aa86f-json.log","MountLabel":"","Name":"/uses_scanning","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.91","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:15b","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:5b","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/ec2ff06310e31a1693ddc62fe9f5c4fde977a52a610d19bf09633c8daf8aa86f/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23907,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:51.096036073Z"},"Volumes":{},"VolumesRW":{}}
2155
2593
  http_version:
2156
- recorded_at: Mon, 20 Apr 2015 23:29:07 GMT
2594
+ recorded_at: Fri, 05 Jun 2015 23:26:51 GMT
2157
2595
  recorded_with: VCR 2.9.3