bigrig 0.6.0 → 0.6.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 (85) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile.lock +4 -1
  4. data/lib/bigrig/docker_adapter.rb +1 -1
  5. data/lib/bigrig/version.rb +1 -1
  6. data/spec/bigrig/docker_adapter_spec.rb +1 -1
  7. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +46 -46
  8. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +51 -51
  9. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +8 -8
  10. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +4 -4
  11. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +8 -8
  12. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +10 -10
  13. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +12 -12
  14. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +10 -10
  15. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +8 -8
  16. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +24 -24
  17. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +17 -17
  18. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +4 -4
  19. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +2 -2
  20. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +6 -6
  21. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +44 -44
  22. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +697 -252
  23. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +16 -16
  24. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +32 -32
  25. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +10 -10
  26. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +8 -8
  27. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +27 -27
  28. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/sets_the_hostname.yml +24 -24
  29. 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
  30. 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
  31. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +33 -33
  32. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +8 -8
  33. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +10 -10
  34. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +13 -13
  35. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +16 -16
  36. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +25 -25
  37. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +53 -52
  38. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +58 -58
  39. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +57 -57
  40. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +105 -105
  41. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +52 -52
  42. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +74 -74
  43. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +52 -52
  44. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +56 -56
  45. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes/should_pass_volumes_to_the_right_container.yml +56 -56
  46. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +105 -105
  47. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +52 -52
  48. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +212 -67
  49. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +54 -54
  50. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +14 -14
  51. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +67 -179
  52. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +34 -34
  53. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +83 -111
  54. data/spec/vcr/bigrig/dev/spec/data/dev_json/tails_the_logs.yml +18 -18
  55. data/spec/vcr/bigrig/dev/spec/data/scan_json/leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +266 -210
  56. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_dependant_containers_when_the_scanned_file_changes.yml +249 -223
  57. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_the_container_when_the_scanned_file_changes.yml +211 -353
  58. data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +17 -17
  59. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +11 -11
  60. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +11 -11
  61. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +11 -11
  62. data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +9 -9
  63. data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +13 -13
  64. data/spec/vcr/bigrig/run/spec/data/wait_for/bigrig_json/waits_for_wait_for.yml +24 -24
  65. data/spec/vcr/bigrig/run/spec/data/wait_for_broken_json/fails_with_an_error.yml +9 -9
  66. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +20 -20
  67. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +16 -16
  68. data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +21 -21
  69. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +50 -158
  70. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +91 -66
  71. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +167 -167
  72. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +353 -353
  73. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_dependant_containers_when_the_scanned_file_changes.yml +322 -322
  74. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_the_container_when_the_scanned_file_changes.yml +325 -327
  75. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +21 -21
  76. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +40 -40
  77. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +40 -40
  78. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +40 -40
  79. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +40 -40
  80. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +40 -40
  81. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for/bigrig_json_waits_for_wait_for.yml +60 -60
  82. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for_broken_json_fails_with_an_error.yml +60 -60
  83. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +661 -216
  84. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +662 -217
  85. metadata +2 -2
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Fri, 05 Jun 2015 23:27:09 GMT
22
+ - Tue, 23 Jun 2015 01:01:22 GMT
23
23
  Content-Length:
24
24
  - '1887'
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","Labels":null,"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","Labels":null,"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: Fri, 05 Jun 2015 23:27:09 GMT
30
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:09 GMT
50
+ - Tue, 23 Jun 2015 01:01:22 GMT
51
51
  Content-Length:
52
52
  - '1521'
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","Labels":null,"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","Labels":null,"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: Fri, 05 Jun 2015 23:27:09 GMT
58
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:09 GMT
78
+ - Tue, 23 Jun 2015 01:01:22 GMT
79
79
  Content-Length:
80
80
  - '21'
81
81
  body:
@@ -83,7 +83,7 @@ http_interactions:
83
83
  string: |
84
84
  no such id: dev-test
85
85
  http_version:
86
- recorded_at: Fri, 05 Jun 2015 23:27:09 GMT
86
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:09 GMT
106
+ - Tue, 23 Jun 2015 01:01:22 GMT
107
107
  Content-Length:
108
108
  - '21'
109
109
  body:
@@ -111,7 +111,7 @@ http_interactions:
111
111
  string: |
112
112
  no such id: dev-test
113
113
  http_version:
114
- recorded_at: Fri, 05 Jun 2015 23:27:09 GMT
114
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:09 GMT
134
+ - Tue, 23 Jun 2015 01:01:22 GMT
135
135
  Content-Length:
136
136
  - '21'
137
137
  body:
@@ -139,7 +139,7 @@ http_interactions:
139
139
  string: |
140
140
  no such id: dev-test
141
141
  http_version:
142
- recorded_at: Fri, 05 Jun 2015 23:27:09 GMT
142
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:10 GMT
162
+ - Tue, 23 Jun 2015 01:01:22 GMT
163
163
  Content-Length:
164
164
  - '21'
165
165
  body:
@@ -167,7 +167,7 @@ http_interactions:
167
167
  string: |
168
168
  no such id: dev-test
169
169
  http_version:
170
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
170
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:10 GMT
190
+ - Tue, 23 Jun 2015 01:01:22 GMT
191
191
  Content-Length:
192
192
  - '21'
193
193
  body:
@@ -195,7 +195,7 @@ http_interactions:
195
195
  string: |
196
196
  no such id: dev-test
197
197
  http_version:
198
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
198
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:10 GMT
218
+ - Tue, 23 Jun 2015 01:01:22 GMT
219
219
  Content-Length:
220
220
  - '21'
221
221
  body:
@@ -223,7 +223,7 @@ http_interactions:
223
223
  string: |
224
224
  no such id: dev-test
225
225
  http_version:
226
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
226
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:10 GMT
246
+ - Tue, 23 Jun 2015 01:01:22 GMT
247
247
  Content-Length:
248
248
  - '21'
249
249
  body:
@@ -251,7 +251,7 @@ http_interactions:
251
251
  string: |
252
252
  no such id: dev-test
253
253
  http_version:
254
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
254
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:10 GMT
274
+ - Tue, 23 Jun 2015 01:01:22 GMT
275
275
  Content-Length:
276
276
  - '21'
277
277
  body:
@@ -279,7 +279,7 @@ http_interactions:
279
279
  string: |
280
280
  no such id: dev-test
281
281
  http_version:
282
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
282
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:10 GMT
302
+ - Tue, 23 Jun 2015 01:01:22 GMT
303
303
  Content-Length:
304
304
  - '21'
305
305
  body:
@@ -307,7 +307,7 @@ http_interactions:
307
307
  string: |
308
308
  no such id: dev-logs
309
309
  http_version:
310
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
310
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:10 GMT
330
+ - Tue, 23 Jun 2015 01:01:22 GMT
331
331
  Content-Length:
332
332
  - '21'
333
333
  body:
@@ -335,7 +335,7 @@ http_interactions:
335
335
  string: |
336
336
  no such id: dev-logs
337
337
  http_version:
338
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
338
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:10 GMT
358
+ - Tue, 23 Jun 2015 01:01:22 GMT
359
359
  Content-Length:
360
360
  - '21'
361
361
  body:
@@ -363,7 +363,7 @@ http_interactions:
363
363
  string: |
364
364
  no such id: dev-logs
365
365
  http_version:
366
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
366
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:10 GMT
386
+ - Tue, 23 Jun 2015 01:01:22 GMT
387
387
  Content-Length:
388
388
  - '21'
389
389
  body:
@@ -391,7 +391,7 @@ http_interactions:
391
391
  string: |
392
392
  no such id: dev-logs
393
393
  http_version:
394
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
394
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:10 GMT
414
+ - Tue, 23 Jun 2015 01:01:22 GMT
415
415
  Content-Length:
416
416
  - '21'
417
417
  body:
@@ -419,7 +419,7 @@ http_interactions:
419
419
  string: |
420
420
  no such id: dev-logs
421
421
  http_version:
422
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
422
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:10 GMT
442
+ - Tue, 23 Jun 2015 01:01:23 GMT
443
443
  Content-Length:
444
444
  - '21'
445
445
  body:
@@ -447,7 +447,7 @@ http_interactions:
447
447
  string: |
448
448
  no such id: dev-logs
449
449
  http_version:
450
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
450
+ recorded_at: Tue, 23 Jun 2015 01:01:22 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
- - Fri, 05 Jun 2015 23:27:10 GMT
470
+ - Tue, 23 Jun 2015 01:01:23 GMT
471
471
  Content-Length:
472
472
  - '21'
473
473
  body:
@@ -475,7 +475,7 @@ http_interactions:
475
475
  string: |
476
476
  no such id: dev-logs
477
477
  http_version:
478
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
478
+ recorded_at: Tue, 23 Jun 2015 01:01:23 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
- - Fri, 05 Jun 2015 23:27:10 GMT
498
+ - Tue, 23 Jun 2015 01:01:23 GMT
499
499
  Content-Length:
500
500
  - '21'
501
501
  body:
@@ -503,13 +503,13 @@ http_interactions:
503
503
  string: |
504
504
  no such id: dev-logs
505
505
  http_version:
506
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
506
+ recorded_at: Tue, 23 Jun 2015 01:01:23 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"],"Hostname":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","ExposedPorts":{"80/tcp":{}}}'
513
513
  headers:
514
514
  User-Agent:
515
515
  - Swipely/Docker-API 1.21.4
@@ -523,21 +523,21 @@ http_interactions:
523
523
  Content-Type:
524
524
  - application/json
525
525
  Date:
526
- - Fri, 05 Jun 2015 23:27:10 GMT
526
+ - Tue, 23 Jun 2015 01:01:23 GMT
527
527
  Content-Length:
528
528
  - '90'
529
529
  body:
530
530
  encoding: UTF-8
531
531
  string: |
532
- {"Id":"b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee","Warnings":null}
532
+ {"Id":"ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04","Warnings":null}
533
533
  http_version:
534
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
534
+ recorded_at: Tue, 23 Jun 2015 01:01:23 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":[],"Hostname":"HNEWTONMAC3","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","ExposedPorts":{}}'
541
541
  headers:
542
542
  User-Agent:
543
543
  - Swipely/Docker-API 1.21.4
@@ -551,18 +551,18 @@ http_interactions:
551
551
  Content-Type:
552
552
  - application/json
553
553
  Date:
554
- - Fri, 05 Jun 2015 23:27:10 GMT
554
+ - Tue, 23 Jun 2015 01:01:23 GMT
555
555
  Content-Length:
556
556
  - '90'
557
557
  body:
558
558
  encoding: UTF-8
559
559
  string: |
560
- {"Id":"360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667","Warnings":null}
560
+ {"Id":"1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09","Warnings":null}
561
561
  http_version:
562
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
562
+ recorded_at: Tue, 23 Jun 2015 01:01:23 GMT
563
563
  - request:
564
564
  method: post
565
- uri: "<DOCKER_HOST>/v1.16/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/start"
565
+ uri: "<DOCKER_HOST>/v1.16/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/start"
566
566
  body:
567
567
  encoding: UTF-8
568
568
  string: '{"Links":[],"ExtraHosts":[],"PortBindings":{},"VolumesFrom":[],"Binds":[]}'
@@ -577,12 +577,12 @@ http_interactions:
577
577
  message:
578
578
  headers:
579
579
  Date:
580
- - Fri, 05 Jun 2015 23:27:10 GMT
580
+ - Tue, 23 Jun 2015 01:01:23 GMT
581
581
  body:
582
582
  encoding: UTF-8
583
583
  string: ''
584
584
  http_version:
585
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
585
+ recorded_at: Tue, 23 Jun 2015 01:01:23 GMT
586
586
  - request:
587
587
  method: get
588
588
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -602,19 +602,19 @@ http_interactions:
602
602
  Content-Type:
603
603
  - application/json
604
604
  Date:
605
- - Fri, 05 Jun 2015 23:27:10 GMT
605
+ - Tue, 23 Jun 2015 01:01:23 GMT
606
606
  body:
607
607
  encoding: UTF-8
608
608
  string: |
609
- {"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":"b4d8a2eaef85","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:10.44970504Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hosts","Id":"b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.101","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:165","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:65","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24124,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:10.942828845Z"},"Volumes":{},"VolumesRW":{}}
609
+ {"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":"HNEWTONMAC3","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T01:01:23.191252103Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hosts","Id":"1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.128","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:80","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:80","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10743,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T01:01:23.75770518Z"},"Volumes":{},"VolumesRW":{}}
610
610
  http_version:
611
- recorded_at: Fri, 05 Jun 2015 23:27:10 GMT
611
+ recorded_at: Tue, 23 Jun 2015 01:01:23 GMT
612
612
  - request:
613
613
  method: post
614
- uri: "<DOCKER_HOST>/v1.16/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/exec"
614
+ uri: "<DOCKER_HOST>/v1.16/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/start"
615
615
  body:
616
616
  encoding: UTF-8
617
- string: '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":false,"Cmd":["ls","/bigrig-wait.sh"]}'
617
+ string: '{"Links":[],"ExtraHosts":[],"PortBindings":{"80/tcp":[{"HostPort":"4568"}]},"VolumesFrom":[],"Binds":[]}'
618
618
  headers:
619
619
  User-Agent:
620
620
  - Swipely/Docker-API 1.21.4
@@ -622,27 +622,22 @@ http_interactions:
622
622
  - application/json
623
623
  response:
624
624
  status:
625
- code: 201
625
+ code: 204
626
626
  message:
627
627
  headers:
628
- Content-Type:
629
- - application/json
630
628
  Date:
631
- - Fri, 05 Jun 2015 23:27:11 GMT
632
- Content-Length:
633
- - '74'
629
+ - Tue, 23 Jun 2015 01:01:23 GMT
634
630
  body:
635
631
  encoding: UTF-8
636
- string: |
637
- {"Id":"8085579fb5648165a9e5057c2118ef0ef6c2c1d7014b2148862d3a24798ae968"}
632
+ string: ''
638
633
  http_version:
639
- recorded_at: Fri, 05 Jun 2015 23:27:11 GMT
634
+ recorded_at: Tue, 23 Jun 2015 01:01:23 GMT
640
635
  - request:
641
636
  method: post
642
- uri: "<DOCKER_HOST>/v1.16/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/start"
637
+ uri: "<DOCKER_HOST>/v1.16/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/exec"
643
638
  body:
644
639
  encoding: UTF-8
645
- string: '{"Links":[],"ExtraHosts":[],"PortBindings":{"80/tcp":[{"HostPort":"4568"}]},"VolumesFrom":[],"Binds":[]}'
640
+ string: '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":false,"Cmd":["ls","/bigrig-wait.sh"]}'
646
641
  headers:
647
642
  User-Agent:
648
643
  - Swipely/Docker-API 1.21.4
@@ -650,16 +645,21 @@ http_interactions:
650
645
  - application/json
651
646
  response:
652
647
  status:
653
- code: 204
648
+ code: 201
654
649
  message:
655
650
  headers:
651
+ Content-Type:
652
+ - application/json
656
653
  Date:
657
- - Fri, 05 Jun 2015 23:27:11 GMT
654
+ - Tue, 23 Jun 2015 01:01:23 GMT
655
+ Content-Length:
656
+ - '74'
658
657
  body:
659
658
  encoding: UTF-8
660
- string: ''
659
+ string: |
660
+ {"Id":"525bd7a041ded9f71832a4113789f7c8a918f529e38278197045787c9321252c"}
661
661
  http_version:
662
- recorded_at: Fri, 05 Jun 2015 23:27:11 GMT
662
+ recorded_at: Tue, 23 Jun 2015 01:01:23 GMT
663
663
  - request:
664
664
  method: get
665
665
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -679,19 +679,19 @@ http_interactions:
679
679
  Content-Type:
680
680
  - application/json
681
681
  Date:
682
- - Fri, 05 Jun 2015 23:27:11 GMT
682
+ - Tue, 23 Jun 2015 01:01:23 GMT
683
683
  body:
684
684
  encoding: UTF-8
685
685
  string: |
686
- {"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":"360c9cc66575","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:10.456120181Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hosts","Id":"360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.102","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:166","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:66","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24135,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:11.118220318Z"},"Volumes":{},"VolumesRW":{}}
686
+ {"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T01:01:23.200245909Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hosts","Id":"ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.127","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7f","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:7f","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10747,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T01:01:23.847085313Z"},"Volumes":{},"VolumesRW":{}}
687
687
  http_version:
688
- recorded_at: Fri, 05 Jun 2015 23:27:11 GMT
688
+ recorded_at: Tue, 23 Jun 2015 01:01:23 GMT
689
689
  - request:
690
690
  method: post
691
- uri: "<DOCKER_HOST>/v1.16/exec/8085579fb5648165a9e5057c2118ef0ef6c2c1d7014b2148862d3a24798ae968/start"
691
+ uri: "<DOCKER_HOST>/v1.16/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/exec"
692
692
  body:
693
693
  encoding: UTF-8
694
- string: '{"Tty":false,"Detach":false}'
694
+ string: '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":false,"Cmd":["ls","/bigrig-wait.sh"]}'
695
695
  headers:
696
696
  User-Agent:
697
697
  - Swipely/Docker-API 1.21.4
@@ -699,24 +699,27 @@ http_interactions:
699
699
  - application/json
700
700
  response:
701
701
  status:
702
- code: 200
702
+ code: 201
703
703
  message:
704
704
  headers:
705
705
  Content-Type:
706
- - application/vnd.docker.raw-stream
706
+ - application/json
707
+ Date:
708
+ - Tue, 23 Jun 2015 01:01:23 GMT
709
+ Content-Length:
710
+ - '74'
707
711
  body:
708
712
  encoding: UTF-8
709
- string: !binary |-
710
- AgAAAAAAAD1sczogY2Fubm90IGFjY2VzcyAvYmlncmlnLXdhaXQuc2g6IE5v
711
- IHN1Y2ggZmlsZSBvciBkaXJlY3RvcnkK
713
+ string: |
714
+ {"Id":"cbbf45435b54912670f06e88218b75b4de5aa2f2a1d8f6d3cde8587e1d1ae1b5"}
712
715
  http_version:
713
- recorded_at: Fri, 05 Jun 2015 23:27:11 GMT
716
+ recorded_at: Tue, 23 Jun 2015 01:01:23 GMT
714
717
  - request:
715
718
  method: post
716
- uri: "<DOCKER_HOST>/v1.16/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/exec"
719
+ uri: "<DOCKER_HOST>/v1.16/exec/525bd7a041ded9f71832a4113789f7c8a918f529e38278197045787c9321252c/start"
717
720
  body:
718
721
  encoding: UTF-8
719
- string: '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":false,"Cmd":["ls","/bigrig-wait.sh"]}'
722
+ string: '{"Tty":false,"Detach":false}'
720
723
  headers:
721
724
  User-Agent:
722
725
  - Swipely/Docker-API 1.21.4
@@ -724,24 +727,21 @@ http_interactions:
724
727
  - application/json
725
728
  response:
726
729
  status:
727
- code: 201
730
+ code: 200
728
731
  message:
729
732
  headers:
730
733
  Content-Type:
731
- - application/json
732
- Date:
733
- - Fri, 05 Jun 2015 23:27:11 GMT
734
- Content-Length:
735
- - '74'
734
+ - application/vnd.docker.raw-stream
736
735
  body:
737
736
  encoding: UTF-8
738
- string: |
739
- {"Id":"613ef0986cbea17d5afa4044f0ad0aca3b40a6e63e0a4dcaf0ba41f55e2e5ecc"}
737
+ string: !binary |-
738
+ AgAAAAAAAD1sczogY2Fubm90IGFjY2VzcyAvYmlncmlnLXdhaXQuc2g6IE5v
739
+ IHN1Y2ggZmlsZSBvciBkaXJlY3RvcnkK
740
740
  http_version:
741
- recorded_at: Fri, 05 Jun 2015 23:27:11 GMT
741
+ recorded_at: Tue, 23 Jun 2015 01:01:24 GMT
742
742
  - request:
743
743
  method: get
744
- uri: "<DOCKER_HOST>/v1.16/exec/8085579fb5648165a9e5057c2118ef0ef6c2c1d7014b2148862d3a24798ae968/json"
744
+ uri: "<DOCKER_HOST>/v1.16/exec/525bd7a041ded9f71832a4113789f7c8a918f529e38278197045787c9321252c/json"
745
745
  body:
746
746
  encoding: US-ASCII
747
747
  string: ''
@@ -758,15 +758,15 @@ http_interactions:
758
758
  Content-Type:
759
759
  - application/json
760
760
  Date:
761
- - Fri, 05 Jun 2015 23:27:11 GMT
761
+ - Tue, 23 Jun 2015 01:01:24 GMT
762
762
  body:
763
763
  encoding: UTF-8
764
- string: '{"ID":"8085579fb5648165a9e5057c2118ef0ef6c2c1d7014b2148862d3a24798ae968","Running":false,"ExitCode":2,"ProcessConfig":{"privileged":false,"user":"","tty":false,"entrypoint":"ls","arguments":["/bigrig-wait.sh"]},"OpenStdin":false,"OpenStderr":true,"OpenStdout":true,"Container":{"State":{"Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":24124,"ExitCode":0,"Error":"","StartedAt":"2015-06-05T23:27:10.942828845Z","FinishedAt":"0001-01-01T00:00:00Z"},"ID":"b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee","Created":"2015-06-05T23:27:10.44970504Z","Path":"/run.sh","Args":[],"Config":{"Hostname":"b4d8a2eaef85","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"Cpuset":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["/run.sh"],"Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Volumes":null,"WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"MacAddress":"","OnBuild":null,"Labels":{}},"Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","NetworkSettings":{"IPAddress":"172.17.1.101","IPPrefixLen":16,"MacAddress":"02:42:ac:11:01:65","LinkLocalIPv6Address":"fe80::42:acff:fe11:165","LinkLocalIPv6PrefixLen":64,"GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"Gateway":"172.17.42.1","IPv6Gateway":"","Bridge":"docker0","PortMapping":null,"Ports":{}},"ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/resolv.conf","HostnamePath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hosts","LogPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee-json.log","Name":"/dev-logs","Driver":"aufs","ExecDriver":"native-0.2","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","RestartCount":0,"UpdateDns":false,"Volumes":{},"VolumesRW":{},"AppliedVolumesFrom":null}}'
764
+ string: '{"ID":"525bd7a041ded9f71832a4113789f7c8a918f529e38278197045787c9321252c","Running":false,"ExitCode":2,"ProcessConfig":{"privileged":false,"user":"","tty":false,"entrypoint":"ls","arguments":["/bigrig-wait.sh"]},"OpenStdin":false,"OpenStderr":true,"OpenStdout":true,"Container":{"State":{"Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":10743,"ExitCode":0,"Error":"","StartedAt":"2015-06-23T01:01:23.75770518Z","FinishedAt":"0001-01-01T00:00:00Z"},"ID":"1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09","Created":"2015-06-23T01:01:23.191252103Z","Path":"/run.sh","Args":[],"Config":{"Hostname":"HNEWTONMAC3","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"Cpuset":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["/run.sh"],"Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Volumes":null,"WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"MacAddress":"","OnBuild":null,"Labels":{}},"Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","NetworkSettings":{"IPAddress":"172.17.0.128","IPPrefixLen":16,"MacAddress":"02:42:ac:11:00:80","LinkLocalIPv6Address":"fe80::42:acff:fe11:80","LinkLocalIPv6PrefixLen":64,"GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"Gateway":"172.17.42.1","IPv6Gateway":"","Bridge":"docker0","PortMapping":null,"Ports":{}},"ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/resolv.conf","HostnamePath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hosts","LogPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09-json.log","Name":"/dev-logs","Driver":"aufs","ExecDriver":"native-0.2","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","RestartCount":0,"UpdateDns":false,"Volumes":{},"VolumesRW":{},"AppliedVolumesFrom":null}}'
765
765
  http_version:
766
- recorded_at: Fri, 05 Jun 2015 23:27:11 GMT
766
+ recorded_at: Tue, 23 Jun 2015 01:01:24 GMT
767
767
  - request:
768
768
  method: post
769
- uri: "<DOCKER_HOST>/v1.16/exec/613ef0986cbea17d5afa4044f0ad0aca3b40a6e63e0a4dcaf0ba41f55e2e5ecc/start"
769
+ uri: "<DOCKER_HOST>/v1.16/exec/cbbf45435b54912670f06e88218b75b4de5aa2f2a1d8f6d3cde8587e1d1ae1b5/start"
770
770
  body:
771
771
  encoding: UTF-8
772
772
  string: '{"Tty":false,"Detach":false}'
@@ -788,10 +788,10 @@ http_interactions:
788
788
  AgAAAAAAAD1sczogY2Fubm90IGFjY2VzcyAvYmlncmlnLXdhaXQuc2g6IE5v
789
789
  IHN1Y2ggZmlsZSBvciBkaXJlY3RvcnkK
790
790
  http_version:
791
- recorded_at: Fri, 05 Jun 2015 23:27:11 GMT
791
+ recorded_at: Tue, 23 Jun 2015 01:01:24 GMT
792
792
  - request:
793
793
  method: get
794
- uri: "<DOCKER_HOST>/v1.16/exec/613ef0986cbea17d5afa4044f0ad0aca3b40a6e63e0a4dcaf0ba41f55e2e5ecc/json"
794
+ uri: "<DOCKER_HOST>/v1.16/exec/cbbf45435b54912670f06e88218b75b4de5aa2f2a1d8f6d3cde8587e1d1ae1b5/json"
795
795
  body:
796
796
  encoding: US-ASCII
797
797
  string: ''
@@ -808,14 +808,14 @@ http_interactions:
808
808
  Content-Type:
809
809
  - application/json
810
810
  Date:
811
- - Fri, 05 Jun 2015 23:27:11 GMT
811
+ - Tue, 23 Jun 2015 01:01:24 GMT
812
812
  body:
813
813
  encoding: UTF-8
814
- string: '{"ID":"613ef0986cbea17d5afa4044f0ad0aca3b40a6e63e0a4dcaf0ba41f55e2e5ecc","Running":false,"ExitCode":2,"ProcessConfig":{"privileged":false,"user":"","tty":false,"entrypoint":"ls","arguments":["/bigrig-wait.sh"]},"OpenStdin":false,"OpenStderr":true,"OpenStdout":true,"Container":{"State":{"Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":24135,"ExitCode":0,"Error":"","StartedAt":"2015-06-05T23:27:11.118220318Z","FinishedAt":"0001-01-01T00:00:00Z"},"ID":"360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667","Created":"2015-06-05T23:27:10.456120181Z","Path":"/bin/sh","Args":["-c","ruby
815
- /code/server.rb"],"Config":{"Hostname":"360c9cc66575","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"Cpuset":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":{"80/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"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"],"Cmd":null,"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Volumes":null,"WorkingDir":"","Entrypoint":["/bin/sh","-c","ruby
816
- /code/server.rb"],"NetworkDisabled":false,"MacAddress":"","OnBuild":null,"Labels":{}},"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","NetworkSettings":{"IPAddress":"172.17.1.102","IPPrefixLen":16,"MacAddress":"02:42:ac:11:01:66","LinkLocalIPv6Address":"fe80::42:acff:fe11:166","LinkLocalIPv6PrefixLen":64,"GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"Gateway":"172.17.42.1","IPv6Gateway":"","Bridge":"docker0","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/resolv.conf","HostnamePath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hosts","LogPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667-json.log","Name":"/dev-test","Driver":"aufs","ExecDriver":"native-0.2","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","RestartCount":0,"UpdateDns":false,"Volumes":{},"VolumesRW":{},"AppliedVolumesFrom":null}}'
814
+ string: '{"ID":"cbbf45435b54912670f06e88218b75b4de5aa2f2a1d8f6d3cde8587e1d1ae1b5","Running":false,"ExitCode":2,"ProcessConfig":{"privileged":false,"user":"","tty":false,"entrypoint":"ls","arguments":["/bigrig-wait.sh"]},"OpenStdin":false,"OpenStderr":true,"OpenStdout":true,"Container":{"State":{"Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":10747,"ExitCode":0,"Error":"","StartedAt":"2015-06-23T01:01:23.847085313Z","FinishedAt":"0001-01-01T00:00:00Z"},"ID":"ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04","Created":"2015-06-23T01:01:23.200245909Z","Path":"/bin/sh","Args":["-c","ruby
815
+ /code/server.rb"],"Config":{"Hostname":"HNEWTONMAC3","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"Cpuset":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":{"80/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"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"],"Cmd":null,"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Volumes":null,"WorkingDir":"","Entrypoint":["/bin/sh","-c","ruby
816
+ /code/server.rb"],"NetworkDisabled":false,"MacAddress":"","OnBuild":null,"Labels":{}},"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","NetworkSettings":{"IPAddress":"172.17.0.127","IPPrefixLen":16,"MacAddress":"02:42:ac:11:00:7f","LinkLocalIPv6Address":"fe80::42:acff:fe11:7f","LinkLocalIPv6PrefixLen":64,"GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"Gateway":"172.17.42.1","IPv6Gateway":"","Bridge":"docker0","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/resolv.conf","HostnamePath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hosts","LogPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04-json.log","Name":"/dev-test","Driver":"aufs","ExecDriver":"native-0.2","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","RestartCount":0,"UpdateDns":false,"Volumes":{},"VolumesRW":{},"AppliedVolumesFrom":null}}'
817
817
  http_version:
818
- recorded_at: Fri, 05 Jun 2015 23:27:11 GMT
818
+ recorded_at: Tue, 23 Jun 2015 01:01:24 GMT
819
819
  - request:
820
820
  method: get
821
821
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -835,13 +835,13 @@ http_interactions:
835
835
  Content-Type:
836
836
  - application/json
837
837
  Date:
838
- - Fri, 05 Jun 2015 23:27:11 GMT
838
+ - Tue, 23 Jun 2015 01:01:24 GMT
839
839
  body:
840
840
  encoding: UTF-8
841
841
  string: |
842
- {"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":"b4d8a2eaef85","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:10.44970504Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["8085579fb5648165a9e5057c2118ef0ef6c2c1d7014b2148862d3a24798ae968"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hosts","Id":"b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.101","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:165","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:65","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24124,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:10.942828845Z"},"Volumes":{},"VolumesRW":{}}
842
+ {"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":"HNEWTONMAC3","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T01:01:23.191252103Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["525bd7a041ded9f71832a4113789f7c8a918f529e38278197045787c9321252c"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hosts","Id":"1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.128","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:80","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:80","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10743,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T01:01:23.75770518Z"},"Volumes":{},"VolumesRW":{}}
843
843
  http_version:
844
- recorded_at: Fri, 05 Jun 2015 23:27:11 GMT
844
+ recorded_at: Tue, 23 Jun 2015 01:01:24 GMT
845
845
  - request:
846
846
  method: get
847
847
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -861,13 +861,13 @@ http_interactions:
861
861
  Content-Type:
862
862
  - application/json
863
863
  Date:
864
- - Fri, 05 Jun 2015 23:27:11 GMT
864
+ - Tue, 23 Jun 2015 01:01:24 GMT
865
865
  body:
866
866
  encoding: UTF-8
867
867
  string: |
868
- {"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":"360c9cc66575","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:10.456120181Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["613ef0986cbea17d5afa4044f0ad0aca3b40a6e63e0a4dcaf0ba41f55e2e5ecc"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hosts","Id":"360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.102","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:166","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:66","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24135,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:11.118220318Z"},"Volumes":{},"VolumesRW":{}}
868
+ {"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T01:01:23.200245909Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["cbbf45435b54912670f06e88218b75b4de5aa2f2a1d8f6d3cde8587e1d1ae1b5"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hosts","Id":"ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.127","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7f","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:7f","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10747,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T01:01:23.847085313Z"},"Volumes":{},"VolumesRW":{}}
869
869
  http_version:
870
- recorded_at: Fri, 05 Jun 2015 23:27:11 GMT
870
+ recorded_at: Tue, 23 Jun 2015 01:01:24 GMT
871
871
  - request:
872
872
  method: get
873
873
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -887,13 +887,13 @@ http_interactions:
887
887
  Content-Type:
888
888
  - application/json
889
889
  Date:
890
- - Fri, 05 Jun 2015 23:27:14 GMT
890
+ - Tue, 23 Jun 2015 01:01:26 GMT
891
891
  body:
892
892
  encoding: UTF-8
893
893
  string: |
894
- {"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":"360c9cc66575","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:10.456120181Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["613ef0986cbea17d5afa4044f0ad0aca3b40a6e63e0a4dcaf0ba41f55e2e5ecc"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hosts","Id":"360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.102","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:166","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:66","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24135,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:11.118220318Z"},"Volumes":{},"VolumesRW":{}}
894
+ {"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T01:01:23.200245909Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["cbbf45435b54912670f06e88218b75b4de5aa2f2a1d8f6d3cde8587e1d1ae1b5"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hosts","Id":"ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.127","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7f","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:7f","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10747,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T01:01:23.847085313Z"},"Volumes":{},"VolumesRW":{}}
895
895
  http_version:
896
- recorded_at: Fri, 05 Jun 2015 23:27:14 GMT
896
+ recorded_at: Tue, 23 Jun 2015 01:01:26 GMT
897
897
  - request:
898
898
  method: get
899
899
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -913,16 +913,16 @@ http_interactions:
913
913
  Content-Type:
914
914
  - application/json
915
915
  Date:
916
- - Fri, 05 Jun 2015 23:27:14 GMT
916
+ - Tue, 23 Jun 2015 01:01:26 GMT
917
917
  body:
918
918
  encoding: UTF-8
919
919
  string: |
920
- {"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":"360c9cc66575","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:10.456120181Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["613ef0986cbea17d5afa4044f0ad0aca3b40a6e63e0a4dcaf0ba41f55e2e5ecc"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hosts","Id":"360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.102","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:166","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:66","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24135,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:11.118220318Z"},"Volumes":{},"VolumesRW":{}}
920
+ {"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T01:01:23.200245909Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["cbbf45435b54912670f06e88218b75b4de5aa2f2a1d8f6d3cde8587e1d1ae1b5"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hosts","Id":"ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.127","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7f","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:7f","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10747,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T01:01:23.847085313Z"},"Volumes":{},"VolumesRW":{}}
921
921
  http_version:
922
- recorded_at: Fri, 05 Jun 2015 23:27:14 GMT
922
+ recorded_at: Tue, 23 Jun 2015 01:01:26 GMT
923
923
  - request:
924
924
  method: get
925
- uri: "<DOCKER_HOST>/v1.16/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/logs?follow=true&stderr=true&stdout=true"
925
+ uri: "<DOCKER_HOST>/v1.16/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/logs?follow=true&stderr=true&stdout=true"
926
926
  body:
927
927
  encoding: US-ASCII
928
928
  string: ''
@@ -937,7 +937,7 @@ http_interactions:
937
937
  message:
938
938
  headers:
939
939
  Date:
940
- - Fri, 05 Jun 2015 23:27:14 GMT
940
+ - Tue, 23 Jun 2015 01:01:26 GMT
941
941
  Content-Length:
942
942
  - '0'
943
943
  Content-Type:
@@ -946,10 +946,10 @@ http_interactions:
946
946
  encoding: UTF-8
947
947
  string: ''
948
948
  http_version:
949
- recorded_at: Fri, 05 Jun 2015 23:27:14 GMT
949
+ recorded_at: Tue, 23 Jun 2015 01:01:26 GMT
950
950
  - request:
951
951
  method: post
952
- uri: "<DOCKER_HOST>/v1.16/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/kill"
952
+ uri: "<DOCKER_HOST>/v1.16/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/kill"
953
953
  body:
954
954
  encoding: US-ASCII
955
955
  string: ''
@@ -964,12 +964,12 @@ http_interactions:
964
964
  message:
965
965
  headers:
966
966
  Date:
967
- - Fri, 05 Jun 2015 23:27:14 GMT
967
+ - Tue, 23 Jun 2015 01:01:27 GMT
968
968
  body:
969
969
  encoding: UTF-8
970
970
  string: ''
971
971
  http_version:
972
- recorded_at: Fri, 05 Jun 2015 23:27:14 GMT
972
+ recorded_at: Tue, 23 Jun 2015 01:01:27 GMT
973
973
  - request:
974
974
  method: get
975
975
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -989,13 +989,13 @@ http_interactions:
989
989
  Content-Type:
990
990
  - application/json
991
991
  Date:
992
- - Fri, 05 Jun 2015 23:27:14 GMT
992
+ - Tue, 23 Jun 2015 01:01:27 GMT
993
993
  body:
994
994
  encoding: UTF-8
995
995
  string: |
996
- {"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":"360c9cc66575","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:10.456120181Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hosts","Id":"360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667-json.log","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/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:27:14.312441177Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:27:11.118220318Z"},"Volumes":{},"VolumesRW":{}}
996
+ {"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T01:01:23.200245909Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hosts","Id":"ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04-json.log","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/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-23T01:01:26.985817856Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-23T01:01:23.847085313Z"},"Volumes":{},"VolumesRW":{}}
997
997
  http_version:
998
- recorded_at: Fri, 05 Jun 2015 23:27:14 GMT
998
+ recorded_at: Tue, 23 Jun 2015 01:01:27 GMT
999
999
  - request:
1000
1000
  method: get
1001
1001
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -1015,13 +1015,13 @@ http_interactions:
1015
1015
  Content-Type:
1016
1016
  - application/json
1017
1017
  Date:
1018
- - Fri, 05 Jun 2015 23:27:14 GMT
1018
+ - Tue, 23 Jun 2015 01:01:27 GMT
1019
1019
  body:
1020
1020
  encoding: UTF-8
1021
1021
  string: |
1022
- {"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":"360c9cc66575","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:10.456120181Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hosts","Id":"360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667-json.log","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/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:27:14.312441177Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:27:11.118220318Z"},"Volumes":{},"VolumesRW":{}}
1022
+ {"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T01:01:23.200245909Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hosts","Id":"ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04-json.log","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/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-23T01:01:26.985817856Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-23T01:01:23.847085313Z"},"Volumes":{},"VolumesRW":{}}
1023
1023
  http_version:
1024
- recorded_at: Fri, 05 Jun 2015 23:27:14 GMT
1024
+ recorded_at: Tue, 23 Jun 2015 01:01:27 GMT
1025
1025
  - request:
1026
1026
  method: get
1027
1027
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -1041,16 +1041,16 @@ http_interactions:
1041
1041
  Content-Type:
1042
1042
  - application/json
1043
1043
  Date:
1044
- - Fri, 05 Jun 2015 23:27:14 GMT
1044
+ - Tue, 23 Jun 2015 01:01:27 GMT
1045
1045
  body:
1046
1046
  encoding: UTF-8
1047
1047
  string: |
1048
- {"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":"360c9cc66575","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:10.456120181Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/hosts","Id":"360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667-json.log","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/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:27:14.312441177Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:27:11.118220318Z"},"Volumes":{},"VolumesRW":{}}
1048
+ {"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T01:01:23.200245909Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/hosts","Id":"ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04-json.log","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/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-23T01:01:26.985817856Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-23T01:01:23.847085313Z"},"Volumes":{},"VolumesRW":{}}
1049
1049
  http_version:
1050
- recorded_at: Fri, 05 Jun 2015 23:27:14 GMT
1050
+ recorded_at: Tue, 23 Jun 2015 01:01:27 GMT
1051
1051
  - request:
1052
1052
  method: delete
1053
- uri: "<DOCKER_HOST>/v1.16/containers/360c9cc6657541f18dfab84379314336267262e5c78d1d99a0bd0521a808f667"
1053
+ uri: "<DOCKER_HOST>/v1.16/containers/ef2ec6d7649cae3874712b6b92ac70ece4793bf8f81cc880e2f6217393c0ee04"
1054
1054
  body:
1055
1055
  encoding: US-ASCII
1056
1056
  string: ''
@@ -1065,12 +1065,12 @@ http_interactions:
1065
1065
  message:
1066
1066
  headers:
1067
1067
  Date:
1068
- - Fri, 05 Jun 2015 23:27:14 GMT
1068
+ - Tue, 23 Jun 2015 01:01:27 GMT
1069
1069
  body:
1070
1070
  encoding: UTF-8
1071
1071
  string: ''
1072
1072
  http_version:
1073
- recorded_at: Fri, 05 Jun 2015 23:27:14 GMT
1073
+ recorded_at: Tue, 23 Jun 2015 01:01:27 GMT
1074
1074
  - request:
1075
1075
  method: get
1076
1076
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -1090,13 +1090,13 @@ http_interactions:
1090
1090
  Content-Type:
1091
1091
  - application/json
1092
1092
  Date:
1093
- - Fri, 05 Jun 2015 23:27:14 GMT
1093
+ - Tue, 23 Jun 2015 01:01:27 GMT
1094
1094
  body:
1095
1095
  encoding: UTF-8
1096
1096
  string: |
1097
- {"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":"b4d8a2eaef85","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:10.44970504Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["8085579fb5648165a9e5057c2118ef0ef6c2c1d7014b2148862d3a24798ae968"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hosts","Id":"b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.101","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:165","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:65","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24124,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:10.942828845Z"},"Volumes":{},"VolumesRW":{}}
1097
+ {"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":"HNEWTONMAC3","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T01:01:23.191252103Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["525bd7a041ded9f71832a4113789f7c8a918f529e38278197045787c9321252c"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hosts","Id":"1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.128","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:80","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:80","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10743,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T01:01:23.75770518Z"},"Volumes":{},"VolumesRW":{}}
1098
1098
  http_version:
1099
- recorded_at: Fri, 05 Jun 2015 23:27:14 GMT
1099
+ recorded_at: Tue, 23 Jun 2015 01:01:27 GMT
1100
1100
  - request:
1101
1101
  method: get
1102
1102
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -1116,16 +1116,16 @@ http_interactions:
1116
1116
  Content-Type:
1117
1117
  - application/json
1118
1118
  Date:
1119
- - Fri, 05 Jun 2015 23:27:14 GMT
1119
+ - Tue, 23 Jun 2015 01:01:27 GMT
1120
1120
  body:
1121
1121
  encoding: UTF-8
1122
1122
  string: |
1123
- {"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":"b4d8a2eaef85","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:10.44970504Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["8085579fb5648165a9e5057c2118ef0ef6c2c1d7014b2148862d3a24798ae968"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hosts","Id":"b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.101","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:165","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:65","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24124,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:10.942828845Z"},"Volumes":{},"VolumesRW":{}}
1123
+ {"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":"HNEWTONMAC3","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T01:01:23.191252103Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["525bd7a041ded9f71832a4113789f7c8a918f529e38278197045787c9321252c"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hosts","Id":"1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.128","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:80","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:80","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10743,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T01:01:23.75770518Z"},"Volumes":{},"VolumesRW":{}}
1124
1124
  http_version:
1125
- recorded_at: Fri, 05 Jun 2015 23:27:14 GMT
1125
+ recorded_at: Tue, 23 Jun 2015 01:01:27 GMT
1126
1126
  - request:
1127
1127
  method: get
1128
- uri: "<DOCKER_HOST>/v1.16/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/logs?follow=true&stderr=true&stdout=true"
1128
+ uri: "<DOCKER_HOST>/v1.16/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/logs?follow=true&stderr=true&stdout=true"
1129
1129
  body:
1130
1130
  encoding: US-ASCII
1131
1131
  string: ''
@@ -1140,27 +1140,27 @@ http_interactions:
1140
1140
  message:
1141
1141
  headers:
1142
1142
  Date:
1143
- - Fri, 05 Jun 2015 23:27:11 GMT
1143
+ - Tue, 23 Jun 2015 01:01:24 GMT
1144
1144
  Content-Type:
1145
1145
  - application/octet-stream
1146
1146
  body:
1147
1147
  encoding: UTF-8
1148
1148
  string: !binary |-
1149
- AQAAAAAAADBGcmkgSnVuICA1IDIzOjI3OjEwIFVUQyAyMDE1IGNvbnRhaW5l
1150
- ciAxIHN0ZG91dAoCAAAAAAAAMEZyaSBKdW4gIDUgMjM6Mjc6MTAgVVRDIDIw
1151
- MTUgY29udGFpbmVyIDEgc3RkZXJyCgEAAAAAAAAwRnJpIEp1biAgNSAyMzoy
1152
- NzoxMSBVVEMgMjAxNSBjb250YWluZXIgMSBzdGRvdXQKAgAAAAAAADBGcmkg
1153
- SnVuICA1IDIzOjI3OjExIFVUQyAyMDE1IGNvbnRhaW5lciAxIHN0ZGVycgoB
1154
- AAAAAAAAMEZyaSBKdW4gIDUgMjM6Mjc6MTIgVVRDIDIwMTUgY29udGFpbmVy
1155
- IDEgc3Rkb3V0CgIAAAAAAAAwRnJpIEp1biAgNSAyMzoyNzoxMiBVVEMgMjAx
1156
- NSBjb250YWluZXIgMSBzdGRlcnIKAQAAAAAAADBGcmkgSnVuICA1IDIzOjI3
1157
- OjEzIFVUQyAyMDE1IGNvbnRhaW5lciAxIHN0ZG91dAoCAAAAAAAAMEZyaSBK
1158
- dW4gIDUgMjM6Mjc6MTMgVVRDIDIwMTUgY29udGFpbmVyIDEgc3RkZXJyCg==
1149
+ AQAAAAAAADBUdWUgSnVuIDIzIDAxOjAxOjIzIFVUQyAyMDE1IGNvbnRhaW5l
1150
+ ciAxIHN0ZG91dAoCAAAAAAAAMFR1ZSBKdW4gMjMgMDE6MDE6MjMgVVRDIDIw
1151
+ MTUgY29udGFpbmVyIDEgc3RkZXJyCgEAAAAAAAAwVHVlIEp1biAyMyAwMTow
1152
+ MToyNCBVVEMgMjAxNSBjb250YWluZXIgMSBzdGRvdXQKAgAAAAAAADBUdWUg
1153
+ SnVuIDIzIDAxOjAxOjI0IFVUQyAyMDE1IGNvbnRhaW5lciAxIHN0ZGVycgoB
1154
+ AAAAAAAAMFR1ZSBKdW4gMjMgMDE6MDE6MjUgVVRDIDIwMTUgY29udGFpbmVy
1155
+ IDEgc3Rkb3V0CgIAAAAAAAAwVHVlIEp1biAyMyAwMTowMToyNSBVVEMgMjAx
1156
+ NSBjb250YWluZXIgMSBzdGRlcnIKAQAAAAAAADBUdWUgSnVuIDIzIDAxOjAx
1157
+ OjI2IFVUQyAyMDE1IGNvbnRhaW5lciAxIHN0ZG91dAoCAAAAAAAAMFR1ZSBK
1158
+ dW4gMjMgMDE6MDE6MjYgVVRDIDIwMTUgY29udGFpbmVyIDEgc3RkZXJyCg==
1159
1159
  http_version:
1160
- recorded_at: Fri, 05 Jun 2015 23:27:14 GMT
1160
+ recorded_at: Tue, 23 Jun 2015 01:01:27 GMT
1161
1161
  - request:
1162
1162
  method: post
1163
- uri: "<DOCKER_HOST>/v1.16/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/kill"
1163
+ uri: "<DOCKER_HOST>/v1.16/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/kill"
1164
1164
  body:
1165
1165
  encoding: US-ASCII
1166
1166
  string: ''
@@ -1175,12 +1175,12 @@ http_interactions:
1175
1175
  message:
1176
1176
  headers:
1177
1177
  Date:
1178
- - Fri, 05 Jun 2015 23:27:14 GMT
1178
+ - Tue, 23 Jun 2015 01:01:27 GMT
1179
1179
  body:
1180
1180
  encoding: UTF-8
1181
1181
  string: ''
1182
1182
  http_version:
1183
- recorded_at: Fri, 05 Jun 2015 23:27:14 GMT
1183
+ recorded_at: Tue, 23 Jun 2015 01:01:27 GMT
1184
1184
  - request:
1185
1185
  method: get
1186
1186
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -1200,13 +1200,13 @@ http_interactions:
1200
1200
  Content-Type:
1201
1201
  - application/json
1202
1202
  Date:
1203
- - Fri, 05 Jun 2015 23:27:14 GMT
1203
+ - Tue, 23 Jun 2015 01:01:27 GMT
1204
1204
  body:
1205
1205
  encoding: UTF-8
1206
1206
  string: |
1207
- {"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":"b4d8a2eaef85","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:10.44970504Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hosts","Id":"b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee-json.log","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/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:27:14.804818097Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:27:10.942828845Z"},"Volumes":{},"VolumesRW":{}}
1207
+ {"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":"HNEWTONMAC3","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T01:01:23.191252103Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hosts","Id":"1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09-json.log","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/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-23T01:01:27.446368398Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-23T01:01:23.75770518Z"},"Volumes":{},"VolumesRW":{}}
1208
1208
  http_version:
1209
- recorded_at: Fri, 05 Jun 2015 23:27:14 GMT
1209
+ recorded_at: Tue, 23 Jun 2015 01:01:27 GMT
1210
1210
  - request:
1211
1211
  method: get
1212
1212
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -1226,13 +1226,13 @@ http_interactions:
1226
1226
  Content-Type:
1227
1227
  - application/json
1228
1228
  Date:
1229
- - Fri, 05 Jun 2015 23:27:14 GMT
1229
+ - Tue, 23 Jun 2015 01:01:27 GMT
1230
1230
  body:
1231
1231
  encoding: UTF-8
1232
1232
  string: |
1233
- {"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":"b4d8a2eaef85","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:10.44970504Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hosts","Id":"b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee-json.log","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/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:27:14.804818097Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:27:10.942828845Z"},"Volumes":{},"VolumesRW":{}}
1233
+ {"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":"HNEWTONMAC3","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T01:01:23.191252103Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hosts","Id":"1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09-json.log","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/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-23T01:01:27.446368398Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-23T01:01:23.75770518Z"},"Volumes":{},"VolumesRW":{}}
1234
1234
  http_version:
1235
- recorded_at: Fri, 05 Jun 2015 23:27:14 GMT
1235
+ recorded_at: Tue, 23 Jun 2015 01:01:27 GMT
1236
1236
  - request:
1237
1237
  method: get
1238
1238
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -1252,16 +1252,16 @@ http_interactions:
1252
1252
  Content-Type:
1253
1253
  - application/json
1254
1254
  Date:
1255
- - Fri, 05 Jun 2015 23:27:14 GMT
1255
+ - Tue, 23 Jun 2015 01:01:27 GMT
1256
1256
  body:
1257
1257
  encoding: UTF-8
1258
1258
  string: |
1259
- {"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":"b4d8a2eaef85","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:10.44970504Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/hosts","Id":"b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee-json.log","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/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:27:14.804818097Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:27:10.942828845Z"},"Volumes":{},"VolumesRW":{}}
1259
+ {"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":"HNEWTONMAC3","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T01:01:23.191252103Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/hosts","Id":"1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09-json.log","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/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-23T01:01:27.446368398Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-23T01:01:23.75770518Z"},"Volumes":{},"VolumesRW":{}}
1260
1260
  http_version:
1261
- recorded_at: Fri, 05 Jun 2015 23:27:14 GMT
1261
+ recorded_at: Tue, 23 Jun 2015 01:01:27 GMT
1262
1262
  - request:
1263
1263
  method: delete
1264
- uri: "<DOCKER_HOST>/v1.16/containers/b4d8a2eaef8526eb65ff5ab6813bf83f3221a3082c2f09e8992b0a9c41220bee"
1264
+ uri: "<DOCKER_HOST>/v1.16/containers/1a3c9a2165e1dc72893684ed77cb9c14f4d2274ea82b33ceb7f95fb3828add09"
1265
1265
  body:
1266
1266
  encoding: US-ASCII
1267
1267
  string: ''
@@ -1276,10 +1276,10 @@ http_interactions:
1276
1276
  message:
1277
1277
  headers:
1278
1278
  Date:
1279
- - Fri, 05 Jun 2015 23:27:14 GMT
1279
+ - Tue, 23 Jun 2015 01:01:27 GMT
1280
1280
  body:
1281
1281
  encoding: UTF-8
1282
1282
  string: ''
1283
1283
  http_version:
1284
- recorded_at: Fri, 05 Jun 2015 23:27:15 GMT
1284
+ recorded_at: Tue, 23 Jun 2015 01:01:27 GMT
1285
1285
  recorded_with: VCR 2.9.3