bigrig 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile.lock +4 -1
  4. data/lib/bigrig/docker_adapter.rb +1 -1
  5. data/lib/bigrig/version.rb +1 -1
  6. data/spec/bigrig/docker_adapter_spec.rb +1 -1
  7. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +46 -46
  8. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +51 -51
  9. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +8 -8
  10. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +4 -4
  11. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +8 -8
  12. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +10 -10
  13. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +12 -12
  14. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +10 -10
  15. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +8 -8
  16. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +24 -24
  17. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +17 -17
  18. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +4 -4
  19. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +2 -2
  20. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +6 -6
  21. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +44 -44
  22. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +697 -252
  23. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +16 -16
  24. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +32 -32
  25. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +10 -10
  26. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +8 -8
  27. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +27 -27
  28. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/sets_the_hostname.yml +24 -24
  29. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +28 -28
  30. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_env_variables/starts_the_container_with_env_set.yml +28 -28
  31. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +33 -33
  32. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +8 -8
  33. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +10 -10
  34. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +13 -13
  35. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +16 -16
  36. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +25 -25
  37. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +53 -52
  38. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +58 -58
  39. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +57 -57
  40. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +105 -105
  41. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +52 -52
  42. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +74 -74
  43. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +52 -52
  44. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +56 -56
  45. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes/should_pass_volumes_to_the_right_container.yml +56 -56
  46. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +105 -105
  47. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +52 -52
  48. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +212 -67
  49. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +54 -54
  50. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +14 -14
  51. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +67 -179
  52. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +34 -34
  53. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +83 -111
  54. data/spec/vcr/bigrig/dev/spec/data/dev_json/tails_the_logs.yml +18 -18
  55. data/spec/vcr/bigrig/dev/spec/data/scan_json/leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +266 -210
  56. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_dependant_containers_when_the_scanned_file_changes.yml +249 -223
  57. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_the_container_when_the_scanned_file_changes.yml +211 -353
  58. data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +17 -17
  59. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +11 -11
  60. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +11 -11
  61. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +11 -11
  62. data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +9 -9
  63. data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +13 -13
  64. data/spec/vcr/bigrig/run/spec/data/wait_for/bigrig_json/waits_for_wait_for.yml +24 -24
  65. data/spec/vcr/bigrig/run/spec/data/wait_for_broken_json/fails_with_an_error.yml +9 -9
  66. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +20 -20
  67. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +16 -16
  68. data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +21 -21
  69. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +50 -158
  70. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +91 -66
  71. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +167 -167
  72. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +353 -353
  73. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_dependant_containers_when_the_scanned_file_changes.yml +322 -322
  74. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_the_container_when_the_scanned_file_changes.yml +325 -327
  75. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +21 -21
  76. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +40 -40
  77. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +40 -40
  78. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +40 -40
  79. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +40 -40
  80. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +40 -40
  81. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for/bigrig_json_waits_for_wait_for.yml +60 -60
  82. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for_broken_json_fails_with_an_error.yml +60 -60
  83. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +661 -216
  84. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +662 -217
  85. metadata +2 -2
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Fri, 05 Jun 2015 23:25:28 GMT
22
+ - Tue, 23 Jun 2015 00:59:32 GMT
23
23
  Content-Length:
24
24
  - '1887'
25
25
  body:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  string: |
28
28
  {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"d6d34d2bfd452f4175eab78597ddd29856f0af494d503b00f4160d5eb3f13f1b","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ENTRYPOINT [/bin/sh -c ruby /code/server.rb]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-10-23T20:00:42.057514693Z","DockerVersion":"1.3.0","Id":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Os":"linux","Parent":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Size":0,"VirtualSize":801041825}
29
29
  http_version:
30
- recorded_at: Fri, 05 Jun 2015 23:25:28 GMT
30
+ recorded_at: Tue, 23 Jun 2015 00:59:32 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
@@ -47,7 +47,7 @@ http_interactions:
47
47
  Content-Type:
48
48
  - text/plain; charset=utf-8
49
49
  Date:
50
- - Fri, 05 Jun 2015 23:25:28 GMT
50
+ - Tue, 23 Jun 2015 00:59:32 GMT
51
51
  Content-Length:
52
52
  - '28'
53
53
  body:
@@ -55,7 +55,7 @@ http_interactions:
55
55
  string: |
56
56
  no such id: exports_volumes
57
57
  http_version:
58
- recorded_at: Fri, 05 Jun 2015 23:25:28 GMT
58
+ recorded_at: Tue, 23 Jun 2015 00:59:32 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
@@ -75,7 +75,7 @@ http_interactions:
75
75
  Content-Type:
76
76
  - text/plain; charset=utf-8
77
77
  Date:
78
- - Fri, 05 Jun 2015 23:25:28 GMT
78
+ - Tue, 23 Jun 2015 00:59:32 GMT
79
79
  Content-Length:
80
80
  - '28'
81
81
  body:
@@ -83,7 +83,7 @@ http_interactions:
83
83
  string: |
84
84
  no such id: exports_volumes
85
85
  http_version:
86
- recorded_at: Fri, 05 Jun 2015 23:25:28 GMT
86
+ recorded_at: Tue, 23 Jun 2015 00:59:32 GMT
87
87
  - request:
88
88
  method: get
89
89
  uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
@@ -103,7 +103,7 @@ http_interactions:
103
103
  Content-Type:
104
104
  - text/plain; charset=utf-8
105
105
  Date:
106
- - Fri, 05 Jun 2015 23:25:28 GMT
106
+ - Tue, 23 Jun 2015 00:59:32 GMT
107
107
  Content-Length:
108
108
  - '28'
109
109
  body:
@@ -111,7 +111,7 @@ http_interactions:
111
111
  string: |
112
112
  no such id: exports_volumes
113
113
  http_version:
114
- recorded_at: Fri, 05 Jun 2015 23:25:28 GMT
114
+ recorded_at: Tue, 23 Jun 2015 00:59:32 GMT
115
115
  - request:
116
116
  method: get
117
117
  uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
@@ -131,7 +131,7 @@ http_interactions:
131
131
  Content-Type:
132
132
  - text/plain; charset=utf-8
133
133
  Date:
134
- - Fri, 05 Jun 2015 23:25:28 GMT
134
+ - Tue, 23 Jun 2015 00:59:32 GMT
135
135
  Content-Length:
136
136
  - '28'
137
137
  body:
@@ -139,7 +139,7 @@ http_interactions:
139
139
  string: |
140
140
  no such id: exports_volumes
141
141
  http_version:
142
- recorded_at: Fri, 05 Jun 2015 23:25:28 GMT
142
+ recorded_at: Tue, 23 Jun 2015 00:59:32 GMT
143
143
  - request:
144
144
  method: get
145
145
  uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
@@ -159,7 +159,7 @@ http_interactions:
159
159
  Content-Type:
160
160
  - text/plain; charset=utf-8
161
161
  Date:
162
- - Fri, 05 Jun 2015 23:25:28 GMT
162
+ - Tue, 23 Jun 2015 00:59:32 GMT
163
163
  Content-Length:
164
164
  - '28'
165
165
  body:
@@ -167,7 +167,7 @@ http_interactions:
167
167
  string: |
168
168
  no such id: exports_volumes
169
169
  http_version:
170
- recorded_at: Fri, 05 Jun 2015 23:25:28 GMT
170
+ recorded_at: Tue, 23 Jun 2015 00:59:32 GMT
171
171
  - request:
172
172
  method: get
173
173
  uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
@@ -187,7 +187,7 @@ http_interactions:
187
187
  Content-Type:
188
188
  - text/plain; charset=utf-8
189
189
  Date:
190
- - Fri, 05 Jun 2015 23:25:28 GMT
190
+ - Tue, 23 Jun 2015 00:59:32 GMT
191
191
  Content-Length:
192
192
  - '28'
193
193
  body:
@@ -195,7 +195,7 @@ http_interactions:
195
195
  string: |
196
196
  no such id: exports_volumes
197
197
  http_version:
198
- recorded_at: Fri, 05 Jun 2015 23:25:28 GMT
198
+ recorded_at: Tue, 23 Jun 2015 00:59:32 GMT
199
199
  - request:
200
200
  method: get
201
201
  uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
@@ -215,7 +215,7 @@ http_interactions:
215
215
  Content-Type:
216
216
  - text/plain; charset=utf-8
217
217
  Date:
218
- - Fri, 05 Jun 2015 23:25:28 GMT
218
+ - Tue, 23 Jun 2015 00:59:32 GMT
219
219
  Content-Length:
220
220
  - '28'
221
221
  body:
@@ -223,7 +223,7 @@ http_interactions:
223
223
  string: |
224
224
  no such id: exports_volumes
225
225
  http_version:
226
- recorded_at: Fri, 05 Jun 2015 23:25:28 GMT
226
+ recorded_at: Tue, 23 Jun 2015 00:59:32 GMT
227
227
  - request:
228
228
  method: get
229
229
  uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
@@ -243,7 +243,7 @@ http_interactions:
243
243
  Content-Type:
244
244
  - text/plain; charset=utf-8
245
245
  Date:
246
- - Fri, 05 Jun 2015 23:25:28 GMT
246
+ - Tue, 23 Jun 2015 00:59:32 GMT
247
247
  Content-Length:
248
248
  - '28'
249
249
  body:
@@ -251,7 +251,7 @@ http_interactions:
251
251
  string: |
252
252
  no such id: exports_volumes
253
253
  http_version:
254
- recorded_at: Fri, 05 Jun 2015 23:25:28 GMT
254
+ recorded_at: Tue, 23 Jun 2015 00:59:32 GMT
255
255
  - request:
256
256
  method: get
257
257
  uri: "<DOCKER_HOST>/v1.16/images/hawknewton/show-env:0.0.1/json"
@@ -271,7 +271,7 @@ http_interactions:
271
271
  Content-Type:
272
272
  - application/json
273
273
  Date:
274
- - Fri, 05 Jun 2015 23:25:29 GMT
274
+ - Tue, 23 Jun 2015 00:59:33 GMT
275
275
  Content-Length:
276
276
  - '1887'
277
277
  body:
@@ -279,7 +279,7 @@ http_interactions:
279
279
  string: |
280
280
  {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"d6d34d2bfd452f4175eab78597ddd29856f0af494d503b00f4160d5eb3f13f1b","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ENTRYPOINT [/bin/sh -c ruby /code/server.rb]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-10-23T20:00:42.057514693Z","DockerVersion":"1.3.0","Id":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Os":"linux","Parent":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Size":0,"VirtualSize":801041825}
281
281
  http_version:
282
- recorded_at: Fri, 05 Jun 2015 23:25:29 GMT
282
+ recorded_at: Tue, 23 Jun 2015 00:59:33 GMT
283
283
  - request:
284
284
  method: get
285
285
  uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
@@ -299,7 +299,7 @@ http_interactions:
299
299
  Content-Type:
300
300
  - text/plain; charset=utf-8
301
301
  Date:
302
- - Fri, 05 Jun 2015 23:25:29 GMT
302
+ - Tue, 23 Jun 2015 00:59:33 GMT
303
303
  Content-Length:
304
304
  - '27'
305
305
  body:
@@ -307,7 +307,7 @@ http_interactions:
307
307
  string: |
308
308
  no such id: mounts_volumes
309
309
  http_version:
310
- recorded_at: Fri, 05 Jun 2015 23:25:29 GMT
310
+ recorded_at: Tue, 23 Jun 2015 00:59:33 GMT
311
311
  - request:
312
312
  method: get
313
313
  uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
@@ -327,7 +327,7 @@ http_interactions:
327
327
  Content-Type:
328
328
  - text/plain; charset=utf-8
329
329
  Date:
330
- - Fri, 05 Jun 2015 23:25:29 GMT
330
+ - Tue, 23 Jun 2015 00:59:33 GMT
331
331
  Content-Length:
332
332
  - '27'
333
333
  body:
@@ -335,7 +335,7 @@ http_interactions:
335
335
  string: |
336
336
  no such id: mounts_volumes
337
337
  http_version:
338
- recorded_at: Fri, 05 Jun 2015 23:25:29 GMT
338
+ recorded_at: Tue, 23 Jun 2015 00:59:33 GMT
339
339
  - request:
340
340
  method: get
341
341
  uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
@@ -355,7 +355,7 @@ http_interactions:
355
355
  Content-Type:
356
356
  - text/plain; charset=utf-8
357
357
  Date:
358
- - Fri, 05 Jun 2015 23:25:29 GMT
358
+ - Tue, 23 Jun 2015 00:59:33 GMT
359
359
  Content-Length:
360
360
  - '27'
361
361
  body:
@@ -363,7 +363,7 @@ http_interactions:
363
363
  string: |
364
364
  no such id: mounts_volumes
365
365
  http_version:
366
- recorded_at: Fri, 05 Jun 2015 23:25:29 GMT
366
+ recorded_at: Tue, 23 Jun 2015 00:59:33 GMT
367
367
  - request:
368
368
  method: get
369
369
  uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
@@ -383,7 +383,7 @@ http_interactions:
383
383
  Content-Type:
384
384
  - text/plain; charset=utf-8
385
385
  Date:
386
- - Fri, 05 Jun 2015 23:25:29 GMT
386
+ - Tue, 23 Jun 2015 00:59:33 GMT
387
387
  Content-Length:
388
388
  - '27'
389
389
  body:
@@ -391,7 +391,7 @@ http_interactions:
391
391
  string: |
392
392
  no such id: mounts_volumes
393
393
  http_version:
394
- recorded_at: Fri, 05 Jun 2015 23:25:29 GMT
394
+ recorded_at: Tue, 23 Jun 2015 00:59:33 GMT
395
395
  - request:
396
396
  method: get
397
397
  uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
@@ -411,7 +411,7 @@ http_interactions:
411
411
  Content-Type:
412
412
  - text/plain; charset=utf-8
413
413
  Date:
414
- - Fri, 05 Jun 2015 23:25:29 GMT
414
+ - Tue, 23 Jun 2015 00:59:34 GMT
415
415
  Content-Length:
416
416
  - '27'
417
417
  body:
@@ -419,7 +419,7 @@ http_interactions:
419
419
  string: |
420
420
  no such id: mounts_volumes
421
421
  http_version:
422
- recorded_at: Fri, 05 Jun 2015 23:25:29 GMT
422
+ recorded_at: Tue, 23 Jun 2015 00:59:33 GMT
423
423
  - request:
424
424
  method: get
425
425
  uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
@@ -439,7 +439,7 @@ http_interactions:
439
439
  Content-Type:
440
440
  - text/plain; charset=utf-8
441
441
  Date:
442
- - Fri, 05 Jun 2015 23:25:29 GMT
442
+ - Tue, 23 Jun 2015 00:59:34 GMT
443
443
  Content-Length:
444
444
  - '27'
445
445
  body:
@@ -447,7 +447,7 @@ http_interactions:
447
447
  string: |
448
448
  no such id: mounts_volumes
449
449
  http_version:
450
- recorded_at: Fri, 05 Jun 2015 23:25:29 GMT
450
+ recorded_at: Tue, 23 Jun 2015 00:59:34 GMT
451
451
  - request:
452
452
  method: get
453
453
  uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
@@ -467,7 +467,7 @@ http_interactions:
467
467
  Content-Type:
468
468
  - text/plain; charset=utf-8
469
469
  Date:
470
- - Fri, 05 Jun 2015 23:25:29 GMT
470
+ - Tue, 23 Jun 2015 00:59:34 GMT
471
471
  Content-Length:
472
472
  - '27'
473
473
  body:
@@ -475,7 +475,7 @@ http_interactions:
475
475
  string: |
476
476
  no such id: mounts_volumes
477
477
  http_version:
478
- recorded_at: Fri, 05 Jun 2015 23:25:29 GMT
478
+ recorded_at: Tue, 23 Jun 2015 00:59:34 GMT
479
479
  - request:
480
480
  method: get
481
481
  uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
@@ -495,7 +495,7 @@ http_interactions:
495
495
  Content-Type:
496
496
  - text/plain; charset=utf-8
497
497
  Date:
498
- - Fri, 05 Jun 2015 23:25:29 GMT
498
+ - Tue, 23 Jun 2015 00:59:34 GMT
499
499
  Content-Length:
500
500
  - '27'
501
501
  body:
@@ -503,7 +503,7 @@ http_interactions:
503
503
  string: |
504
504
  no such id: mounts_volumes
505
505
  http_version:
506
- recorded_at: Fri, 05 Jun 2015 23:25:29 GMT
506
+ recorded_at: Tue, 23 Jun 2015 00:59:34 GMT
507
507
  - request:
508
508
  method: get
509
509
  uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
@@ -523,7 +523,7 @@ http_interactions:
523
523
  Content-Type:
524
524
  - text/plain; charset=utf-8
525
525
  Date:
526
- - Fri, 05 Jun 2015 23:25:30 GMT
526
+ - Tue, 23 Jun 2015 00:59:34 GMT
527
527
  Content-Length:
528
528
  - '27'
529
529
  body:
@@ -531,7 +531,7 @@ http_interactions:
531
531
  string: |
532
532
  no such id: mounts_volumes
533
533
  http_version:
534
- recorded_at: Fri, 05 Jun 2015 23:25:30 GMT
534
+ recorded_at: Tue, 23 Jun 2015 00:59:34 GMT
535
535
  - request:
536
536
  method: get
537
537
  uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
@@ -551,7 +551,7 @@ http_interactions:
551
551
  Content-Type:
552
552
  - text/plain; charset=utf-8
553
553
  Date:
554
- - Fri, 05 Jun 2015 23:25:30 GMT
554
+ - Tue, 23 Jun 2015 00:59:34 GMT
555
555
  Content-Length:
556
556
  - '27'
557
557
  body:
@@ -559,7 +559,7 @@ http_interactions:
559
559
  string: |
560
560
  no such id: mounts_volumes
561
561
  http_version:
562
- recorded_at: Fri, 05 Jun 2015 23:25:30 GMT
562
+ recorded_at: Tue, 23 Jun 2015 00:59:34 GMT
563
563
  - request:
564
564
  method: get
565
565
  uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
@@ -579,7 +579,7 @@ http_interactions:
579
579
  Content-Type:
580
580
  - text/plain; charset=utf-8
581
581
  Date:
582
- - Fri, 05 Jun 2015 23:25:30 GMT
582
+ - Tue, 23 Jun 2015 00:59:34 GMT
583
583
  Content-Length:
584
584
  - '27'
585
585
  body:
@@ -587,7 +587,7 @@ http_interactions:
587
587
  string: |
588
588
  no such id: mounts_volumes
589
589
  http_version:
590
- recorded_at: Fri, 05 Jun 2015 23:25:30 GMT
590
+ recorded_at: Tue, 23 Jun 2015 00:59:34 GMT
591
591
  - request:
592
592
  method: get
593
593
  uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
@@ -607,7 +607,7 @@ http_interactions:
607
607
  Content-Type:
608
608
  - text/plain; charset=utf-8
609
609
  Date:
610
- - Fri, 05 Jun 2015 23:25:30 GMT
610
+ - Tue, 23 Jun 2015 00:59:34 GMT
611
611
  Content-Length:
612
612
  - '27'
613
613
  body:
@@ -615,7 +615,7 @@ http_interactions:
615
615
  string: |
616
616
  no such id: mounts_volumes
617
617
  http_version:
618
- recorded_at: Fri, 05 Jun 2015 23:25:30 GMT
618
+ recorded_at: Tue, 23 Jun 2015 00:59:34 GMT
619
619
  - request:
620
620
  method: get
621
621
  uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
@@ -635,7 +635,7 @@ http_interactions:
635
635
  Content-Type:
636
636
  - text/plain; charset=utf-8
637
637
  Date:
638
- - Fri, 05 Jun 2015 23:25:30 GMT
638
+ - Tue, 23 Jun 2015 00:59:34 GMT
639
639
  Content-Length:
640
640
  - '28'
641
641
  body:
@@ -643,7 +643,7 @@ http_interactions:
643
643
  string: |
644
644
  no such id: exports_volumes
645
645
  http_version:
646
- recorded_at: Fri, 05 Jun 2015 23:25:30 GMT
646
+ recorded_at: Tue, 23 Jun 2015 00:59:34 GMT
647
647
  - request:
648
648
  method: get
649
649
  uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
@@ -663,7 +663,7 @@ http_interactions:
663
663
  Content-Type:
664
664
  - text/plain; charset=utf-8
665
665
  Date:
666
- - Fri, 05 Jun 2015 23:25:30 GMT
666
+ - Tue, 23 Jun 2015 00:59:34 GMT
667
667
  Content-Length:
668
668
  - '28'
669
669
  body:
@@ -671,7 +671,7 @@ http_interactions:
671
671
  string: |
672
672
  no such id: exports_volumes
673
673
  http_version:
674
- recorded_at: Fri, 05 Jun 2015 23:25:30 GMT
674
+ recorded_at: Tue, 23 Jun 2015 00:59:34 GMT
675
675
  - request:
676
676
  method: get
677
677
  uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
@@ -691,7 +691,7 @@ http_interactions:
691
691
  Content-Type:
692
692
  - text/plain; charset=utf-8
693
693
  Date:
694
- - Fri, 05 Jun 2015 23:25:30 GMT
694
+ - Tue, 23 Jun 2015 00:59:34 GMT
695
695
  Content-Length:
696
696
  - '28'
697
697
  body:
@@ -699,7 +699,7 @@ http_interactions:
699
699
  string: |
700
700
  no such id: exports_volumes
701
701
  http_version:
702
- recorded_at: Fri, 05 Jun 2015 23:25:30 GMT
702
+ recorded_at: Tue, 23 Jun 2015 00:59:34 GMT
703
703
  - request:
704
704
  method: get
705
705
  uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
@@ -719,7 +719,7 @@ http_interactions:
719
719
  Content-Type:
720
720
  - text/plain; charset=utf-8
721
721
  Date:
722
- - Fri, 05 Jun 2015 23:25:30 GMT
722
+ - Tue, 23 Jun 2015 00:59:34 GMT
723
723
  Content-Length:
724
724
  - '28'
725
725
  body:
@@ -727,5 +727,5 @@ http_interactions:
727
727
  string: |
728
728
  no such id: exports_volumes
729
729
  http_version:
730
- recorded_at: Fri, 05 Jun 2015 23:25:30 GMT
730
+ recorded_at: Tue, 23 Jun 2015 00:59:34 GMT
731
731
  recorded_with: VCR 2.9.3
@@ -11,6 +11,151 @@ http_interactions:
11
11
  - Swipely/Docker-API 1.21.4
12
12
  Content-Type:
13
13
  - text/plain
14
+ response:
15
+ status:
16
+ code: 404
17
+ message:
18
+ headers:
19
+ Content-Type:
20
+ - text/plain; charset=utf-8
21
+ Date:
22
+ - Tue, 23 Jun 2015 00:59:37 GMT
23
+ Content-Length:
24
+ - '37'
25
+ body:
26
+ encoding: UTF-8
27
+ string: |
28
+ No such image: hawknewton/true:0.0.1
29
+ http_version:
30
+ recorded_at: Tue, 23 Jun 2015 00:59:37 GMT
31
+ - request:
32
+ method: get
33
+ uri: "<DOCKER_HOST>/v1.16/images/hawknewton/true:0.0.1/json"
34
+ body:
35
+ encoding: US-ASCII
36
+ string: ''
37
+ headers:
38
+ User-Agent:
39
+ - Swipely/Docker-API 1.21.4
40
+ Content-Type:
41
+ - text/plain
42
+ response:
43
+ status:
44
+ code: 404
45
+ message:
46
+ headers:
47
+ Content-Type:
48
+ - text/plain; charset=utf-8
49
+ Date:
50
+ - Tue, 23 Jun 2015 00:59:37 GMT
51
+ Content-Length:
52
+ - '37'
53
+ body:
54
+ encoding: UTF-8
55
+ string: |
56
+ No such image: hawknewton/true:0.0.1
57
+ http_version:
58
+ recorded_at: Tue, 23 Jun 2015 00:59:37 GMT
59
+ - request:
60
+ method: get
61
+ uri: "<DOCKER_HOST>/v1.16/images/hawknewton/true:0.0.1/json"
62
+ body:
63
+ encoding: US-ASCII
64
+ string: ''
65
+ headers:
66
+ User-Agent:
67
+ - Swipely/Docker-API 1.21.4
68
+ Content-Type:
69
+ - text/plain
70
+ response:
71
+ status:
72
+ code: 404
73
+ message:
74
+ headers:
75
+ Content-Type:
76
+ - text/plain; charset=utf-8
77
+ Date:
78
+ - Tue, 23 Jun 2015 00:59:37 GMT
79
+ Content-Length:
80
+ - '37'
81
+ body:
82
+ encoding: UTF-8
83
+ string: |
84
+ No such image: hawknewton/true:0.0.1
85
+ http_version:
86
+ recorded_at: Tue, 23 Jun 2015 00:59:37 GMT
87
+ - request:
88
+ method: get
89
+ uri: "<DOCKER_HOST>/v1.16/images/hawknewton/true:0.0.1/json"
90
+ body:
91
+ encoding: US-ASCII
92
+ string: ''
93
+ headers:
94
+ User-Agent:
95
+ - Swipely/Docker-API 1.21.4
96
+ Content-Type:
97
+ - text/plain
98
+ response:
99
+ status:
100
+ code: 404
101
+ message:
102
+ headers:
103
+ Content-Type:
104
+ - text/plain; charset=utf-8
105
+ Date:
106
+ - Tue, 23 Jun 2015 00:59:37 GMT
107
+ Content-Length:
108
+ - '37'
109
+ body:
110
+ encoding: UTF-8
111
+ string: |
112
+ No such image: hawknewton/true:0.0.1
113
+ http_version:
114
+ recorded_at: Tue, 23 Jun 2015 00:59:37 GMT
115
+ - request:
116
+ method: post
117
+ uri: "<DOCKER_HOST>/v1.16/images/create?fromImage=hawknewton%2Ftrue%3A0.0.1"
118
+ body:
119
+ encoding: US-ASCII
120
+ string: ''
121
+ headers:
122
+ User-Agent:
123
+ - Swipely/Docker-API 1.21.4
124
+ Content-Type:
125
+ - text/plain
126
+ response:
127
+ status:
128
+ code: 200
129
+ message:
130
+ headers:
131
+ Content-Type:
132
+ - application/json
133
+ Date:
134
+ - Tue, 23 Jun 2015 00:59:43 GMT
135
+ body:
136
+ encoding: UTF-8
137
+ string: "{\"status\":\"Pulling repository hawknewton/true\"}\r\n{\"status\":\"Pulling
138
+ image (0.0.1) from hawknewton/true\",\"progressDetail\":{},\"id\":\"5fbce35eb337\"}{\"status\":\"Pulling
139
+ image (0.0.1) from hawknewton/true, endpoint: https://registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"5fbce35eb337\"}{\"status\":\"Pulling
140
+ dependent layers\",\"progressDetail\":{},\"id\":\"5fbce35eb337\"}{\"status\":\"Download
141
+ complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
142
+ complete\",\"progressDetail\":{},\"id\":\"c0d559283422\"}{\"status\":\"Download
143
+ complete\",\"progressDetail\":{},\"id\":\"5fbce35eb337\"}{\"status\":\"Download
144
+ complete\",\"progressDetail\":{},\"id\":\"5fbce35eb337\"}{\"status\":\"Status:
145
+ Image is up to date for hawknewton/true:0.0.1\"}\r\n"
146
+ http_version:
147
+ recorded_at: Tue, 23 Jun 2015 00:59:44 GMT
148
+ - request:
149
+ method: get
150
+ uri: "<DOCKER_HOST>/v1.16/images/5fbce35eb337/json"
151
+ body:
152
+ encoding: US-ASCII
153
+ string: ''
154
+ headers:
155
+ User-Agent:
156
+ - Swipely/Docker-API 1.21.4
157
+ Content-Type:
158
+ - text/plain
14
159
  response:
15
160
  status:
16
161
  code: 200
@@ -19,7 +164,7 @@ http_interactions:
19
164
  Content-Type:
20
165
  - application/json
21
166
  Date:
22
- - Fri, 05 Jun 2015 23:24:40 GMT
167
+ - Tue, 23 Jun 2015 00:59:44 GMT
23
168
  Content-Length:
24
169
  - '1507'
25
170
  body:
@@ -27,7 +172,7 @@ http_interactions:
27
172
  string: |
28
173
  {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"cb0575974a6a573010bf8f4fa1ca6ce5ac4760b880c30db72ffe47a4c62849c0","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) CMD [/true]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-01-10T13:42:58.118276832Z","DockerVersion":"1.3.0","Id":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Os":"linux","Parent":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","Size":0,"VirtualSize":125}
29
174
  http_version:
30
- recorded_at: Fri, 05 Jun 2015 23:24:40 GMT
175
+ recorded_at: Tue, 23 Jun 2015 00:59:44 GMT
31
176
  - request:
32
177
  method: get
33
178
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -47,7 +192,7 @@ http_interactions:
47
192
  Content-Type:
48
193
  - text/plain; charset=utf-8
49
194
  Date:
50
- - Fri, 05 Jun 2015 23:24:40 GMT
195
+ - Tue, 23 Jun 2015 00:59:44 GMT
51
196
  Content-Length:
52
197
  - '21'
53
198
  body:
@@ -55,7 +200,7 @@ http_interactions:
55
200
  string: |
56
201
  no such id: profiles
57
202
  http_version:
58
- recorded_at: Fri, 05 Jun 2015 23:24:40 GMT
203
+ recorded_at: Tue, 23 Jun 2015 00:59:44 GMT
59
204
  - request:
60
205
  method: get
61
206
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -75,7 +220,7 @@ http_interactions:
75
220
  Content-Type:
76
221
  - text/plain; charset=utf-8
77
222
  Date:
78
- - Fri, 05 Jun 2015 23:24:40 GMT
223
+ - Tue, 23 Jun 2015 00:59:45 GMT
79
224
  Content-Length:
80
225
  - '21'
81
226
  body:
@@ -83,7 +228,7 @@ http_interactions:
83
228
  string: |
84
229
  no such id: profiles
85
230
  http_version:
86
- recorded_at: Fri, 05 Jun 2015 23:24:40 GMT
231
+ recorded_at: Tue, 23 Jun 2015 00:59:45 GMT
87
232
  - request:
88
233
  method: get
89
234
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -103,7 +248,7 @@ http_interactions:
103
248
  Content-Type:
104
249
  - text/plain; charset=utf-8
105
250
  Date:
106
- - Fri, 05 Jun 2015 23:24:40 GMT
251
+ - Tue, 23 Jun 2015 00:59:45 GMT
107
252
  Content-Length:
108
253
  - '21'
109
254
  body:
@@ -111,7 +256,7 @@ http_interactions:
111
256
  string: |
112
257
  no such id: profiles
113
258
  http_version:
114
- recorded_at: Fri, 05 Jun 2015 23:24:40 GMT
259
+ recorded_at: Tue, 23 Jun 2015 00:59:45 GMT
115
260
  - request:
116
261
  method: get
117
262
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -131,7 +276,7 @@ http_interactions:
131
276
  Content-Type:
132
277
  - text/plain; charset=utf-8
133
278
  Date:
134
- - Fri, 05 Jun 2015 23:24:40 GMT
279
+ - Tue, 23 Jun 2015 00:59:45 GMT
135
280
  Content-Length:
136
281
  - '21'
137
282
  body:
@@ -139,7 +284,7 @@ http_interactions:
139
284
  string: |
140
285
  no such id: profiles
141
286
  http_version:
142
- recorded_at: Fri, 05 Jun 2015 23:24:40 GMT
287
+ recorded_at: Tue, 23 Jun 2015 00:59:45 GMT
143
288
  - request:
144
289
  method: get
145
290
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -159,7 +304,7 @@ http_interactions:
159
304
  Content-Type:
160
305
  - text/plain; charset=utf-8
161
306
  Date:
162
- - Fri, 05 Jun 2015 23:24:40 GMT
307
+ - Tue, 23 Jun 2015 00:59:45 GMT
163
308
  Content-Length:
164
309
  - '21'
165
310
  body:
@@ -167,7 +312,7 @@ http_interactions:
167
312
  string: |
168
313
  no such id: profiles
169
314
  http_version:
170
- recorded_at: Fri, 05 Jun 2015 23:24:40 GMT
315
+ recorded_at: Tue, 23 Jun 2015 00:59:45 GMT
171
316
  - request:
172
317
  method: get
173
318
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -187,7 +332,7 @@ http_interactions:
187
332
  Content-Type:
188
333
  - text/plain; charset=utf-8
189
334
  Date:
190
- - Fri, 05 Jun 2015 23:24:40 GMT
335
+ - Tue, 23 Jun 2015 00:59:45 GMT
191
336
  Content-Length:
192
337
  - '21'
193
338
  body:
@@ -195,7 +340,7 @@ http_interactions:
195
340
  string: |
196
341
  no such id: profiles
197
342
  http_version:
198
- recorded_at: Fri, 05 Jun 2015 23:24:40 GMT
343
+ recorded_at: Tue, 23 Jun 2015 00:59:45 GMT
199
344
  - request:
200
345
  method: get
201
346
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -215,7 +360,7 @@ http_interactions:
215
360
  Content-Type:
216
361
  - text/plain; charset=utf-8
217
362
  Date:
218
- - Fri, 05 Jun 2015 23:24:40 GMT
363
+ - Tue, 23 Jun 2015 00:59:45 GMT
219
364
  Content-Length:
220
365
  - '21'
221
366
  body:
@@ -223,7 +368,7 @@ http_interactions:
223
368
  string: |
224
369
  no such id: profiles
225
370
  http_version:
226
- recorded_at: Fri, 05 Jun 2015 23:24:40 GMT
371
+ recorded_at: Tue, 23 Jun 2015 00:59:45 GMT
227
372
  - request:
228
373
  method: get
229
374
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -243,7 +388,7 @@ http_interactions:
243
388
  Content-Type:
244
389
  - text/plain; charset=utf-8
245
390
  Date:
246
- - Fri, 05 Jun 2015 23:24:40 GMT
391
+ - Tue, 23 Jun 2015 00:59:45 GMT
247
392
  Content-Length:
248
393
  - '21'
249
394
  body:
@@ -251,13 +396,13 @@ http_interactions:
251
396
  string: |
252
397
  no such id: profiles
253
398
  http_version:
254
- recorded_at: Fri, 05 Jun 2015 23:24:40 GMT
399
+ recorded_at: Tue, 23 Jun 2015 00:59:45 GMT
255
400
  - request:
256
401
  method: post
257
402
  uri: "<DOCKER_HOST>/v1.16/containers/create?name=profiles"
258
403
  body:
259
404
  encoding: UTF-8
260
- string: '{"Env":["NAME1=VALUE1","NAME2=VALUE2"],"Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","ExposedPorts":{"80/tcp":{}}}'
405
+ string: '{"Env":["NAME1=VALUE1","NAME2=VALUE2"],"Hostname":"HNEWTONMAC3","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","ExposedPorts":{"80/tcp":{}}}'
261
406
  headers:
262
407
  User-Agent:
263
408
  - Swipely/Docker-API 1.21.4
@@ -271,18 +416,18 @@ http_interactions:
271
416
  Content-Type:
272
417
  - application/json
273
418
  Date:
274
- - Fri, 05 Jun 2015 23:24:41 GMT
419
+ - Tue, 23 Jun 2015 00:59:45 GMT
275
420
  Content-Length:
276
421
  - '90'
277
422
  body:
278
423
  encoding: UTF-8
279
424
  string: |
280
- {"Id":"518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4","Warnings":null}
425
+ {"Id":"b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0","Warnings":null}
281
426
  http_version:
282
- recorded_at: Fri, 05 Jun 2015 23:24:41 GMT
427
+ recorded_at: Tue, 23 Jun 2015 00:59:45 GMT
283
428
  - request:
284
429
  method: post
285
- uri: "<DOCKER_HOST>/v1.16/containers/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4/start"
430
+ uri: "<DOCKER_HOST>/v1.16/containers/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0/start"
286
431
  body:
287
432
  encoding: UTF-8
288
433
  string: '{"Links":[],"ExtraHosts":[],"PortBindings":{"80/tcp":[{"HostPort":"4567"}]},"VolumesFrom":[],"Binds":[]}'
@@ -297,12 +442,12 @@ http_interactions:
297
442
  message:
298
443
  headers:
299
444
  Date:
300
- - Fri, 05 Jun 2015 23:24:41 GMT
445
+ - Tue, 23 Jun 2015 00:59:45 GMT
301
446
  body:
302
447
  encoding: UTF-8
303
448
  string: ''
304
449
  http_version:
305
- recorded_at: Fri, 05 Jun 2015 23:24:41 GMT
450
+ recorded_at: Tue, 23 Jun 2015 00:59:45 GMT
306
451
  - request:
307
452
  method: get
308
453
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -322,16 +467,16 @@ http_interactions:
322
467
  Content-Type:
323
468
  - application/json
324
469
  Date:
325
- - Fri, 05 Jun 2015 23:24:41 GMT
470
+ - Tue, 23 Jun 2015 00:59:45 GMT
326
471
  body:
327
472
  encoding: UTF-8
328
473
  string: |
329
- {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["NAME1=VALUE1","NAME2=VALUE2","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":{"80/tcp":{}},"Hostname":"518eb52792b3","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:24:40.967901554Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4567"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4/hosts","Id":"518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","LogPath":"/mnt/sda1/var/lib/docker/containers/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4-json.log","MountLabel":"","Name":"/profiles","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.55","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:137","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:37","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4567"}]}},"Path":"/true","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23223,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:24:41.403770785Z"},"Volumes":{},"VolumesRW":{}}
474
+ {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["NAME1=VALUE1","NAME2=VALUE2","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":{"80/tcp":{}},"Hostname":"HNEWTONMAC3","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:45.317796526Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4567"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0/hosts","Id":"b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","LogPath":"/mnt/sda1/var/lib/docker/containers/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0-json.log","MountLabel":"","Name":"/profiles","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.97","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:61","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:61","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4567"}]}},"Path":"/true","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10091,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T00:59:45.815280374Z"},"Volumes":{},"VolumesRW":{}}
330
475
  http_version:
331
- recorded_at: Fri, 05 Jun 2015 23:24:41 GMT
476
+ recorded_at: Tue, 23 Jun 2015 00:59:45 GMT
332
477
  - request:
333
478
  method: post
334
- uri: "<DOCKER_HOST>/v1.16/containers/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4/exec"
479
+ uri: "<DOCKER_HOST>/v1.16/containers/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0/exec"
335
480
  body:
336
481
  encoding: UTF-8
337
482
  string: '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":false,"Cmd":["ls","/bigrig-wait.sh"]}'
@@ -348,18 +493,18 @@ http_interactions:
348
493
  Content-Type:
349
494
  - application/json
350
495
  Date:
351
- - Fri, 05 Jun 2015 23:24:41 GMT
496
+ - Tue, 23 Jun 2015 00:59:45 GMT
352
497
  Content-Length:
353
498
  - '74'
354
499
  body:
355
500
  encoding: UTF-8
356
501
  string: |
357
- {"Id":"e321b6c62c3532e1a998ee3912b2a0a249b78b20be5f7b5e09b41ffa2c6a8204"}
502
+ {"Id":"6064e2f107411250dda13e3563d2ff225f546fbacb3ef5ec4a50327a6f5b4694"}
358
503
  http_version:
359
- recorded_at: Fri, 05 Jun 2015 23:24:41 GMT
504
+ recorded_at: Tue, 23 Jun 2015 00:59:45 GMT
360
505
  - request:
361
506
  method: post
362
- uri: "<DOCKER_HOST>/v1.16/exec/e321b6c62c3532e1a998ee3912b2a0a249b78b20be5f7b5e09b41ffa2c6a8204/start"
507
+ uri: "<DOCKER_HOST>/v1.16/exec/6064e2f107411250dda13e3563d2ff225f546fbacb3ef5ec4a50327a6f5b4694/start"
363
508
  body:
364
509
  encoding: UTF-8
365
510
  string: '{"Tty":false,"Detach":false}'
@@ -378,18 +523,18 @@ http_interactions:
378
523
  body:
379
524
  encoding: ASCII-8BIT
380
525
  string: !binary |-
381
- AgAAAAAAAFpDb250YWluZXIgNTE4ZWI1Mjc5MmIzNGI1OWI4YWE3ZGFmYzY1
382
- NTZiZGY5MjAzYWJjYjA3ZjVjMGEzZjM0MjM1MzY3NTI3NTlkNCBpcyBub3Qg
526
+ AgAAAAAAAFpDb250YWluZXIgYjYzM2QxY2JjNGEwYTY5Mzg0ZmE5YWMyNDM3
527
+ MThmYjc0Y2ZlNzc5MDIwMTNiYWFmMTcxNTBlN2NjMTJkNDZkMCBpcyBub3Qg
383
528
  cnVubmluZwoBAAAAAAAAxUVycm9yIHN0YXJ0aW5nIGV4ZWMgY29tbWFuZCBp
384
- biBjb250YWluZXIgZTMyMWI2YzYyYzM1MzJlMWE5OThlZTM5MTJiMmEwYTI0
385
- OWI3OGIyMGJlNWY3YjVlMDliNDFmZmEyYzZhODIwNDogQ29udGFpbmVyIDUx
386
- OGViNTI3OTJiMzRiNTliOGFhN2RhZmM2NTU2YmRmOTIwM2FiY2IwN2Y1YzBh
387
- M2YzNDIzNTM2NzUyNzU5ZDQgaXMgbm90IHJ1bm5pbmcK
529
+ biBjb250YWluZXIgNjA2NGUyZjEwNzQxMTI1MGRkYTEzZTM1NjNkMmZmMjI1
530
+ ZjU0NmZiYWNiM2VmNWVjNGE1MDMyN2E2ZjViNDY5NDogQ29udGFpbmVyIGI2
531
+ MzNkMWNiYzRhMGE2OTM4NGZhOWFjMjQzNzE4ZmI3NGNmZTc3OTAyMDEzYmFh
532
+ ZjE3MTUwZTdjYzEyZDQ2ZDAgaXMgbm90IHJ1bm5pbmcK
388
533
  http_version:
389
- recorded_at: Fri, 05 Jun 2015 23:24:41 GMT
534
+ recorded_at: Tue, 23 Jun 2015 00:59:46 GMT
390
535
  - request:
391
536
  method: get
392
- uri: "<DOCKER_HOST>/v1.16/exec/e321b6c62c3532e1a998ee3912b2a0a249b78b20be5f7b5e09b41ffa2c6a8204/json"
537
+ uri: "<DOCKER_HOST>/v1.16/exec/6064e2f107411250dda13e3563d2ff225f546fbacb3ef5ec4a50327a6f5b4694/json"
393
538
  body:
394
539
  encoding: US-ASCII
395
540
  string: ''
@@ -406,18 +551,18 @@ http_interactions:
406
551
  Content-Type:
407
552
  - text/plain; charset=utf-8
408
553
  Date:
409
- - Fri, 05 Jun 2015 23:24:41 GMT
554
+ - Tue, 23 Jun 2015 00:59:46 GMT
410
555
  Content-Length:
411
556
  - '105'
412
557
  body:
413
558
  encoding: UTF-8
414
559
  string: |
415
- No such exec instance 'e321b6c62c3532e1a998ee3912b2a0a249b78b20be5f7b5e09b41ffa2c6a8204' found in daemon
560
+ No such exec instance '6064e2f107411250dda13e3563d2ff225f546fbacb3ef5ec4a50327a6f5b4694' found in daemon
416
561
  http_version:
417
- recorded_at: Fri, 05 Jun 2015 23:24:41 GMT
562
+ recorded_at: Tue, 23 Jun 2015 00:59:46 GMT
418
563
  - request:
419
564
  method: get
420
- uri: "<DOCKER_HOST>/v1.16/exec/e321b6c62c3532e1a998ee3912b2a0a249b78b20be5f7b5e09b41ffa2c6a8204/json"
565
+ uri: "<DOCKER_HOST>/v1.16/exec/6064e2f107411250dda13e3563d2ff225f546fbacb3ef5ec4a50327a6f5b4694/json"
421
566
  body:
422
567
  encoding: US-ASCII
423
568
  string: ''
@@ -434,18 +579,18 @@ http_interactions:
434
579
  Content-Type:
435
580
  - text/plain; charset=utf-8
436
581
  Date:
437
- - Fri, 05 Jun 2015 23:24:41 GMT
582
+ - Tue, 23 Jun 2015 00:59:46 GMT
438
583
  Content-Length:
439
584
  - '105'
440
585
  body:
441
586
  encoding: UTF-8
442
587
  string: |
443
- No such exec instance 'e321b6c62c3532e1a998ee3912b2a0a249b78b20be5f7b5e09b41ffa2c6a8204' found in daemon
588
+ No such exec instance '6064e2f107411250dda13e3563d2ff225f546fbacb3ef5ec4a50327a6f5b4694' found in daemon
444
589
  http_version:
445
- recorded_at: Fri, 05 Jun 2015 23:24:41 GMT
590
+ recorded_at: Tue, 23 Jun 2015 00:59:46 GMT
446
591
  - request:
447
592
  method: get
448
- uri: "<DOCKER_HOST>/v1.16/exec/e321b6c62c3532e1a998ee3912b2a0a249b78b20be5f7b5e09b41ffa2c6a8204/json"
593
+ uri: "<DOCKER_HOST>/v1.16/exec/6064e2f107411250dda13e3563d2ff225f546fbacb3ef5ec4a50327a6f5b4694/json"
449
594
  body:
450
595
  encoding: US-ASCII
451
596
  string: ''
@@ -462,18 +607,18 @@ http_interactions:
462
607
  Content-Type:
463
608
  - text/plain; charset=utf-8
464
609
  Date:
465
- - Fri, 05 Jun 2015 23:24:41 GMT
610
+ - Tue, 23 Jun 2015 00:59:46 GMT
466
611
  Content-Length:
467
612
  - '105'
468
613
  body:
469
614
  encoding: UTF-8
470
615
  string: |
471
- No such exec instance 'e321b6c62c3532e1a998ee3912b2a0a249b78b20be5f7b5e09b41ffa2c6a8204' found in daemon
616
+ No such exec instance '6064e2f107411250dda13e3563d2ff225f546fbacb3ef5ec4a50327a6f5b4694' found in daemon
472
617
  http_version:
473
- recorded_at: Fri, 05 Jun 2015 23:24:41 GMT
618
+ recorded_at: Tue, 23 Jun 2015 00:59:46 GMT
474
619
  - request:
475
620
  method: get
476
- uri: "<DOCKER_HOST>/v1.16/exec/e321b6c62c3532e1a998ee3912b2a0a249b78b20be5f7b5e09b41ffa2c6a8204/json"
621
+ uri: "<DOCKER_HOST>/v1.16/exec/6064e2f107411250dda13e3563d2ff225f546fbacb3ef5ec4a50327a6f5b4694/json"
477
622
  body:
478
623
  encoding: US-ASCII
479
624
  string: ''
@@ -490,15 +635,15 @@ http_interactions:
490
635
  Content-Type:
491
636
  - text/plain; charset=utf-8
492
637
  Date:
493
- - Fri, 05 Jun 2015 23:24:41 GMT
638
+ - Tue, 23 Jun 2015 00:59:46 GMT
494
639
  Content-Length:
495
640
  - '105'
496
641
  body:
497
642
  encoding: UTF-8
498
643
  string: |
499
- No such exec instance 'e321b6c62c3532e1a998ee3912b2a0a249b78b20be5f7b5e09b41ffa2c6a8204' found in daemon
644
+ No such exec instance '6064e2f107411250dda13e3563d2ff225f546fbacb3ef5ec4a50327a6f5b4694' found in daemon
500
645
  http_version:
501
- recorded_at: Fri, 05 Jun 2015 23:24:41 GMT
646
+ recorded_at: Tue, 23 Jun 2015 00:59:46 GMT
502
647
  - request:
503
648
  method: get
504
649
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -518,13 +663,13 @@ http_interactions:
518
663
  Content-Type:
519
664
  - application/json
520
665
  Date:
521
- - Fri, 05 Jun 2015 23:24:41 GMT
666
+ - Tue, 23 Jun 2015 00:59:46 GMT
522
667
  body:
523
668
  encoding: UTF-8
524
669
  string: |
525
- {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["NAME1=VALUE1","NAME2=VALUE2","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":{"80/tcp":{}},"Hostname":"518eb52792b3","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:24:40.967901554Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4567"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4/hosts","Id":"518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","LogPath":"/mnt/sda1/var/lib/docker/containers/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4-json.log","MountLabel":"","Name":"/profiles","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/true","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"2015-06-05T23:24:41.523225622Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:24:41.403770785Z"},"Volumes":{},"VolumesRW":{}}
670
+ {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["NAME1=VALUE1","NAME2=VALUE2","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":{"80/tcp":{}},"Hostname":"HNEWTONMAC3","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:45.317796526Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4567"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0/hosts","Id":"b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","LogPath":"/mnt/sda1/var/lib/docker/containers/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0-json.log","MountLabel":"","Name":"/profiles","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/true","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"2015-06-23T00:59:45.97762896Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-23T00:59:45.815280374Z"},"Volumes":{},"VolumesRW":{}}
526
671
  http_version:
527
- recorded_at: Fri, 05 Jun 2015 23:24:41 GMT
672
+ recorded_at: Tue, 23 Jun 2015 00:59:46 GMT
528
673
  - request:
529
674
  method: get
530
675
  uri: "<DOCKER_HOST>/v1.16/images/hawknewton/true/json"
@@ -544,7 +689,7 @@ http_interactions:
544
689
  Content-Type:
545
690
  - application/json
546
691
  Date:
547
- - Fri, 05 Jun 2015 23:24:41 GMT
692
+ - Tue, 23 Jun 2015 00:59:46 GMT
548
693
  Content-Length:
549
694
  - '1507'
550
695
  body:
@@ -552,7 +697,7 @@ http_interactions:
552
697
  string: |
553
698
  {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"cb0575974a6a573010bf8f4fa1ca6ce5ac4760b880c30db72ffe47a4c62849c0","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) CMD [/true]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-01-10T13:42:58.118276832Z","DockerVersion":"1.3.0","Id":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Os":"linux","Parent":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","Size":0,"VirtualSize":125}
554
699
  http_version:
555
- recorded_at: Fri, 05 Jun 2015 23:24:41 GMT
700
+ recorded_at: Tue, 23 Jun 2015 00:59:46 GMT
556
701
  - request:
557
702
  method: get
558
703
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -572,16 +717,16 @@ http_interactions:
572
717
  Content-Type:
573
718
  - application/json
574
719
  Date:
575
- - Fri, 05 Jun 2015 23:24:41 GMT
720
+ - Tue, 23 Jun 2015 00:59:46 GMT
576
721
  body:
577
722
  encoding: UTF-8
578
723
  string: |
579
- {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["NAME1=VALUE1","NAME2=VALUE2","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":{"80/tcp":{}},"Hostname":"518eb52792b3","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:24:40.967901554Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4567"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4/hosts","Id":"518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","LogPath":"/mnt/sda1/var/lib/docker/containers/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4-json.log","MountLabel":"","Name":"/profiles","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/true","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"2015-06-05T23:24:41.523225622Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:24:41.403770785Z"},"Volumes":{},"VolumesRW":{}}
724
+ {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["NAME1=VALUE1","NAME2=VALUE2","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":{"80/tcp":{}},"Hostname":"HNEWTONMAC3","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:45.317796526Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4567"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0/hosts","Id":"b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","LogPath":"/mnt/sda1/var/lib/docker/containers/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0-json.log","MountLabel":"","Name":"/profiles","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/true","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"2015-06-23T00:59:45.97762896Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-23T00:59:45.815280374Z"},"Volumes":{},"VolumesRW":{}}
580
725
  http_version:
581
- recorded_at: Fri, 05 Jun 2015 23:24:41 GMT
726
+ recorded_at: Tue, 23 Jun 2015 00:59:46 GMT
582
727
  - request:
583
728
  method: delete
584
- uri: "<DOCKER_HOST>/v1.16/containers/518eb52792b34b59b8aa7dafc6556bdf9203abcb07f5c0a3f3423536752759d4?force=true"
729
+ uri: "<DOCKER_HOST>/v1.16/containers/b633d1cbc4a0a69384fa9ac243718fb74cfe77902013baaf17150e7cc12d46d0?force=true"
585
730
  body:
586
731
  encoding: US-ASCII
587
732
  string: ''
@@ -596,10 +741,10 @@ http_interactions:
596
741
  message:
597
742
  headers:
598
743
  Date:
599
- - Fri, 05 Jun 2015 23:24:41 GMT
744
+ - Tue, 23 Jun 2015 00:59:46 GMT
600
745
  body:
601
746
  encoding: UTF-8
602
747
  string: ''
603
748
  http_version:
604
- recorded_at: Fri, 05 Jun 2015 23:24:41 GMT
749
+ recorded_at: Tue, 23 Jun 2015 00:59:46 GMT
605
750
  recorded_with: VCR 2.9.3