bigrig 0.1.0 → 0.1.1

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 (83) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/Gemfile +2 -0
  4. data/Gemfile.lock +12 -2
  5. data/lib/bigrig/descriptor.rb +3 -0
  6. data/lib/bigrig/output_parser.rb +46 -7
  7. data/lib/bigrig/version.rb +1 -1
  8. data/spec/bigrig/descriptor_spec.rb +34 -0
  9. data/spec/bigrig/output_parser_spec.rb +22 -0
  10. data/spec/bigrig_spec.rb +9 -1
  11. data/spec/data/adds_volume.json +17 -0
  12. data/spec/data/adds_volumes_from.json +17 -0
  13. data/spec/data/multiple_overrides.json +22 -0
  14. data/spec/support/vcr.rb +7 -2
  15. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +46 -46
  16. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +49 -49
  17. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +9 -9
  18. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +4 -4
  19. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +8 -8
  20. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +10 -10
  21. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +12 -12
  22. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +12 -12
  23. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +8 -8
  24. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +22 -22
  25. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +17 -17
  26. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +4 -4
  27. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +2 -2
  28. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +6 -6
  29. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +43 -43
  30. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +143 -107
  31. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +16 -16
  32. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +32 -32
  33. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +10 -10
  34. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +8 -8
  35. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +27 -27
  36. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +28 -28
  37. 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 +28 -28
  38. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +32 -32
  39. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +8 -8
  40. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +11 -11
  41. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +13 -13
  42. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +30 -83
  43. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +17 -17
  44. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +27 -176
  45. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +41 -41
  46. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +41 -41
  47. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +75 -75
  48. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +52 -52
  49. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +74 -74
  50. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +37 -37
  51. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +39 -39
  52. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes/should_pass_volumes_to_the_right_container.yml +40 -40
  53. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +75 -75
  54. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +52 -52
  55. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +43 -38
  56. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +39 -39
  57. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +14 -14
  58. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +227 -3
  59. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +240 -16
  60. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +238 -14
  61. data/spec/vcr/bigrig/dev/spec/data/dev_json/tails_the_logs.yml +227 -0
  62. data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +17 -17
  63. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +11 -11
  64. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +11 -11
  65. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +11 -11
  66. data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +9 -9
  67. data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +13 -13
  68. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +28 -28
  69. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +17 -17
  70. data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +21 -21
  71. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +109 -107
  72. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +108 -108
  73. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +118 -118
  74. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +21 -21
  75. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +25 -25
  76. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +25 -25
  77. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +24 -173
  78. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +25 -25
  79. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +25 -25
  80. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +121 -85
  81. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +113 -77
  82. metadata +6 -3
  83. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_destroys_containers_on_exit.yml +0 -1070
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Thu, 12 Mar 2015 21:38:19 GMT
22
+ - Mon, 06 Apr 2015 21:59:51 GMT
23
23
  Content-Length:
24
24
  - '1859'
25
25
  body:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  string: |
28
28
  {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"d6d34d2bfd452f4175eab78597ddd29856f0af494d503b00f4160d5eb3f13f1b","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ENTRYPOINT [/bin/sh -c ruby /code/server.rb]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-10-23T20:00:42.057514693Z","DockerVersion":"1.3.0","Id":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Os":"linux","Parent":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Size":0,"VirtualSize":801041825}
29
29
  http_version:
30
- recorded_at: Thu, 12 Mar 2015 21:38:21 GMT
30
+ recorded_at: Mon, 06 Apr 2015 21:59:50 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/images/hawknewton/log-test:0.0.1/json"
@@ -47,7 +47,7 @@ http_interactions:
47
47
  Content-Type:
48
48
  - application/json
49
49
  Date:
50
- - Thu, 12 Mar 2015 21:38:19 GMT
50
+ - Mon, 06 Apr 2015 21:59:52 GMT
51
51
  Content-Length:
52
52
  - '1493'
53
53
  body:
@@ -55,7 +55,7 @@ http_interactions:
55
55
  string: |
56
56
  {"Architecture":"amd64","Author":"","Comment":"","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":"71e72940b4dd","Image":"c507982f836db18913f4a5c7c7a174617c40da13cb0797cf4481220b906f59ff","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"13fbda9e12ada74a75b684aa44fbecc55acb529370b161d02dcb66fa7c612911","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) 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":"71e72940b4dd","Image":"c507982f836db18913f4a5c7c7a174617c40da13cb0797cf4481220b906f59ff","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-02-10T13:06:13.014751129Z","DockerVersion":"1.3.0","Id":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Os":"linux","Parent":"c507982f836db18913f4a5c7c7a174617c40da13cb0797cf4481220b906f59ff","Size":0,"VirtualSize":117030274}
57
57
  http_version:
58
- recorded_at: Thu, 12 Mar 2015 21:38:21 GMT
58
+ recorded_at: Mon, 06 Apr 2015 21:59:50 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -75,7 +75,7 @@ http_interactions:
75
75
  Content-Type:
76
76
  - text/plain; charset=utf-8
77
77
  Date:
78
- - Thu, 12 Mar 2015 21:38:19 GMT
78
+ - Mon, 06 Apr 2015 21:59:52 GMT
79
79
  Content-Length:
80
80
  - '28'
81
81
  body:
@@ -83,7 +83,7 @@ http_interactions:
83
83
  string: |
84
84
  No such container: dev-test
85
85
  http_version:
86
- recorded_at: Thu, 12 Mar 2015 21:38:21 GMT
86
+ recorded_at: Mon, 06 Apr 2015 21:59:50 GMT
87
87
  - request:
88
88
  method: get
89
89
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -103,7 +103,7 @@ http_interactions:
103
103
  Content-Type:
104
104
  - text/plain; charset=utf-8
105
105
  Date:
106
- - Thu, 12 Mar 2015 21:38:19 GMT
106
+ - Mon, 06 Apr 2015 21:59:52 GMT
107
107
  Content-Length:
108
108
  - '28'
109
109
  body:
@@ -111,7 +111,7 @@ http_interactions:
111
111
  string: |
112
112
  No such container: dev-test
113
113
  http_version:
114
- recorded_at: Thu, 12 Mar 2015 21:38:21 GMT
114
+ recorded_at: Mon, 06 Apr 2015 21:59:50 GMT
115
115
  - request:
116
116
  method: get
117
117
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -131,7 +131,7 @@ http_interactions:
131
131
  Content-Type:
132
132
  - text/plain; charset=utf-8
133
133
  Date:
134
- - Thu, 12 Mar 2015 21:38:19 GMT
134
+ - Mon, 06 Apr 2015 21:59:52 GMT
135
135
  Content-Length:
136
136
  - '28'
137
137
  body:
@@ -139,7 +139,7 @@ http_interactions:
139
139
  string: |
140
140
  No such container: dev-test
141
141
  http_version:
142
- recorded_at: Thu, 12 Mar 2015 21:38:21 GMT
142
+ recorded_at: Mon, 06 Apr 2015 21:59:50 GMT
143
143
  - request:
144
144
  method: get
145
145
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -159,7 +159,7 @@ http_interactions:
159
159
  Content-Type:
160
160
  - text/plain; charset=utf-8
161
161
  Date:
162
- - Thu, 12 Mar 2015 21:38:19 GMT
162
+ - Mon, 06 Apr 2015 21:59:52 GMT
163
163
  Content-Length:
164
164
  - '28'
165
165
  body:
@@ -167,7 +167,7 @@ http_interactions:
167
167
  string: |
168
168
  No such container: dev-test
169
169
  http_version:
170
- recorded_at: Thu, 12 Mar 2015 21:38:21 GMT
170
+ recorded_at: Mon, 06 Apr 2015 21:59:50 GMT
171
171
  - request:
172
172
  method: get
173
173
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -187,7 +187,7 @@ http_interactions:
187
187
  Content-Type:
188
188
  - text/plain; charset=utf-8
189
189
  Date:
190
- - Thu, 12 Mar 2015 21:38:19 GMT
190
+ - Mon, 06 Apr 2015 21:59:52 GMT
191
191
  Content-Length:
192
192
  - '28'
193
193
  body:
@@ -195,7 +195,7 @@ http_interactions:
195
195
  string: |
196
196
  No such container: dev-test
197
197
  http_version:
198
- recorded_at: Thu, 12 Mar 2015 21:38:21 GMT
198
+ recorded_at: Mon, 06 Apr 2015 21:59:50 GMT
199
199
  - request:
200
200
  method: get
201
201
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -215,7 +215,7 @@ http_interactions:
215
215
  Content-Type:
216
216
  - text/plain; charset=utf-8
217
217
  Date:
218
- - Thu, 12 Mar 2015 21:38:19 GMT
218
+ - Mon, 06 Apr 2015 21:59:52 GMT
219
219
  Content-Length:
220
220
  - '28'
221
221
  body:
@@ -223,7 +223,7 @@ http_interactions:
223
223
  string: |
224
224
  No such container: dev-test
225
225
  http_version:
226
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
226
+ recorded_at: Mon, 06 Apr 2015 21:59:50 GMT
227
227
  - request:
228
228
  method: get
229
229
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -243,7 +243,7 @@ http_interactions:
243
243
  Content-Type:
244
244
  - text/plain; charset=utf-8
245
245
  Date:
246
- - Thu, 12 Mar 2015 21:38:19 GMT
246
+ - Mon, 06 Apr 2015 21:59:52 GMT
247
247
  Content-Length:
248
248
  - '28'
249
249
  body:
@@ -251,7 +251,7 @@ http_interactions:
251
251
  string: |
252
252
  No such container: dev-test
253
253
  http_version:
254
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
254
+ recorded_at: Mon, 06 Apr 2015 21:59:50 GMT
255
255
  - request:
256
256
  method: get
257
257
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -271,7 +271,7 @@ http_interactions:
271
271
  Content-Type:
272
272
  - text/plain; charset=utf-8
273
273
  Date:
274
- - Thu, 12 Mar 2015 21:38:19 GMT
274
+ - Mon, 06 Apr 2015 21:59:52 GMT
275
275
  Content-Length:
276
276
  - '28'
277
277
  body:
@@ -279,7 +279,7 @@ http_interactions:
279
279
  string: |
280
280
  No such container: dev-test
281
281
  http_version:
282
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
282
+ recorded_at: Mon, 06 Apr 2015 21:59:50 GMT
283
283
  - request:
284
284
  method: get
285
285
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -299,7 +299,7 @@ http_interactions:
299
299
  Content-Type:
300
300
  - text/plain; charset=utf-8
301
301
  Date:
302
- - Thu, 12 Mar 2015 21:38:19 GMT
302
+ - Mon, 06 Apr 2015 21:59:52 GMT
303
303
  Content-Length:
304
304
  - '28'
305
305
  body:
@@ -307,7 +307,7 @@ http_interactions:
307
307
  string: |
308
308
  No such container: dev-logs
309
309
  http_version:
310
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
310
+ recorded_at: Mon, 06 Apr 2015 21:59:50 GMT
311
311
  - request:
312
312
  method: get
313
313
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -327,7 +327,7 @@ http_interactions:
327
327
  Content-Type:
328
328
  - text/plain; charset=utf-8
329
329
  Date:
330
- - Thu, 12 Mar 2015 21:38:19 GMT
330
+ - Mon, 06 Apr 2015 21:59:52 GMT
331
331
  Content-Length:
332
332
  - '28'
333
333
  body:
@@ -335,7 +335,7 @@ http_interactions:
335
335
  string: |
336
336
  No such container: dev-logs
337
337
  http_version:
338
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
338
+ recorded_at: Mon, 06 Apr 2015 21:59:50 GMT
339
339
  - request:
340
340
  method: get
341
341
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -355,7 +355,7 @@ http_interactions:
355
355
  Content-Type:
356
356
  - text/plain; charset=utf-8
357
357
  Date:
358
- - Thu, 12 Mar 2015 21:38:19 GMT
358
+ - Mon, 06 Apr 2015 21:59:52 GMT
359
359
  Content-Length:
360
360
  - '28'
361
361
  body:
@@ -363,7 +363,7 @@ http_interactions:
363
363
  string: |
364
364
  No such container: dev-logs
365
365
  http_version:
366
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
366
+ recorded_at: Mon, 06 Apr 2015 21:59:50 GMT
367
367
  - request:
368
368
  method: get
369
369
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -383,7 +383,7 @@ http_interactions:
383
383
  Content-Type:
384
384
  - text/plain; charset=utf-8
385
385
  Date:
386
- - Thu, 12 Mar 2015 21:38:19 GMT
386
+ - Mon, 06 Apr 2015 21:59:52 GMT
387
387
  Content-Length:
388
388
  - '28'
389
389
  body:
@@ -391,7 +391,7 @@ http_interactions:
391
391
  string: |
392
392
  No such container: dev-logs
393
393
  http_version:
394
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
394
+ recorded_at: Mon, 06 Apr 2015 21:59:50 GMT
395
395
  - request:
396
396
  method: get
397
397
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -411,7 +411,7 @@ http_interactions:
411
411
  Content-Type:
412
412
  - text/plain; charset=utf-8
413
413
  Date:
414
- - Thu, 12 Mar 2015 21:38:19 GMT
414
+ - Mon, 06 Apr 2015 21:59:52 GMT
415
415
  Content-Length:
416
416
  - '28'
417
417
  body:
@@ -419,7 +419,7 @@ http_interactions:
419
419
  string: |
420
420
  No such container: dev-logs
421
421
  http_version:
422
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
422
+ recorded_at: Mon, 06 Apr 2015 21:59:50 GMT
423
423
  - request:
424
424
  method: get
425
425
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -439,7 +439,7 @@ http_interactions:
439
439
  Content-Type:
440
440
  - text/plain; charset=utf-8
441
441
  Date:
442
- - Thu, 12 Mar 2015 21:38:19 GMT
442
+ - Mon, 06 Apr 2015 21:59:52 GMT
443
443
  Content-Length:
444
444
  - '28'
445
445
  body:
@@ -447,7 +447,7 @@ http_interactions:
447
447
  string: |
448
448
  No such container: dev-logs
449
449
  http_version:
450
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
450
+ recorded_at: Mon, 06 Apr 2015 21:59:51 GMT
451
451
  - request:
452
452
  method: get
453
453
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -467,7 +467,7 @@ http_interactions:
467
467
  Content-Type:
468
468
  - text/plain; charset=utf-8
469
469
  Date:
470
- - Thu, 12 Mar 2015 21:38:19 GMT
470
+ - Mon, 06 Apr 2015 21:59:52 GMT
471
471
  Content-Length:
472
472
  - '28'
473
473
  body:
@@ -475,7 +475,7 @@ http_interactions:
475
475
  string: |
476
476
  No such container: dev-logs
477
477
  http_version:
478
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
478
+ recorded_at: Mon, 06 Apr 2015 21:59:51 GMT
479
479
  - request:
480
480
  method: get
481
481
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -495,7 +495,7 @@ http_interactions:
495
495
  Content-Type:
496
496
  - text/plain; charset=utf-8
497
497
  Date:
498
- - Thu, 12 Mar 2015 21:38:19 GMT
498
+ - Mon, 06 Apr 2015 21:59:52 GMT
499
499
  Content-Length:
500
500
  - '28'
501
501
  body:
@@ -503,13 +503,13 @@ http_interactions:
503
503
  string: |
504
504
  No such container: dev-logs
505
505
  http_version:
506
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
506
+ recorded_at: Mon, 06 Apr 2015 21:59:51 GMT
507
507
  - request:
508
508
  method: post
509
- uri: "<DOCKER_HOST>/v1.16/containers/create?name=dev-logs"
509
+ uri: "<DOCKER_HOST>/v1.16/containers/create?name=dev-test"
510
510
  body:
511
511
  encoding: UTF-8
512
- string: '{"Env":[],"Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","ExposedPorts":{}}'
512
+ string: '{"Env":["PROFILE=dev"],"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","ExposedPorts":{"80/tcp":{}}}'
513
513
  headers:
514
514
  User-Agent:
515
515
  - Swipely/Docker-API 1.20.0
@@ -523,21 +523,21 @@ http_interactions:
523
523
  Content-Type:
524
524
  - application/json
525
525
  Date:
526
- - Thu, 12 Mar 2015 21:38:20 GMT
526
+ - Mon, 06 Apr 2015 21:59:52 GMT
527
527
  Content-Length:
528
528
  - '90'
529
529
  body:
530
530
  encoding: UTF-8
531
531
  string: |
532
- {"Id":"17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be","Warnings":null}
532
+ {"Id":"4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866","Warnings":null}
533
533
  http_version:
534
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
534
+ recorded_at: Mon, 06 Apr 2015 21:59:51 GMT
535
535
  - request:
536
536
  method: post
537
- uri: "<DOCKER_HOST>/v1.16/containers/create?name=dev-test"
537
+ uri: "<DOCKER_HOST>/v1.16/containers/create?name=dev-logs"
538
538
  body:
539
539
  encoding: UTF-8
540
- string: '{"Env":["PROFILE=dev"],"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","ExposedPorts":{"80/tcp":{}}}'
540
+ string: '{"Env":[],"Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","ExposedPorts":{}}'
541
541
  headers:
542
542
  User-Agent:
543
543
  - Swipely/Docker-API 1.20.0
@@ -551,21 +551,21 @@ http_interactions:
551
551
  Content-Type:
552
552
  - application/json
553
553
  Date:
554
- - Thu, 12 Mar 2015 21:38:20 GMT
554
+ - Mon, 06 Apr 2015 21:59:52 GMT
555
555
  Content-Length:
556
556
  - '90'
557
557
  body:
558
558
  encoding: UTF-8
559
559
  string: |
560
- {"Id":"0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a","Warnings":null}
560
+ {"Id":"85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7","Warnings":null}
561
561
  http_version:
562
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
562
+ recorded_at: Mon, 06 Apr 2015 21:59:51 GMT
563
563
  - request:
564
564
  method: post
565
- uri: "<DOCKER_HOST>/v1.16/containers/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/start"
565
+ uri: "<DOCKER_HOST>/v1.16/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/start"
566
566
  body:
567
567
  encoding: UTF-8
568
- string: '{"Links":[],"ExtraHosts":[],"PortBindings":{},"VolumesFrom":[]}'
568
+ string: '{"Links":[],"ExtraHosts":[],"PortBindings":{"80/tcp":[{"HostPort":"4568"}]},"VolumesFrom":[],"Binds":[]}'
569
569
  headers:
570
570
  User-Agent:
571
571
  - Swipely/Docker-API 1.20.0
@@ -577,18 +577,18 @@ http_interactions:
577
577
  message:
578
578
  headers:
579
579
  Date:
580
- - Thu, 12 Mar 2015 21:38:20 GMT
580
+ - Mon, 06 Apr 2015 21:59:53 GMT
581
581
  body:
582
582
  encoding: UTF-8
583
583
  string: ''
584
584
  http_version:
585
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
585
+ recorded_at: Mon, 06 Apr 2015 21:59:51 GMT
586
586
  - request:
587
587
  method: post
588
- uri: "<DOCKER_HOST>/v1.16/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/start"
588
+ uri: "<DOCKER_HOST>/v1.16/containers/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/start"
589
589
  body:
590
590
  encoding: UTF-8
591
- string: '{"Links":[],"ExtraHosts":[],"PortBindings":{"80/tcp":[{"HostPort":"4568"}]},"VolumesFrom":[]}'
591
+ string: '{"Links":[],"ExtraHosts":[],"PortBindings":{},"VolumesFrom":[],"Binds":[]}'
592
592
  headers:
593
593
  User-Agent:
594
594
  - Swipely/Docker-API 1.20.0
@@ -600,12 +600,12 @@ http_interactions:
600
600
  message:
601
601
  headers:
602
602
  Date:
603
- - Thu, 12 Mar 2015 21:38:20 GMT
603
+ - Mon, 06 Apr 2015 21:59:53 GMT
604
604
  body:
605
605
  encoding: UTF-8
606
606
  string: ''
607
607
  http_version:
608
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
608
+ recorded_at: Mon, 06 Apr 2015 21:59:51 GMT
609
609
  - request:
610
610
  method: get
611
611
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -625,13 +625,13 @@ http_interactions:
625
625
  Content-Type:
626
626
  - application/json
627
627
  Date:
628
- - Thu, 12 Mar 2015 21:38:20 GMT
628
+ - Mon, 06 Apr 2015 21:59:53 GMT
629
629
  body:
630
630
  encoding: UTF-8
631
631
  string: |
632
- {"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":"17941174bc29","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-03-12T21:38:20.023126167Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"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/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/hosts","Id":"17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.2.109","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:26d","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:02:6d","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":11939,"Restarting":false,"Running":true,"StartedAt":"2015-03-12T21:38:20.49184184Z"},"Volumes":{},"VolumesRW":{}}
632
+ {"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":"85c72c9dbaf1","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-06T21:59:52.447526855Z","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/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/hosts","Id":"85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.232","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:1e8","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:e8","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":7779,"Restarting":false,"Running":true,"StartedAt":"2015-04-06T21:59:53.139600987Z"},"Volumes":{},"VolumesRW":{}}
633
633
  http_version:
634
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
634
+ recorded_at: Mon, 06 Apr 2015 21:59:51 GMT
635
635
  - request:
636
636
  method: get
637
637
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -651,13 +651,13 @@ http_interactions:
651
651
  Content-Type:
652
652
  - application/json
653
653
  Date:
654
- - Thu, 12 Mar 2015 21:38:20 GMT
654
+ - Mon, 06 Apr 2015 21:59:53 GMT
655
655
  body:
656
656
  encoding: UTF-8
657
657
  string: |
658
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"0c802eebd636","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-03-12T21:38:20.032792474Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/hosts","Id":"0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.2.110","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:26e","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:02:6e","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":11951,"Restarting":false,"Running":true,"StartedAt":"2015-03-12T21:38:20.590188934Z"},"Volumes":{},"VolumesRW":{}}
658
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"4081aeb1cb55","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-06T21:59:52.439135452Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/hosts","Id":"4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.231","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:1e7","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:e7","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":7785,"Restarting":false,"Running":true,"StartedAt":"2015-04-06T21:59:53.136251036Z"},"Volumes":{},"VolumesRW":{}}
659
659
  http_version:
660
- recorded_at: Thu, 12 Mar 2015 21:38:22 GMT
660
+ recorded_at: Mon, 06 Apr 2015 21:59:51 GMT
661
661
  - request:
662
662
  method: get
663
663
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -677,13 +677,13 @@ http_interactions:
677
677
  Content-Type:
678
678
  - application/json
679
679
  Date:
680
- - Thu, 12 Mar 2015 21:38:24 GMT
680
+ - Mon, 06 Apr 2015 21:59:56 GMT
681
681
  body:
682
682
  encoding: UTF-8
683
683
  string: |
684
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"0c802eebd636","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-03-12T21:38:20.032792474Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/hosts","Id":"0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.2.110","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:26e","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:02:6e","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":11951,"Restarting":false,"Running":true,"StartedAt":"2015-03-12T21:38:20.590188934Z"},"Volumes":{},"VolumesRW":{}}
684
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"4081aeb1cb55","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-06T21:59:52.439135452Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/hosts","Id":"4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.231","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:1e7","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:e7","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":7785,"Restarting":false,"Running":true,"StartedAt":"2015-04-06T21:59:53.136251036Z"},"Volumes":{},"VolumesRW":{}}
685
685
  http_version:
686
- recorded_at: Thu, 12 Mar 2015 21:38:26 GMT
686
+ recorded_at: Mon, 06 Apr 2015 21:59:54 GMT
687
687
  - request:
688
688
  method: get
689
689
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -703,16 +703,16 @@ http_interactions:
703
703
  Content-Type:
704
704
  - application/json
705
705
  Date:
706
- - Thu, 12 Mar 2015 21:38:24 GMT
706
+ - Mon, 06 Apr 2015 21:59:56 GMT
707
707
  body:
708
708
  encoding: UTF-8
709
709
  string: |
710
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"0c802eebd636","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-03-12T21:38:20.032792474Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/hosts","Id":"0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.2.110","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:26e","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:02:6e","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":11951,"Restarting":false,"Running":true,"StartedAt":"2015-03-12T21:38:20.590188934Z"},"Volumes":{},"VolumesRW":{}}
710
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"4081aeb1cb55","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-06T21:59:52.439135452Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/hosts","Id":"4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.231","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:1e7","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:e7","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":7785,"Restarting":false,"Running":true,"StartedAt":"2015-04-06T21:59:53.136251036Z"},"Volumes":{},"VolumesRW":{}}
711
711
  http_version:
712
- recorded_at: Thu, 12 Mar 2015 21:38:26 GMT
712
+ recorded_at: Mon, 06 Apr 2015 21:59:54 GMT
713
713
  - request:
714
714
  method: get
715
- uri: "<DOCKER_HOST>/v1.16/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/logs?follow=true&stderr=true&stdout=true"
715
+ uri: "<DOCKER_HOST>/v1.16/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/logs?follow=true&stderr=true&stdout=true"
716
716
  body:
717
717
  encoding: US-ASCII
718
718
  string: ''
@@ -727,7 +727,7 @@ http_interactions:
727
727
  message:
728
728
  headers:
729
729
  Date:
730
- - Thu, 12 Mar 2015 21:38:24 GMT
730
+ - Mon, 06 Apr 2015 21:59:56 GMT
731
731
  Content-Length:
732
732
  - '0'
733
733
  Content-Type:
@@ -736,10 +736,10 @@ http_interactions:
736
736
  encoding: UTF-8
737
737
  string: ''
738
738
  http_version:
739
- recorded_at: Thu, 12 Mar 2015 21:38:26 GMT
739
+ recorded_at: Mon, 06 Apr 2015 21:59:55 GMT
740
740
  - request:
741
741
  method: post
742
- uri: "<DOCKER_HOST>/v1.16/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/kill"
742
+ uri: "<DOCKER_HOST>/v1.16/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/kill"
743
743
  body:
744
744
  encoding: US-ASCII
745
745
  string: ''
@@ -754,12 +754,12 @@ http_interactions:
754
754
  message:
755
755
  headers:
756
756
  Date:
757
- - Thu, 12 Mar 2015 21:38:24 GMT
757
+ - Mon, 06 Apr 2015 21:59:56 GMT
758
758
  body:
759
759
  encoding: UTF-8
760
760
  string: ''
761
761
  http_version:
762
- recorded_at: Thu, 12 Mar 2015 21:38:26 GMT
762
+ recorded_at: Mon, 06 Apr 2015 21:59:55 GMT
763
763
  - request:
764
764
  method: get
765
765
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -779,13 +779,13 @@ http_interactions:
779
779
  Content-Type:
780
780
  - application/json
781
781
  Date:
782
- - Thu, 12 Mar 2015 21:38:24 GMT
782
+ - Mon, 06 Apr 2015 21:59:56 GMT
783
783
  body:
784
784
  encoding: UTF-8
785
785
  string: |
786
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"0c802eebd636","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-03-12T21:38:20.032792474Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/hosts","Id":"0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-03-12T21:38:24.200712842Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-03-12T21:38:20.590188934Z"},"Volumes":{},"VolumesRW":{}}
786
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"4081aeb1cb55","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-06T21:59:52.439135452Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/hosts","Id":"4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-06T21:59:56.384289895Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-06T21:59:53.136251036Z"},"Volumes":{},"VolumesRW":{}}
787
787
  http_version:
788
- recorded_at: Thu, 12 Mar 2015 21:38:26 GMT
788
+ recorded_at: Mon, 06 Apr 2015 21:59:55 GMT
789
789
  - request:
790
790
  method: get
791
791
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -805,13 +805,13 @@ http_interactions:
805
805
  Content-Type:
806
806
  - application/json
807
807
  Date:
808
- - Thu, 12 Mar 2015 21:38:24 GMT
808
+ - Mon, 06 Apr 2015 21:59:56 GMT
809
809
  body:
810
810
  encoding: UTF-8
811
811
  string: |
812
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"0c802eebd636","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-03-12T21:38:20.032792474Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/hosts","Id":"0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-03-12T21:38:24.200712842Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-03-12T21:38:20.590188934Z"},"Volumes":{},"VolumesRW":{}}
812
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"4081aeb1cb55","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-06T21:59:52.439135452Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/hosts","Id":"4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-06T21:59:56.384289895Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-06T21:59:53.136251036Z"},"Volumes":{},"VolumesRW":{}}
813
813
  http_version:
814
- recorded_at: Thu, 12 Mar 2015 21:38:26 GMT
814
+ recorded_at: Mon, 06 Apr 2015 21:59:55 GMT
815
815
  - request:
816
816
  method: get
817
817
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -831,16 +831,16 @@ http_interactions:
831
831
  Content-Type:
832
832
  - application/json
833
833
  Date:
834
- - Thu, 12 Mar 2015 21:38:24 GMT
834
+ - Mon, 06 Apr 2015 21:59:56 GMT
835
835
  body:
836
836
  encoding: UTF-8
837
837
  string: |
838
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"0c802eebd636","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-03-12T21:38:20.032792474Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/hosts","Id":"0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-03-12T21:38:24.200712842Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-03-12T21:38:20.590188934Z"},"Volumes":{},"VolumesRW":{}}
838
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"4081aeb1cb55","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-06T21:59:52.439135452Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/hosts","Id":"4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-06T21:59:56.384289895Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-06T21:59:53.136251036Z"},"Volumes":{},"VolumesRW":{}}
839
839
  http_version:
840
- recorded_at: Thu, 12 Mar 2015 21:38:26 GMT
840
+ recorded_at: Mon, 06 Apr 2015 21:59:55 GMT
841
841
  - request:
842
842
  method: delete
843
- uri: "<DOCKER_HOST>/v1.16/containers/0c802eebd636b5594f66c6e5f94bcb57605772eeb8bd8d009419c6720c315c0a"
843
+ uri: "<DOCKER_HOST>/v1.16/containers/4081aeb1cb55cffdae26ed974a9647e748a1440fee2792b46e9ffb6f0dfaa866"
844
844
  body:
845
845
  encoding: US-ASCII
846
846
  string: ''
@@ -855,12 +855,12 @@ http_interactions:
855
855
  message:
856
856
  headers:
857
857
  Date:
858
- - Thu, 12 Mar 2015 21:38:24 GMT
858
+ - Mon, 06 Apr 2015 21:59:56 GMT
859
859
  body:
860
860
  encoding: UTF-8
861
861
  string: ''
862
862
  http_version:
863
- recorded_at: Thu, 12 Mar 2015 21:38:26 GMT
863
+ recorded_at: Mon, 06 Apr 2015 21:59:55 GMT
864
864
  - request:
865
865
  method: get
866
866
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -880,13 +880,13 @@ http_interactions:
880
880
  Content-Type:
881
881
  - application/json
882
882
  Date:
883
- - Thu, 12 Mar 2015 21:38:24 GMT
883
+ - Mon, 06 Apr 2015 21:59:56 GMT
884
884
  body:
885
885
  encoding: UTF-8
886
886
  string: |
887
- {"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":"17941174bc29","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-03-12T21:38:20.023126167Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"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/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/hosts","Id":"17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.2.109","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:26d","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:02:6d","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":11939,"Restarting":false,"Running":true,"StartedAt":"2015-03-12T21:38:20.49184184Z"},"Volumes":{},"VolumesRW":{}}
887
+ {"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":"85c72c9dbaf1","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-06T21:59:52.447526855Z","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/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/hosts","Id":"85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.232","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:1e8","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:e8","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":7779,"Restarting":false,"Running":true,"StartedAt":"2015-04-06T21:59:53.139600987Z"},"Volumes":{},"VolumesRW":{}}
888
888
  http_version:
889
- recorded_at: Thu, 12 Mar 2015 21:38:26 GMT
889
+ recorded_at: Mon, 06 Apr 2015 21:59:55 GMT
890
890
  - request:
891
891
  method: get
892
892
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -906,16 +906,16 @@ http_interactions:
906
906
  Content-Type:
907
907
  - application/json
908
908
  Date:
909
- - Thu, 12 Mar 2015 21:38:24 GMT
909
+ - Mon, 06 Apr 2015 21:59:56 GMT
910
910
  body:
911
911
  encoding: UTF-8
912
912
  string: |
913
- {"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":"17941174bc29","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-03-12T21:38:20.023126167Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"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/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/hosts","Id":"17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.2.109","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:26d","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:02:6d","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":11939,"Restarting":false,"Running":true,"StartedAt":"2015-03-12T21:38:20.49184184Z"},"Volumes":{},"VolumesRW":{}}
913
+ {"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":"85c72c9dbaf1","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-06T21:59:52.447526855Z","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/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/hosts","Id":"85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.232","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:1e8","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:e8","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":7779,"Restarting":false,"Running":true,"StartedAt":"2015-04-06T21:59:53.139600987Z"},"Volumes":{},"VolumesRW":{}}
914
914
  http_version:
915
- recorded_at: Thu, 12 Mar 2015 21:38:26 GMT
915
+ recorded_at: Mon, 06 Apr 2015 21:59:55 GMT
916
916
  - request:
917
917
  method: get
918
- uri: "<DOCKER_HOST>/v1.16/containers/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/logs?follow=true&stderr=true&stdout=true"
918
+ uri: "<DOCKER_HOST>/v1.16/containers/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/logs?follow=true&stderr=true&stdout=true"
919
919
  body:
920
920
  encoding: US-ASCII
921
921
  string: ''
@@ -930,27 +930,27 @@ http_interactions:
930
930
  message:
931
931
  headers:
932
932
  Date:
933
- - Thu, 12 Mar 2015 21:38:20 GMT
933
+ - Mon, 06 Apr 2015 21:59:53 GMT
934
934
  Content-Type:
935
935
  - application/octet-stream
936
936
  body:
937
937
  encoding: UTF-8
938
938
  string: !binary |-
939
- AQAAAAAAADBUaHUgTWFyIDEyIDIxOjM4OjIwIFVUQyAyMDE1IGNvbnRhaW5l
940
- ciAxIHN0ZG91dAoCAAAAAAAAMFRodSBNYXIgMTIgMjE6Mzg6MjAgVVRDIDIw
941
- MTUgY29udGFpbmVyIDEgc3RkZXJyCgEAAAAAAAAwVGh1IE1hciAxMiAyMToz
942
- ODoyMSBVVEMgMjAxNSBjb250YWluZXIgMSBzdGRvdXQKAgAAAAAAADBUaHUg
943
- TWFyIDEyIDIxOjM4OjIxIFVUQyAyMDE1IGNvbnRhaW5lciAxIHN0ZGVycgoB
944
- AAAAAAAAMFRodSBNYXIgMTIgMjE6Mzg6MjIgVVRDIDIwMTUgY29udGFpbmVy
945
- IDEgc3Rkb3V0CgIAAAAAAAAwVGh1IE1hciAxMiAyMTozODoyMiBVVEMgMjAx
946
- NSBjb250YWluZXIgMSBzdGRlcnIKAQAAAAAAADBUaHUgTWFyIDEyIDIxOjM4
947
- OjIzIFVUQyAyMDE1IGNvbnRhaW5lciAxIHN0ZG91dAoCAAAAAAAAMFRodSBN
948
- YXIgMTIgMjE6Mzg6MjMgVVRDIDIwMTUgY29udGFpbmVyIDEgc3RkZXJyCg==
939
+ AQAAAAAAADBNb24gQXByICA2IDIxOjU5OjUzIFVUQyAyMDE1IGNvbnRhaW5l
940
+ ciAxIHN0ZG91dAoCAAAAAAAAME1vbiBBcHIgIDYgMjE6NTk6NTMgVVRDIDIw
941
+ MTUgY29udGFpbmVyIDEgc3RkZXJyCgEAAAAAAAAwTW9uIEFwciAgNiAyMTo1
942
+ OTo1NCBVVEMgMjAxNSBjb250YWluZXIgMSBzdGRvdXQKAgAAAAAAADBNb24g
943
+ QXByICA2IDIxOjU5OjU0IFVUQyAyMDE1IGNvbnRhaW5lciAxIHN0ZGVycgoB
944
+ AAAAAAAAME1vbiBBcHIgIDYgMjE6NTk6NTUgVVRDIDIwMTUgY29udGFpbmVy
945
+ IDEgc3Rkb3V0CgIAAAAAAAAwTW9uIEFwciAgNiAyMTo1OTo1NSBVVEMgMjAx
946
+ NSBjb250YWluZXIgMSBzdGRlcnIKAQAAAAAAADBNb24gQXByICA2IDIxOjU5
947
+ OjU2IFVUQyAyMDE1IGNvbnRhaW5lciAxIHN0ZG91dAoCAAAAAAAAME1vbiBB
948
+ cHIgIDYgMjE6NTk6NTYgVVRDIDIwMTUgY29udGFpbmVyIDEgc3RkZXJyCg==
949
949
  http_version:
950
- recorded_at: Thu, 12 Mar 2015 21:38:26 GMT
950
+ recorded_at: Mon, 06 Apr 2015 21:59:55 GMT
951
951
  - request:
952
952
  method: post
953
- uri: "<DOCKER_HOST>/v1.16/containers/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/kill"
953
+ uri: "<DOCKER_HOST>/v1.16/containers/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/kill"
954
954
  body:
955
955
  encoding: US-ASCII
956
956
  string: ''
@@ -965,12 +965,12 @@ http_interactions:
965
965
  message:
966
966
  headers:
967
967
  Date:
968
- - Thu, 12 Mar 2015 21:38:24 GMT
968
+ - Mon, 06 Apr 2015 21:59:56 GMT
969
969
  body:
970
970
  encoding: UTF-8
971
971
  string: ''
972
972
  http_version:
973
- recorded_at: Thu, 12 Mar 2015 21:38:26 GMT
973
+ recorded_at: Mon, 06 Apr 2015 21:59:55 GMT
974
974
  - request:
975
975
  method: get
976
976
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -990,13 +990,13 @@ http_interactions:
990
990
  Content-Type:
991
991
  - application/json
992
992
  Date:
993
- - Thu, 12 Mar 2015 21:38:24 GMT
993
+ - Mon, 06 Apr 2015 21:59:56 GMT
994
994
  body:
995
995
  encoding: UTF-8
996
996
  string: |
997
- {"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":"17941174bc29","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-03-12T21:38:20.023126167Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"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/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/hosts","Id":"17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","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/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-03-12T21:38:24.618541175Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-03-12T21:38:20.49184184Z"},"Volumes":{},"VolumesRW":{}}
997
+ {"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":"85c72c9dbaf1","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-06T21:59:52.447526855Z","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/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/hosts","Id":"85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","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/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-06T21:59:56.851526669Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-06T21:59:53.139600987Z"},"Volumes":{},"VolumesRW":{}}
998
998
  http_version:
999
- recorded_at: Thu, 12 Mar 2015 21:38:26 GMT
999
+ recorded_at: Mon, 06 Apr 2015 21:59:55 GMT
1000
1000
  - request:
1001
1001
  method: get
1002
1002
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -1016,13 +1016,13 @@ http_interactions:
1016
1016
  Content-Type:
1017
1017
  - application/json
1018
1018
  Date:
1019
- - Thu, 12 Mar 2015 21:38:24 GMT
1019
+ - Mon, 06 Apr 2015 21:59:56 GMT
1020
1020
  body:
1021
1021
  encoding: UTF-8
1022
1022
  string: |
1023
- {"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":"17941174bc29","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-03-12T21:38:20.023126167Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"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/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/hosts","Id":"17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","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/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-03-12T21:38:24.618541175Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-03-12T21:38:20.49184184Z"},"Volumes":{},"VolumesRW":{}}
1023
+ {"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":"85c72c9dbaf1","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-06T21:59:52.447526855Z","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/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/hosts","Id":"85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","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/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-06T21:59:56.851526669Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-06T21:59:53.139600987Z"},"Volumes":{},"VolumesRW":{}}
1024
1024
  http_version:
1025
- recorded_at: Thu, 12 Mar 2015 21:38:27 GMT
1025
+ recorded_at: Mon, 06 Apr 2015 21:59:55 GMT
1026
1026
  - request:
1027
1027
  method: get
1028
1028
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -1042,16 +1042,16 @@ http_interactions:
1042
1042
  Content-Type:
1043
1043
  - application/json
1044
1044
  Date:
1045
- - Thu, 12 Mar 2015 21:38:24 GMT
1045
+ - Mon, 06 Apr 2015 21:59:56 GMT
1046
1046
  body:
1047
1047
  encoding: UTF-8
1048
1048
  string: |
1049
- {"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":"17941174bc29","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-03-12T21:38:20.023126167Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"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/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/hosts","Id":"17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","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/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-03-12T21:38:24.618541175Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-03-12T21:38:20.49184184Z"},"Volumes":{},"VolumesRW":{}}
1049
+ {"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":"85c72c9dbaf1","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-06T21:59:52.447526855Z","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/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/hosts","Id":"85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","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/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-06T21:59:56.851526669Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-06T21:59:53.139600987Z"},"Volumes":{},"VolumesRW":{}}
1050
1050
  http_version:
1051
- recorded_at: Thu, 12 Mar 2015 21:38:27 GMT
1051
+ recorded_at: Mon, 06 Apr 2015 21:59:55 GMT
1052
1052
  - request:
1053
1053
  method: delete
1054
- uri: "<DOCKER_HOST>/v1.16/containers/17941174bc29f535ff919e6d3e95d20c7a56ad63ef18675a757f3fb0523e60be"
1054
+ uri: "<DOCKER_HOST>/v1.16/containers/85c72c9dbaf145ec56b93c0074e7ca4b2babbb6872b5d5fad8c1bd2bdf2e47e7"
1055
1055
  body:
1056
1056
  encoding: US-ASCII
1057
1057
  string: ''
@@ -1066,10 +1066,10 @@ http_interactions:
1066
1066
  message:
1067
1067
  headers:
1068
1068
  Date:
1069
- - Thu, 12 Mar 2015 21:38:24 GMT
1069
+ - Mon, 06 Apr 2015 21:59:57 GMT
1070
1070
  body:
1071
1071
  encoding: UTF-8
1072
1072
  string: ''
1073
1073
  http_version:
1074
- recorded_at: Thu, 12 Mar 2015 21:38:27 GMT
1074
+ recorded_at: Mon, 06 Apr 2015 21:59:55 GMT
1075
1075
  recorded_with: VCR 2.9.3