bigrig 0.2.1 → 0.2.2

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 (86) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile.lock +3 -1
  4. data/bigrig.gemspec +1 -0
  5. data/lib/bigrig/dependency_graph.rb +3 -1
  6. data/lib/bigrig/version.rb +1 -1
  7. data/spec/bigrig/dependency_graph_spec.rb +10 -4
  8. data/spec/bigrig_spec.rb +44 -34
  9. data/spec/data/scan.json +2 -1
  10. data/spec/spec_helper.rb +1 -13
  11. data/spec/support/wait_for.rb +35 -0
  12. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +46 -46
  13. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +49 -49
  14. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +8 -8
  15. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +4 -4
  16. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +8 -8
  17. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +9 -9
  18. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +12 -12
  19. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +12 -12
  20. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +8 -8
  21. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +22 -22
  22. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +17 -17
  23. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +4 -4
  24. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +2 -2
  25. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +6 -6
  26. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +36 -36
  27. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +453 -77
  28. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +16 -16
  29. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +32 -32
  30. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +10 -10
  31. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +8 -8
  32. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +28 -28
  33. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +27 -27
  34. 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 +27 -27
  35. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +32 -32
  36. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +8 -8
  37. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +11 -11
  38. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +13 -13
  39. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +16 -16
  40. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +25 -25
  41. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +20 -20
  42. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +40 -40
  43. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +41 -41
  44. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +73 -73
  45. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +52 -52
  46. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +74 -74
  47. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +36 -36
  48. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +38 -38
  49. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes/should_pass_volumes_to_the_right_container.yml +40 -40
  50. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +73 -73
  51. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +52 -52
  52. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +35 -35
  53. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +38 -38
  54. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +14 -14
  55. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +427 -37
  56. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +32 -32
  57. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +472 -76
  58. data/spec/vcr/bigrig/dev/spec/data/dev_json/tails_the_logs.yml +16 -16
  59. data/spec/vcr/bigrig/dev/spec/data/scan_json/leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +1544 -86
  60. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_dependant_containers_when_the_scanned_file_changes.yml +1725 -69
  61. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_the_container_when_the_scanned_file_changes.yml +1536 -96
  62. data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +17 -17
  63. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +11 -11
  64. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +11 -11
  65. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +11 -11
  66. data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +9 -9
  67. data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +13 -13
  68. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +20 -20
  69. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +15 -15
  70. data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +21 -21
  71. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +105 -305
  72. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +109 -307
  73. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +116 -116
  74. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +385 -382
  75. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_dependant_containers_when_the_scanned_file_changes.yml +357 -354
  76. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_the_container_when_the_scanned_file_changes.yml +358 -1091
  77. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +21 -21
  78. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +24 -24
  79. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +24 -24
  80. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +17 -17
  81. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +24 -24
  82. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +24 -24
  83. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +439 -63
  84. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +430 -54
  85. data/spec/waitfor_spec.rb +10 -0
  86. metadata +18 -2
@@ -1,200 +1,5 @@
1
1
  ---
2
2
  http_interactions:
3
- - request:
4
- method: post
5
- uri: "<DOCKER_HOST>/v1.16/containers/dafb806b84c0f47675cfb9161d4e70d37e6a03df2d288c067ac1906d40476b0a/start"
6
- body:
7
- encoding: UTF-8
8
- string: '{"Links":[],"ExtraHosts":[],"PortBindings":{},"VolumesFrom":[],"Binds":[]}'
9
- headers:
10
- User-Agent:
11
- - Swipely/Docker-API 1.20.0
12
- Content-Type:
13
- - application/json
14
- response:
15
- status:
16
- code: 204
17
- message:
18
- headers:
19
- Date:
20
- - Mon, 06 Apr 2015 21:59:49 GMT
21
- body:
22
- encoding: UTF-8
23
- string: ''
24
- http_version:
25
- recorded_at: Mon, 06 Apr 2015 21:59:47 GMT
26
- - request:
27
- method: post
28
- uri: "<DOCKER_HOST>/v1.16/containers/828f606793daad7915c51dc992e25d525a21efc1abbbad463f4f82ac3bfd46ae/start"
29
- body:
30
- encoding: UTF-8
31
- string: '{"Links":[],"ExtraHosts":[],"PortBindings":{"80/tcp":[{"HostPort":"4568"}]},"VolumesFrom":[],"Binds":[]}'
32
- headers:
33
- User-Agent:
34
- - Swipely/Docker-API 1.20.0
35
- Content-Type:
36
- - application/json
37
- response:
38
- status:
39
- code: 204
40
- message:
41
- headers:
42
- Date:
43
- - Mon, 06 Apr 2015 21:59:49 GMT
44
- body:
45
- encoding: UTF-8
46
- string: ''
47
- http_version:
48
- recorded_at: Mon, 06 Apr 2015 21:59:47 GMT
49
- - request:
50
- method: get
51
- uri: "<DOCKER_HOST>/v1.16/containers/828f606793daad7915c51dc992e25d525a21efc1abbbad463f4f82ac3bfd46ae/logs?follow=true&stderr=true&stdout=true"
52
- body:
53
- encoding: US-ASCII
54
- string: ''
55
- headers:
56
- User-Agent:
57
- - Swipely/Docker-API 1.20.0
58
- Content-Type:
59
- - text/plain
60
- response:
61
- status:
62
- code: 200
63
- message:
64
- headers:
65
- Date:
66
- - Mon, 06 Apr 2015 21:59:50 GMT
67
- Content-Length:
68
- - '0'
69
- Content-Type:
70
- - text/plain; charset=utf-8
71
- body:
72
- encoding: UTF-8
73
- string: ''
74
- http_version:
75
- recorded_at: Mon, 06 Apr 2015 21:59:48 GMT
76
- - request:
77
- method: post
78
- uri: "<DOCKER_HOST>/v1.16/containers/828f606793daad7915c51dc992e25d525a21efc1abbbad463f4f82ac3bfd46ae/kill"
79
- body:
80
- encoding: US-ASCII
81
- string: ''
82
- headers:
83
- User-Agent:
84
- - Swipely/Docker-API 1.20.0
85
- Content-Type:
86
- - text/plain
87
- response:
88
- status:
89
- code: 204
90
- message:
91
- headers:
92
- Date:
93
- - Mon, 06 Apr 2015 21:59:50 GMT
94
- body:
95
- encoding: UTF-8
96
- string: ''
97
- http_version:
98
- recorded_at: Mon, 06 Apr 2015 21:59:48 GMT
99
- - request:
100
- method: delete
101
- uri: "<DOCKER_HOST>/v1.16/containers/828f606793daad7915c51dc992e25d525a21efc1abbbad463f4f82ac3bfd46ae"
102
- body:
103
- encoding: US-ASCII
104
- string: ''
105
- headers:
106
- User-Agent:
107
- - Swipely/Docker-API 1.20.0
108
- Content-Type:
109
- - text/plain
110
- response:
111
- status:
112
- code: 204
113
- message:
114
- headers:
115
- Date:
116
- - Mon, 06 Apr 2015 21:59:50 GMT
117
- body:
118
- encoding: UTF-8
119
- string: ''
120
- http_version:
121
- recorded_at: Mon, 06 Apr 2015 21:59:48 GMT
122
- - request:
123
- method: get
124
- uri: "<DOCKER_HOST>/v1.16/containers/dafb806b84c0f47675cfb9161d4e70d37e6a03df2d288c067ac1906d40476b0a/logs?follow=true&stderr=true&stdout=true"
125
- body:
126
- encoding: US-ASCII
127
- string: ''
128
- headers:
129
- User-Agent:
130
- - Swipely/Docker-API 1.20.0
131
- Content-Type:
132
- - text/plain
133
- response:
134
- status:
135
- code: 200
136
- message:
137
- headers:
138
- Date:
139
- - Mon, 06 Apr 2015 21:59:49 GMT
140
- Content-Type:
141
- - application/octet-stream
142
- body:
143
- encoding: UTF-8
144
- string: !binary |-
145
- AQAAAAAAADBNb24gQXByICA2IDIxOjU5OjQ5IFVUQyAyMDE1IGNvbnRhaW5l
146
- ciAxIHN0ZG91dAoCAAAAAAAAME1vbiBBcHIgIDYgMjE6NTk6NDkgVVRDIDIw
147
- MTUgY29udGFpbmVyIDEgc3RkZXJyCgEAAAAAAAAwTW9uIEFwciAgNiAyMTo1
148
- OTo1MCBVVEMgMjAxNSBjb250YWluZXIgMSBzdGRvdXQKAgAAAAAAADBNb24g
149
- QXByICA2IDIxOjU5OjUwIFVUQyAyMDE1IGNvbnRhaW5lciAxIHN0ZGVycgo=
150
- http_version:
151
- recorded_at: Mon, 06 Apr 2015 21:59:49 GMT
152
- - request:
153
- method: post
154
- uri: "<DOCKER_HOST>/v1.16/containers/dafb806b84c0f47675cfb9161d4e70d37e6a03df2d288c067ac1906d40476b0a/kill"
155
- body:
156
- encoding: US-ASCII
157
- string: ''
158
- headers:
159
- User-Agent:
160
- - Swipely/Docker-API 1.20.0
161
- Content-Type:
162
- - text/plain
163
- response:
164
- status:
165
- code: 204
166
- message:
167
- headers:
168
- Date:
169
- - Mon, 06 Apr 2015 21:59:50 GMT
170
- body:
171
- encoding: UTF-8
172
- string: ''
173
- http_version:
174
- recorded_at: Mon, 06 Apr 2015 21:59:49 GMT
175
- - request:
176
- method: delete
177
- uri: "<DOCKER_HOST>/v1.16/containers/dafb806b84c0f47675cfb9161d4e70d37e6a03df2d288c067ac1906d40476b0a"
178
- body:
179
- encoding: US-ASCII
180
- string: ''
181
- headers:
182
- User-Agent:
183
- - Swipely/Docker-API 1.20.0
184
- Content-Type:
185
- - text/plain
186
- response:
187
- status:
188
- code: 204
189
- message:
190
- headers:
191
- Date:
192
- - Mon, 06 Apr 2015 21:59:50 GMT
193
- body:
194
- encoding: UTF-8
195
- string: ''
196
- http_version:
197
- recorded_at: Mon, 06 Apr 2015 21:59:49 GMT
198
3
  - request:
199
4
  method: get
200
5
  uri: "<DOCKER_HOST>/v1.16/images/hawknewton/show-env:0.0.1/json"
@@ -214,7 +19,7 @@ http_interactions:
214
19
  Content-Type:
215
20
  - application/json
216
21
  Date:
217
- - Thu, 09 Apr 2015 19:01:34 GMT
22
+ - Mon, 20 Apr 2015 23:27:31 GMT
218
23
  Content-Length:
219
24
  - '1859'
220
25
  body:
@@ -222,7 +27,7 @@ http_interactions:
222
27
  string: |
223
28
  {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"d6d34d2bfd452f4175eab78597ddd29856f0af494d503b00f4160d5eb3f13f1b","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ENTRYPOINT [/bin/sh -c ruby /code/server.rb]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-10-23T20:00:42.057514693Z","DockerVersion":"1.3.0","Id":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Os":"linux","Parent":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Size":0,"VirtualSize":801041825}
224
29
  http_version:
225
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
30
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
226
31
  - request:
227
32
  method: get
228
33
  uri: "<DOCKER_HOST>/v1.16/images/hawknewton/log-test:0.0.1/json"
@@ -242,7 +47,7 @@ http_interactions:
242
47
  Content-Type:
243
48
  - application/json
244
49
  Date:
245
- - Thu, 09 Apr 2015 19:01:34 GMT
50
+ - Mon, 20 Apr 2015 23:27:31 GMT
246
51
  Content-Length:
247
52
  - '1493'
248
53
  body:
@@ -250,7 +55,7 @@ http_interactions:
250
55
  string: |
251
56
  {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/run.sh"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"71e72940b4dd","Image":"c507982f836db18913f4a5c7c7a174617c40da13cb0797cf4481220b906f59ff","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"13fbda9e12ada74a75b684aa44fbecc55acb529370b161d02dcb66fa7c612911","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) CMD [/run.sh]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"71e72940b4dd","Image":"c507982f836db18913f4a5c7c7a174617c40da13cb0797cf4481220b906f59ff","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-02-10T13:06:13.014751129Z","DockerVersion":"1.3.0","Id":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Os":"linux","Parent":"c507982f836db18913f4a5c7c7a174617c40da13cb0797cf4481220b906f59ff","Size":0,"VirtualSize":117030274}
252
57
  http_version:
253
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
58
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
254
59
  - request:
255
60
  method: get
256
61
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -270,7 +75,7 @@ http_interactions:
270
75
  Content-Type:
271
76
  - text/plain; charset=utf-8
272
77
  Date:
273
- - Thu, 09 Apr 2015 19:01:35 GMT
78
+ - Mon, 20 Apr 2015 23:27:31 GMT
274
79
  Content-Length:
275
80
  - '28'
276
81
  body:
@@ -278,7 +83,7 @@ http_interactions:
278
83
  string: |
279
84
  No such container: dev-test
280
85
  http_version:
281
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
86
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
282
87
  - request:
283
88
  method: get
284
89
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -298,7 +103,7 @@ http_interactions:
298
103
  Content-Type:
299
104
  - text/plain; charset=utf-8
300
105
  Date:
301
- - Thu, 09 Apr 2015 19:01:35 GMT
106
+ - Mon, 20 Apr 2015 23:27:31 GMT
302
107
  Content-Length:
303
108
  - '28'
304
109
  body:
@@ -306,7 +111,7 @@ http_interactions:
306
111
  string: |
307
112
  No such container: dev-test
308
113
  http_version:
309
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
114
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
310
115
  - request:
311
116
  method: get
312
117
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -326,7 +131,7 @@ http_interactions:
326
131
  Content-Type:
327
132
  - text/plain; charset=utf-8
328
133
  Date:
329
- - Thu, 09 Apr 2015 19:01:35 GMT
134
+ - Mon, 20 Apr 2015 23:27:31 GMT
330
135
  Content-Length:
331
136
  - '28'
332
137
  body:
@@ -334,7 +139,7 @@ http_interactions:
334
139
  string: |
335
140
  No such container: dev-test
336
141
  http_version:
337
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
142
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
338
143
  - request:
339
144
  method: get
340
145
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -354,7 +159,7 @@ http_interactions:
354
159
  Content-Type:
355
160
  - text/plain; charset=utf-8
356
161
  Date:
357
- - Thu, 09 Apr 2015 19:01:35 GMT
162
+ - Mon, 20 Apr 2015 23:27:31 GMT
358
163
  Content-Length:
359
164
  - '28'
360
165
  body:
@@ -362,7 +167,7 @@ http_interactions:
362
167
  string: |
363
168
  No such container: dev-test
364
169
  http_version:
365
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
170
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
366
171
  - request:
367
172
  method: get
368
173
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -382,7 +187,7 @@ http_interactions:
382
187
  Content-Type:
383
188
  - text/plain; charset=utf-8
384
189
  Date:
385
- - Thu, 09 Apr 2015 19:01:35 GMT
190
+ - Mon, 20 Apr 2015 23:27:31 GMT
386
191
  Content-Length:
387
192
  - '28'
388
193
  body:
@@ -390,7 +195,7 @@ http_interactions:
390
195
  string: |
391
196
  No such container: dev-test
392
197
  http_version:
393
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
198
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
394
199
  - request:
395
200
  method: get
396
201
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -410,7 +215,7 @@ http_interactions:
410
215
  Content-Type:
411
216
  - text/plain; charset=utf-8
412
217
  Date:
413
- - Thu, 09 Apr 2015 19:01:35 GMT
218
+ - Mon, 20 Apr 2015 23:27:31 GMT
414
219
  Content-Length:
415
220
  - '28'
416
221
  body:
@@ -418,7 +223,7 @@ http_interactions:
418
223
  string: |
419
224
  No such container: dev-test
420
225
  http_version:
421
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
226
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
422
227
  - request:
423
228
  method: get
424
229
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -438,7 +243,7 @@ http_interactions:
438
243
  Content-Type:
439
244
  - text/plain; charset=utf-8
440
245
  Date:
441
- - Thu, 09 Apr 2015 19:01:35 GMT
246
+ - Mon, 20 Apr 2015 23:27:31 GMT
442
247
  Content-Length:
443
248
  - '28'
444
249
  body:
@@ -446,7 +251,7 @@ http_interactions:
446
251
  string: |
447
252
  No such container: dev-test
448
253
  http_version:
449
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
254
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
450
255
  - request:
451
256
  method: get
452
257
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -466,7 +271,7 @@ http_interactions:
466
271
  Content-Type:
467
272
  - text/plain; charset=utf-8
468
273
  Date:
469
- - Thu, 09 Apr 2015 19:01:35 GMT
274
+ - Mon, 20 Apr 2015 23:27:31 GMT
470
275
  Content-Length:
471
276
  - '28'
472
277
  body:
@@ -474,7 +279,7 @@ http_interactions:
474
279
  string: |
475
280
  No such container: dev-test
476
281
  http_version:
477
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
282
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
478
283
  - request:
479
284
  method: get
480
285
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -494,7 +299,7 @@ http_interactions:
494
299
  Content-Type:
495
300
  - text/plain; charset=utf-8
496
301
  Date:
497
- - Thu, 09 Apr 2015 19:01:35 GMT
302
+ - Mon, 20 Apr 2015 23:27:31 GMT
498
303
  Content-Length:
499
304
  - '28'
500
305
  body:
@@ -502,7 +307,7 @@ http_interactions:
502
307
  string: |
503
308
  No such container: dev-logs
504
309
  http_version:
505
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
310
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
506
311
  - request:
507
312
  method: get
508
313
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -522,7 +327,7 @@ http_interactions:
522
327
  Content-Type:
523
328
  - text/plain; charset=utf-8
524
329
  Date:
525
- - Thu, 09 Apr 2015 19:01:35 GMT
330
+ - Mon, 20 Apr 2015 23:27:31 GMT
526
331
  Content-Length:
527
332
  - '28'
528
333
  body:
@@ -530,7 +335,7 @@ http_interactions:
530
335
  string: |
531
336
  No such container: dev-logs
532
337
  http_version:
533
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
338
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
534
339
  - request:
535
340
  method: get
536
341
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -550,7 +355,7 @@ http_interactions:
550
355
  Content-Type:
551
356
  - text/plain; charset=utf-8
552
357
  Date:
553
- - Thu, 09 Apr 2015 19:01:35 GMT
358
+ - Mon, 20 Apr 2015 23:27:31 GMT
554
359
  Content-Length:
555
360
  - '28'
556
361
  body:
@@ -558,7 +363,7 @@ http_interactions:
558
363
  string: |
559
364
  No such container: dev-logs
560
365
  http_version:
561
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
366
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
562
367
  - request:
563
368
  method: get
564
369
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -578,7 +383,7 @@ http_interactions:
578
383
  Content-Type:
579
384
  - text/plain; charset=utf-8
580
385
  Date:
581
- - Thu, 09 Apr 2015 19:01:35 GMT
386
+ - Mon, 20 Apr 2015 23:27:31 GMT
582
387
  Content-Length:
583
388
  - '28'
584
389
  body:
@@ -586,7 +391,7 @@ http_interactions:
586
391
  string: |
587
392
  No such container: dev-logs
588
393
  http_version:
589
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
394
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
590
395
  - request:
591
396
  method: get
592
397
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -606,7 +411,7 @@ http_interactions:
606
411
  Content-Type:
607
412
  - text/plain; charset=utf-8
608
413
  Date:
609
- - Thu, 09 Apr 2015 19:01:35 GMT
414
+ - Mon, 20 Apr 2015 23:27:31 GMT
610
415
  Content-Length:
611
416
  - '28'
612
417
  body:
@@ -614,7 +419,7 @@ http_interactions:
614
419
  string: |
615
420
  No such container: dev-logs
616
421
  http_version:
617
- recorded_at: Thu, 09 Apr 2015 19:01:38 GMT
422
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
618
423
  - request:
619
424
  method: get
620
425
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -634,7 +439,7 @@ http_interactions:
634
439
  Content-Type:
635
440
  - text/plain; charset=utf-8
636
441
  Date:
637
- - Thu, 09 Apr 2015 19:01:35 GMT
442
+ - Mon, 20 Apr 2015 23:27:31 GMT
638
443
  Content-Length:
639
444
  - '28'
640
445
  body:
@@ -642,7 +447,7 @@ http_interactions:
642
447
  string: |
643
448
  No such container: dev-logs
644
449
  http_version:
645
- recorded_at: Thu, 09 Apr 2015 19:01:38 GMT
450
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
646
451
  - request:
647
452
  method: get
648
453
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -662,7 +467,7 @@ http_interactions:
662
467
  Content-Type:
663
468
  - text/plain; charset=utf-8
664
469
  Date:
665
- - Thu, 09 Apr 2015 19:01:35 GMT
470
+ - Mon, 20 Apr 2015 23:27:31 GMT
666
471
  Content-Length:
667
472
  - '28'
668
473
  body:
@@ -670,7 +475,7 @@ http_interactions:
670
475
  string: |
671
476
  No such container: dev-logs
672
477
  http_version:
673
- recorded_at: Thu, 09 Apr 2015 19:01:38 GMT
478
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
674
479
  - request:
675
480
  method: get
676
481
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -690,7 +495,7 @@ http_interactions:
690
495
  Content-Type:
691
496
  - text/plain; charset=utf-8
692
497
  Date:
693
- - Thu, 09 Apr 2015 19:01:35 GMT
498
+ - Mon, 20 Apr 2015 23:27:31 GMT
694
499
  Content-Length:
695
500
  - '28'
696
501
  body:
@@ -698,7 +503,7 @@ http_interactions:
698
503
  string: |
699
504
  No such container: dev-logs
700
505
  http_version:
701
- recorded_at: Thu, 09 Apr 2015 19:01:38 GMT
506
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
702
507
  - request:
703
508
  method: post
704
509
  uri: "<DOCKER_HOST>/v1.16/containers/create?name=dev-logs"
@@ -718,15 +523,15 @@ http_interactions:
718
523
  Content-Type:
719
524
  - application/json
720
525
  Date:
721
- - Thu, 09 Apr 2015 19:01:35 GMT
526
+ - Mon, 20 Apr 2015 23:27:31 GMT
722
527
  Content-Length:
723
528
  - '90'
724
529
  body:
725
530
  encoding: UTF-8
726
531
  string: |
727
- {"Id":"9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527","Warnings":null}
532
+ {"Id":"5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417","Warnings":null}
728
533
  http_version:
729
- recorded_at: Thu, 09 Apr 2015 19:01:38 GMT
534
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
730
535
  - request:
731
536
  method: post
732
537
  uri: "<DOCKER_HOST>/v1.16/containers/create?name=dev-test"
@@ -746,18 +551,18 @@ http_interactions:
746
551
  Content-Type:
747
552
  - application/json
748
553
  Date:
749
- - Thu, 09 Apr 2015 19:01:35 GMT
554
+ - Mon, 20 Apr 2015 23:27:31 GMT
750
555
  Content-Length:
751
556
  - '90'
752
557
  body:
753
558
  encoding: UTF-8
754
559
  string: |
755
- {"Id":"c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3","Warnings":null}
560
+ {"Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Warnings":null}
756
561
  http_version:
757
- recorded_at: Thu, 09 Apr 2015 19:01:38 GMT
562
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
758
563
  - request:
759
564
  method: post
760
- uri: "<DOCKER_HOST>/v1.16/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/start"
565
+ uri: "<DOCKER_HOST>/v1.16/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/start"
761
566
  body:
762
567
  encoding: UTF-8
763
568
  string: '{"Links":[],"ExtraHosts":[],"PortBindings":{},"VolumesFrom":[],"Binds":[]}'
@@ -772,15 +577,15 @@ http_interactions:
772
577
  message:
773
578
  headers:
774
579
  Date:
775
- - Thu, 09 Apr 2015 19:01:36 GMT
580
+ - Mon, 20 Apr 2015 23:27:32 GMT
776
581
  body:
777
582
  encoding: UTF-8
778
583
  string: ''
779
584
  http_version:
780
- recorded_at: Thu, 09 Apr 2015 19:01:38 GMT
585
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
781
586
  - request:
782
587
  method: post
783
- uri: "<DOCKER_HOST>/v1.16/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/start"
588
+ uri: "<DOCKER_HOST>/v1.16/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/start"
784
589
  body:
785
590
  encoding: UTF-8
786
591
  string: '{"Links":[],"ExtraHosts":[],"PortBindings":{"80/tcp":[{"HostPort":"4568"}]},"VolumesFrom":[],"Binds":[]}'
@@ -795,12 +600,12 @@ http_interactions:
795
600
  message:
796
601
  headers:
797
602
  Date:
798
- - Thu, 09 Apr 2015 19:01:36 GMT
603
+ - Mon, 20 Apr 2015 23:27:32 GMT
799
604
  body:
800
605
  encoding: UTF-8
801
606
  string: ''
802
607
  http_version:
803
- recorded_at: Thu, 09 Apr 2015 19:01:38 GMT
608
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
804
609
  - request:
805
610
  method: get
806
611
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -820,13 +625,13 @@ http_interactions:
820
625
  Content-Type:
821
626
  - application/json
822
627
  Date:
823
- - Thu, 09 Apr 2015 19:01:36 GMT
628
+ - Mon, 20 Apr 2015 23:27:32 GMT
824
629
  body:
825
630
  encoding: UTF-8
826
631
  string: |
827
- {"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":"9d3445f85865","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:35.583126542Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/hosts","Id":"9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.3.169","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:3a9","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:03:a9","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":29712,"Restarting":false,"Running":true,"StartedAt":"2015-04-09T19:01:36.028175082Z"},"Volumes":{},"VolumesRW":{}}
632
+ {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/run.sh"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5320afe46553","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:31.771686548Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hosts","Id":"5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.178","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b2","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b2","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13057,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:32.258677655Z"},"Volumes":{},"VolumesRW":{}}
828
633
  http_version:
829
- recorded_at: Thu, 09 Apr 2015 19:01:38 GMT
634
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
830
635
  - request:
831
636
  method: get
832
637
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -846,13 +651,13 @@ http_interactions:
846
651
  Content-Type:
847
652
  - application/json
848
653
  Date:
849
- - Thu, 09 Apr 2015 19:01:36 GMT
654
+ - Mon, 20 Apr 2015 23:27:32 GMT
850
655
  body:
851
656
  encoding: UTF-8
852
657
  string: |
853
- {"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":"c6e6e663983e","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:35.595354943Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/hosts","Id":"c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.3.170","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:3aa","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:03:aa","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":29723,"Restarting":false,"Running":true,"StartedAt":"2015-04-09T19:01:36.139229702Z"},"Volumes":{},"VolumesRW":{}}
658
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"960c2e7a4d1c","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:31.799583937Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hosts","Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.179","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b3","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b3","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13069,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:32.387948273Z"},"Volumes":{},"VolumesRW":{}}
854
659
  http_version:
855
- recorded_at: Thu, 09 Apr 2015 19:01:38 GMT
660
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
856
661
  - request:
857
662
  method: get
858
663
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -872,13 +677,13 @@ http_interactions:
872
677
  Content-Type:
873
678
  - application/json
874
679
  Date:
875
- - Thu, 09 Apr 2015 19:01:37 GMT
680
+ - Mon, 20 Apr 2015 23:27:32 GMT
876
681
  body:
877
682
  encoding: UTF-8
878
683
  string: |
879
- {"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":"c6e6e663983e","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:35.595354943Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/hosts","Id":"c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.3.170","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:3aa","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:03:aa","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":29723,"Restarting":false,"Running":true,"StartedAt":"2015-04-09T19:01:36.139229702Z"},"Volumes":{},"VolumesRW":{}}
684
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"960c2e7a4d1c","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:31.799583937Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hosts","Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.179","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b3","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b3","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13069,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:32.387948273Z"},"Volumes":{},"VolumesRW":{}}
880
685
  http_version:
881
- recorded_at: Thu, 09 Apr 2015 19:01:40 GMT
686
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
882
687
  - request:
883
688
  method: get
884
689
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -898,16 +703,16 @@ http_interactions:
898
703
  Content-Type:
899
704
  - application/json
900
705
  Date:
901
- - Thu, 09 Apr 2015 19:01:37 GMT
706
+ - Mon, 20 Apr 2015 23:27:32 GMT
902
707
  body:
903
708
  encoding: UTF-8
904
709
  string: |
905
- {"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":"c6e6e663983e","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:35.595354943Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/hosts","Id":"c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.3.170","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:3aa","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:03:aa","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":29723,"Restarting":false,"Running":true,"StartedAt":"2015-04-09T19:01:36.139229702Z"},"Volumes":{},"VolumesRW":{}}
710
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"960c2e7a4d1c","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:31.799583937Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hosts","Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.179","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b3","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b3","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13069,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:32.387948273Z"},"Volumes":{},"VolumesRW":{}}
906
711
  http_version:
907
- recorded_at: Thu, 09 Apr 2015 19:01:40 GMT
712
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
908
713
  - request:
909
714
  method: get
910
- uri: "<DOCKER_HOST>/v1.16/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/logs?follow=true&stderr=true&stdout=true"
715
+ uri: "<DOCKER_HOST>/v1.16/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/logs?follow=true&stderr=true&stdout=true"
911
716
  body:
912
717
  encoding: US-ASCII
913
718
  string: ''
@@ -922,7 +727,7 @@ http_interactions:
922
727
  message:
923
728
  headers:
924
729
  Date:
925
- - Thu, 09 Apr 2015 19:01:37 GMT
730
+ - Mon, 20 Apr 2015 23:27:32 GMT
926
731
  Content-Length:
927
732
  - '0'
928
733
  Content-Type:
@@ -931,10 +736,10 @@ http_interactions:
931
736
  encoding: UTF-8
932
737
  string: ''
933
738
  http_version:
934
- recorded_at: Thu, 09 Apr 2015 19:01:40 GMT
739
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
935
740
  - request:
936
741
  method: post
937
- uri: "<DOCKER_HOST>/v1.16/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/kill"
742
+ uri: "<DOCKER_HOST>/v1.16/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/kill"
938
743
  body:
939
744
  encoding: US-ASCII
940
745
  string: ''
@@ -949,12 +754,12 @@ http_interactions:
949
754
  message:
950
755
  headers:
951
756
  Date:
952
- - Thu, 09 Apr 2015 19:01:37 GMT
757
+ - Mon, 20 Apr 2015 23:27:32 GMT
953
758
  body:
954
759
  encoding: UTF-8
955
760
  string: ''
956
761
  http_version:
957
- recorded_at: Thu, 09 Apr 2015 19:01:40 GMT
762
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
958
763
  - request:
959
764
  method: get
960
765
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -974,13 +779,13 @@ http_interactions:
974
779
  Content-Type:
975
780
  - application/json
976
781
  Date:
977
- - Thu, 09 Apr 2015 19:01:37 GMT
782
+ - Mon, 20 Apr 2015 23:27:32 GMT
978
783
  body:
979
784
  encoding: UTF-8
980
785
  string: |
981
- {"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":"c6e6e663983e","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:35.595354943Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/hosts","Id":"c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-09T19:01:37.838034269Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-09T19:01:36.139229702Z"},"Volumes":{},"VolumesRW":{}}
786
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"960c2e7a4d1c","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:31.799583937Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hosts","Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:27:32.765976774Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:27:32.387948273Z"},"Volumes":{},"VolumesRW":{}}
982
787
  http_version:
983
- recorded_at: Thu, 09 Apr 2015 19:01:40 GMT
788
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
984
789
  - request:
985
790
  method: get
986
791
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -1000,13 +805,13 @@ http_interactions:
1000
805
  Content-Type:
1001
806
  - application/json
1002
807
  Date:
1003
- - Thu, 09 Apr 2015 19:01:37 GMT
808
+ - Mon, 20 Apr 2015 23:27:32 GMT
1004
809
  body:
1005
810
  encoding: UTF-8
1006
811
  string: |
1007
- {"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":"c6e6e663983e","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:35.595354943Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/hosts","Id":"c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-09T19:01:37.838034269Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-09T19:01:36.139229702Z"},"Volumes":{},"VolumesRW":{}}
812
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"960c2e7a4d1c","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:31.799583937Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hosts","Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:27:32.765976774Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:27:32.387948273Z"},"Volumes":{},"VolumesRW":{}}
1008
813
  http_version:
1009
- recorded_at: Thu, 09 Apr 2015 19:01:40 GMT
814
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
1010
815
  - request:
1011
816
  method: get
1012
817
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -1026,16 +831,16 @@ http_interactions:
1026
831
  Content-Type:
1027
832
  - application/json
1028
833
  Date:
1029
- - Thu, 09 Apr 2015 19:01:38 GMT
834
+ - Mon, 20 Apr 2015 23:27:32 GMT
1030
835
  body:
1031
836
  encoding: UTF-8
1032
837
  string: |
1033
- {"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":"c6e6e663983e","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:35.595354943Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/hosts","Id":"c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-09T19:01:37.838034269Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-09T19:01:36.139229702Z"},"Volumes":{},"VolumesRW":{}}
838
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"960c2e7a4d1c","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:31.799583937Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hosts","Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:27:32.765976774Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:27:32.387948273Z"},"Volumes":{},"VolumesRW":{}}
1034
839
  http_version:
1035
- recorded_at: Thu, 09 Apr 2015 19:01:40 GMT
840
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
1036
841
  - request:
1037
842
  method: delete
1038
- uri: "<DOCKER_HOST>/v1.16/containers/c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3"
843
+ uri: "<DOCKER_HOST>/v1.16/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1"
1039
844
  body:
1040
845
  encoding: US-ASCII
1041
846
  string: ''
@@ -1050,12 +855,12 @@ http_interactions:
1050
855
  message:
1051
856
  headers:
1052
857
  Date:
1053
- - Thu, 09 Apr 2015 19:01:38 GMT
858
+ - Mon, 20 Apr 2015 23:27:33 GMT
1054
859
  body:
1055
860
  encoding: UTF-8
1056
861
  string: ''
1057
862
  http_version:
1058
- recorded_at: Thu, 09 Apr 2015 19:01:40 GMT
863
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
1059
864
  - request:
1060
865
  method: get
1061
866
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -1075,13 +880,13 @@ http_interactions:
1075
880
  Content-Type:
1076
881
  - application/json
1077
882
  Date:
1078
- - Thu, 09 Apr 2015 19:01:38 GMT
883
+ - Mon, 20 Apr 2015 23:27:33 GMT
1079
884
  body:
1080
885
  encoding: UTF-8
1081
886
  string: |
1082
- {"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":"9d3445f85865","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:35.583126542Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/hosts","Id":"9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.3.169","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:3a9","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:03:a9","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":29712,"Restarting":false,"Running":true,"StartedAt":"2015-04-09T19:01:36.028175082Z"},"Volumes":{},"VolumesRW":{}}
887
+ {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/run.sh"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5320afe46553","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:31.771686548Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hosts","Id":"5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.178","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b2","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b2","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13057,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:32.258677655Z"},"Volumes":{},"VolumesRW":{}}
1083
888
  http_version:
1084
- recorded_at: Thu, 09 Apr 2015 19:01:40 GMT
889
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
1085
890
  - request:
1086
891
  method: get
1087
892
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -1101,16 +906,16 @@ http_interactions:
1101
906
  Content-Type:
1102
907
  - application/json
1103
908
  Date:
1104
- - Thu, 09 Apr 2015 19:01:38 GMT
909
+ - Mon, 20 Apr 2015 23:27:33 GMT
1105
910
  body:
1106
911
  encoding: UTF-8
1107
912
  string: |
1108
- {"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":"9d3445f85865","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:35.583126542Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/hosts","Id":"9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.3.169","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:3a9","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:03:a9","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":29712,"Restarting":false,"Running":true,"StartedAt":"2015-04-09T19:01:36.028175082Z"},"Volumes":{},"VolumesRW":{}}
913
+ {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/run.sh"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5320afe46553","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:31.771686548Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hosts","Id":"5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.178","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b2","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b2","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13057,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:32.258677655Z"},"Volumes":{},"VolumesRW":{}}
1109
914
  http_version:
1110
- recorded_at: Thu, 09 Apr 2015 19:01:40 GMT
915
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
1111
916
  - request:
1112
917
  method: get
1113
- uri: "<DOCKER_HOST>/v1.16/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/logs?follow=true&stderr=true&stdout=true"
918
+ uri: "<DOCKER_HOST>/v1.16/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/logs?follow=true&stderr=true&stdout=true"
1114
919
  body:
1115
920
  encoding: US-ASCII
1116
921
  string: ''
@@ -1125,25 +930,20 @@ http_interactions:
1125
930
  message:
1126
931
  headers:
1127
932
  Date:
1128
- - Thu, 09 Apr 2015 19:01:36 GMT
933
+ - Mon, 20 Apr 2015 23:27:32 GMT
1129
934
  Content-Type:
1130
935
  - application/octet-stream
1131
936
  body:
1132
937
  encoding: UTF-8
1133
938
  string: !binary |-
1134
- AQAAAAAAADBUaHUgQXByICA5IDE5OjAxOjM2IFVUQyAyMDE1IGNvbnRhaW5l
1135
- ciAxIHN0ZG91dAoCAAAAAAAAMFRodSBBcHIgIDkgMTk6MDE6MzYgVVRDIDIw
1136
- MTUgY29udGFpbmVyIDEgc3RkZXJyCgEAAAAAAAAwVGh1IEFwciAgOSAxOTow
1137
- MTozNyBVVEMgMjAxNSBjb250YWluZXIgMSBzdGRvdXQKAgAAAAAAADBUaHUg
1138
- QXByICA5IDE5OjAxOjM3IFVUQyAyMDE1IGNvbnRhaW5lciAxIHN0ZGVycgoB
1139
- AAAAAAAAMFRodSBBcHIgIDkgMTk6MDE6MzggVVRDIDIwMTUgY29udGFpbmVy
1140
- IDEgc3Rkb3V0CgIAAAAAAAAwVGh1IEFwciAgOSAxOTowMTozOCBVVEMgMjAx
1141
- NSBjb250YWluZXIgMSBzdGRlcnIK
939
+ AQAAAAAAADBNb24gQXByIDIwIDIzOjI3OjMyIFVUQyAyMDE1IGNvbnRhaW5l
940
+ ciAxIHN0ZG91dAoCAAAAAAAAME1vbiBBcHIgMjAgMjM6Mjc6MzIgVVRDIDIw
941
+ MTUgY29udGFpbmVyIDEgc3RkZXJyCg==
1142
942
  http_version:
1143
- recorded_at: Thu, 09 Apr 2015 19:01:40 GMT
943
+ recorded_at: Mon, 20 Apr 2015 23:27:33 GMT
1144
944
  - request:
1145
945
  method: post
1146
- uri: "<DOCKER_HOST>/v1.16/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/kill"
946
+ uri: "<DOCKER_HOST>/v1.16/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/kill"
1147
947
  body:
1148
948
  encoding: US-ASCII
1149
949
  string: ''
@@ -1158,12 +958,12 @@ http_interactions:
1158
958
  message:
1159
959
  headers:
1160
960
  Date:
1161
- - Thu, 09 Apr 2015 19:01:38 GMT
961
+ - Mon, 20 Apr 2015 23:27:33 GMT
1162
962
  body:
1163
963
  encoding: UTF-8
1164
964
  string: ''
1165
965
  http_version:
1166
- recorded_at: Thu, 09 Apr 2015 19:01:40 GMT
966
+ recorded_at: Mon, 20 Apr 2015 23:27:33 GMT
1167
967
  - request:
1168
968
  method: get
1169
969
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -1183,13 +983,13 @@ http_interactions:
1183
983
  Content-Type:
1184
984
  - application/json
1185
985
  Date:
1186
- - Thu, 09 Apr 2015 19:01:38 GMT
986
+ - Mon, 20 Apr 2015 23:27:33 GMT
1187
987
  body:
1188
988
  encoding: UTF-8
1189
989
  string: |
1190
- {"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":"9d3445f85865","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:35.583126542Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/hosts","Id":"9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-09T19:01:38.277708133Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-09T19:01:36.028175082Z"},"Volumes":{},"VolumesRW":{}}
990
+ {"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":"5320afe46553","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:31.771686548Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hosts","Id":"5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:27:33.225677895Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:27:32.258677655Z"},"Volumes":{},"VolumesRW":{}}
1191
991
  http_version:
1192
- recorded_at: Thu, 09 Apr 2015 19:01:40 GMT
992
+ recorded_at: Mon, 20 Apr 2015 23:27:33 GMT
1193
993
  - request:
1194
994
  method: get
1195
995
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -1209,13 +1009,13 @@ http_interactions:
1209
1009
  Content-Type:
1210
1010
  - application/json
1211
1011
  Date:
1212
- - Thu, 09 Apr 2015 19:01:38 GMT
1012
+ - Mon, 20 Apr 2015 23:27:33 GMT
1213
1013
  body:
1214
1014
  encoding: UTF-8
1215
1015
  string: |
1216
- {"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":"9d3445f85865","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:35.583126542Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/hosts","Id":"9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-09T19:01:38.277708133Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-09T19:01:36.028175082Z"},"Volumes":{},"VolumesRW":{}}
1016
+ {"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":"5320afe46553","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:31.771686548Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hosts","Id":"5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:27:33.225677895Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:27:32.258677655Z"},"Volumes":{},"VolumesRW":{}}
1217
1017
  http_version:
1218
- recorded_at: Thu, 09 Apr 2015 19:01:41 GMT
1018
+ recorded_at: Mon, 20 Apr 2015 23:27:33 GMT
1219
1019
  - request:
1220
1020
  method: get
1221
1021
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -1235,16 +1035,16 @@ http_interactions:
1235
1035
  Content-Type:
1236
1036
  - application/json
1237
1037
  Date:
1238
- - Thu, 09 Apr 2015 19:01:38 GMT
1038
+ - Mon, 20 Apr 2015 23:27:33 GMT
1239
1039
  body:
1240
1040
  encoding: UTF-8
1241
1041
  string: |
1242
- {"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":"9d3445f85865","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:35.583126542Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/hosts","Id":"9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-09T19:01:38.277708133Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-09T19:01:36.028175082Z"},"Volumes":{},"VolumesRW":{}}
1042
+ {"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":"5320afe46553","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:31.771686548Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hosts","Id":"5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:27:33.225677895Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:27:32.258677655Z"},"Volumes":{},"VolumesRW":{}}
1243
1043
  http_version:
1244
- recorded_at: Thu, 09 Apr 2015 19:01:41 GMT
1044
+ recorded_at: Mon, 20 Apr 2015 23:27:33 GMT
1245
1045
  - request:
1246
1046
  method: delete
1247
- uri: "<DOCKER_HOST>/v1.16/containers/9d3445f8586598ea94c8a983e1a56ebe7edd59c85857151b2c5621b223e45527"
1047
+ uri: "<DOCKER_HOST>/v1.16/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417"
1248
1048
  body:
1249
1049
  encoding: US-ASCII
1250
1050
  string: ''
@@ -1259,10 +1059,10 @@ http_interactions:
1259
1059
  message:
1260
1060
  headers:
1261
1061
  Date:
1262
- - Thu, 09 Apr 2015 19:01:38 GMT
1062
+ - Mon, 20 Apr 2015 23:27:33 GMT
1263
1063
  body:
1264
1064
  encoding: UTF-8
1265
1065
  string: ''
1266
1066
  http_version:
1267
- recorded_at: Thu, 09 Apr 2015 19:01:41 GMT
1067
+ recorded_at: Mon, 20 Apr 2015 23:27:33 GMT
1268
1068
  recorded_with: VCR 2.9.3