bigrig 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/Gemfile +2 -0
  4. data/Gemfile.lock +12 -2
  5. data/lib/bigrig/descriptor.rb +3 -0
  6. data/lib/bigrig/output_parser.rb +46 -7
  7. data/lib/bigrig/version.rb +1 -1
  8. data/spec/bigrig/descriptor_spec.rb +34 -0
  9. data/spec/bigrig/output_parser_spec.rb +22 -0
  10. data/spec/bigrig_spec.rb +9 -1
  11. data/spec/data/adds_volume.json +17 -0
  12. data/spec/data/adds_volumes_from.json +17 -0
  13. data/spec/data/multiple_overrides.json +22 -0
  14. data/spec/support/vcr.rb +7 -2
  15. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +46 -46
  16. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +49 -49
  17. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +9 -9
  18. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +4 -4
  19. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +8 -8
  20. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +10 -10
  21. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +12 -12
  22. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +12 -12
  23. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +8 -8
  24. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +22 -22
  25. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +17 -17
  26. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +4 -4
  27. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +2 -2
  28. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +6 -6
  29. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +43 -43
  30. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +143 -107
  31. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +16 -16
  32. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +32 -32
  33. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +10 -10
  34. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +8 -8
  35. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +27 -27
  36. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +28 -28
  37. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_env_variables/starts_the_container_with_env_set.yml +28 -28
  38. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +32 -32
  39. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +8 -8
  40. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +11 -11
  41. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +13 -13
  42. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +30 -83
  43. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +17 -17
  44. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +27 -176
  45. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +41 -41
  46. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +41 -41
  47. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +75 -75
  48. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +52 -52
  49. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +74 -74
  50. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +37 -37
  51. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +39 -39
  52. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes/should_pass_volumes_to_the_right_container.yml +40 -40
  53. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +75 -75
  54. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +52 -52
  55. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +43 -38
  56. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +39 -39
  57. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +14 -14
  58. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +227 -3
  59. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +240 -16
  60. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +238 -14
  61. data/spec/vcr/bigrig/dev/spec/data/dev_json/tails_the_logs.yml +227 -0
  62. data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +17 -17
  63. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +11 -11
  64. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +11 -11
  65. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +11 -11
  66. data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +9 -9
  67. data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +13 -13
  68. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +28 -28
  69. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +17 -17
  70. data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +21 -21
  71. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +109 -107
  72. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +108 -108
  73. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +118 -118
  74. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +21 -21
  75. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +25 -25
  76. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +25 -25
  77. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +24 -173
  78. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +25 -25
  79. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +25 -25
  80. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +121 -85
  81. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +113 -77
  82. metadata +6 -3
  83. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_destroys_containers_on_exit.yml +0 -1070
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - text/plain; charset=utf-8
21
21
  Date:
22
- - Thu, 12 Mar 2015 21:38:03 GMT
22
+ - Mon, 06 Apr 2015 21:59:32 GMT
23
23
  Content-Length:
24
24
  - '32'
25
25
  body:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  string: |
28
28
  No such container: doesnotexist
29
29
  http_version:
30
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
30
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/containers/doesnotexist/json"
@@ -47,7 +47,7 @@ http_interactions:
47
47
  Content-Type:
48
48
  - text/plain; charset=utf-8
49
49
  Date:
50
- - Thu, 12 Mar 2015 21:38:03 GMT
50
+ - Mon, 06 Apr 2015 21:59:32 GMT
51
51
  Content-Length:
52
52
  - '32'
53
53
  body:
@@ -55,7 +55,7 @@ http_interactions:
55
55
  string: |
56
56
  No such container: doesnotexist
57
57
  http_version:
58
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
58
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: "<DOCKER_HOST>/v1.16/containers/doesnotexist/json"
@@ -75,7 +75,7 @@ http_interactions:
75
75
  Content-Type:
76
76
  - text/plain; charset=utf-8
77
77
  Date:
78
- - Thu, 12 Mar 2015 21:38:03 GMT
78
+ - Mon, 06 Apr 2015 21:59:32 GMT
79
79
  Content-Length:
80
80
  - '32'
81
81
  body:
@@ -83,7 +83,7 @@ http_interactions:
83
83
  string: |
84
84
  No such container: doesnotexist
85
85
  http_version:
86
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
86
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
87
87
  - request:
88
88
  method: get
89
89
  uri: "<DOCKER_HOST>/v1.16/containers/doesnotexist/json"
@@ -103,7 +103,7 @@ http_interactions:
103
103
  Content-Type:
104
104
  - text/plain; charset=utf-8
105
105
  Date:
106
- - Thu, 12 Mar 2015 21:38:03 GMT
106
+ - Mon, 06 Apr 2015 21:59:32 GMT
107
107
  Content-Length:
108
108
  - '32'
109
109
  body:
@@ -111,7 +111,7 @@ http_interactions:
111
111
  string: |
112
112
  No such container: doesnotexist
113
113
  http_version:
114
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
114
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
115
115
  - request:
116
116
  method: get
117
117
  uri: "<DOCKER_HOST>/v1.16/containers/doesnotexist/json"
@@ -131,7 +131,7 @@ http_interactions:
131
131
  Content-Type:
132
132
  - text/plain; charset=utf-8
133
133
  Date:
134
- - Thu, 12 Mar 2015 21:38:03 GMT
134
+ - Mon, 06 Apr 2015 21:59:32 GMT
135
135
  Content-Length:
136
136
  - '32'
137
137
  body:
@@ -139,7 +139,7 @@ http_interactions:
139
139
  string: |
140
140
  No such container: doesnotexist
141
141
  http_version:
142
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
142
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
143
143
  - request:
144
144
  method: get
145
145
  uri: "<DOCKER_HOST>/v1.16/containers/doesnotexist/json"
@@ -159,7 +159,7 @@ http_interactions:
159
159
  Content-Type:
160
160
  - text/plain; charset=utf-8
161
161
  Date:
162
- - Thu, 12 Mar 2015 21:38:03 GMT
162
+ - Mon, 06 Apr 2015 21:59:32 GMT
163
163
  Content-Length:
164
164
  - '32'
165
165
  body:
@@ -167,7 +167,7 @@ http_interactions:
167
167
  string: |
168
168
  No such container: doesnotexist
169
169
  http_version:
170
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
170
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
171
171
  - request:
172
172
  method: get
173
173
  uri: "<DOCKER_HOST>/v1.16/containers/doesnotexist/json"
@@ -187,7 +187,7 @@ http_interactions:
187
187
  Content-Type:
188
188
  - text/plain; charset=utf-8
189
189
  Date:
190
- - Thu, 12 Mar 2015 21:38:03 GMT
190
+ - Mon, 06 Apr 2015 21:59:32 GMT
191
191
  Content-Length:
192
192
  - '32'
193
193
  body:
@@ -195,7 +195,7 @@ http_interactions:
195
195
  string: |
196
196
  No such container: doesnotexist
197
197
  http_version:
198
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
198
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
199
199
  - request:
200
200
  method: get
201
201
  uri: "<DOCKER_HOST>/v1.16/containers/doesnotexist/json"
@@ -215,7 +215,7 @@ http_interactions:
215
215
  Content-Type:
216
216
  - text/plain; charset=utf-8
217
217
  Date:
218
- - Thu, 12 Mar 2015 21:38:03 GMT
218
+ - Mon, 06 Apr 2015 21:59:32 GMT
219
219
  Content-Length:
220
220
  - '32'
221
221
  body:
@@ -223,5 +223,5 @@ http_interactions:
223
223
  string: |
224
224
  No such container: doesnotexist
225
225
  http_version:
226
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
226
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
227
227
  recorded_with: VCR 2.9.3
@@ -19,18 +19,18 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Thu, 12 Mar 2015 21:38:03 GMT
22
+ - Mon, 06 Apr 2015 21:59:32 GMT
23
23
  Content-Length:
24
24
  - '90'
25
25
  body:
26
26
  encoding: UTF-8
27
27
  string: |
28
- {"Id":"b55cce347dbd82a4f2d0afcbe7ca0990e986d31b07a62c47c4477c2a3f35db56","Warnings":null}
28
+ {"Id":"32ada448dc8554a5b372f6c1be44be03ea45e05e93c1c0806e777eda17301832","Warnings":null}
29
29
  http_version:
30
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
30
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
31
31
  - request:
32
32
  method: get
33
- uri: "<DOCKER_HOST>/v1.16/containers/b55cce347dbd82a4f2d0afcbe7ca0990e986d31b07a62c47c4477c2a3f35db56/json"
33
+ uri: "<DOCKER_HOST>/v1.16/containers/32ada448dc8554a5b372f6c1be44be03ea45e05e93c1c0806e777eda17301832/json"
34
34
  body:
35
35
  encoding: US-ASCII
36
36
  string: ''
@@ -47,18 +47,18 @@ http_interactions:
47
47
  Content-Type:
48
48
  - application/json
49
49
  Date:
50
- - Thu, 12 Mar 2015 21:38:03 GMT
50
+ - Mon, 06 Apr 2015 21:59:32 GMT
51
51
  Content-Length:
52
- - '1744'
52
+ - '1740'
53
53
  body:
54
54
  encoding: UTF-8
55
55
  string: |
56
- {"AppArmorProfile":"","Args":[],"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":"b55cce347dbd","Image":"hawknewton/true","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-03-12T21:38:03.195569823Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"b55cce347dbd82a4f2d0afcbe7ca0990e986d31b07a62c47c4477c2a3f35db56","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","MountLabel":"","Name":"/admiring_engelbart","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/true","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":{},"VolumesRW":{}}
56
+ {"AppArmorProfile":"","Args":[],"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":"32ada448dc85","Image":"hawknewton/true","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-06T21:59:32.295073872Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"32ada448dc8554a5b372f6c1be44be03ea45e05e93c1c0806e777eda17301832","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","MountLabel":"","Name":"/dreamy_meitner","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/true","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":{},"VolumesRW":{}}
57
57
  http_version:
58
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
58
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
59
59
  - request:
60
60
  method: get
61
- uri: "<DOCKER_HOST>/v1.16/containers/b55cce347dbd82a4f2d0afcbe7ca0990e986d31b07a62c47c4477c2a3f35db56/json"
61
+ uri: "<DOCKER_HOST>/v1.16/containers/32ada448dc8554a5b372f6c1be44be03ea45e05e93c1c0806e777eda17301832/json"
62
62
  body:
63
63
  encoding: US-ASCII
64
64
  string: ''
@@ -75,18 +75,18 @@ http_interactions:
75
75
  Content-Type:
76
76
  - application/json
77
77
  Date:
78
- - Thu, 12 Mar 2015 21:38:03 GMT
78
+ - Mon, 06 Apr 2015 21:59:32 GMT
79
79
  Content-Length:
80
- - '1744'
80
+ - '1740'
81
81
  body:
82
82
  encoding: UTF-8
83
83
  string: |
84
- {"AppArmorProfile":"","Args":[],"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":"b55cce347dbd","Image":"hawknewton/true","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-03-12T21:38:03.195569823Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"b55cce347dbd82a4f2d0afcbe7ca0990e986d31b07a62c47c4477c2a3f35db56","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","MountLabel":"","Name":"/admiring_engelbart","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/true","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":{},"VolumesRW":{}}
84
+ {"AppArmorProfile":"","Args":[],"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":"32ada448dc85","Image":"hawknewton/true","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-06T21:59:32.295073872Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"32ada448dc8554a5b372f6c1be44be03ea45e05e93c1c0806e777eda17301832","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","MountLabel":"","Name":"/dreamy_meitner","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/true","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":{},"VolumesRW":{}}
85
85
  http_version:
86
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
86
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
87
87
  - request:
88
88
  method: delete
89
- uri: "<DOCKER_HOST>/v1.16/containers/b55cce347dbd82a4f2d0afcbe7ca0990e986d31b07a62c47c4477c2a3f35db56"
89
+ uri: "<DOCKER_HOST>/v1.16/containers/32ada448dc8554a5b372f6c1be44be03ea45e05e93c1c0806e777eda17301832"
90
90
  body:
91
91
  encoding: US-ASCII
92
92
  string: ''
@@ -101,15 +101,15 @@ http_interactions:
101
101
  message:
102
102
  headers:
103
103
  Date:
104
- - Thu, 12 Mar 2015 21:38:03 GMT
104
+ - Mon, 06 Apr 2015 21:59:32 GMT
105
105
  body:
106
106
  encoding: UTF-8
107
107
  string: ''
108
108
  http_version:
109
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
109
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
110
110
  - request:
111
111
  method: get
112
- uri: "<DOCKER_HOST>/v1.16/containers/b55cce347dbd82a4f2d0afcbe7ca0990e986d31b07a62c47c4477c2a3f35db56/json"
112
+ uri: "<DOCKER_HOST>/v1.16/containers/32ada448dc8554a5b372f6c1be44be03ea45e05e93c1c0806e777eda17301832/json"
113
113
  body:
114
114
  encoding: US-ASCII
115
115
  string: ''
@@ -126,18 +126,18 @@ http_interactions:
126
126
  Content-Type:
127
127
  - text/plain; charset=utf-8
128
128
  Date:
129
- - Thu, 12 Mar 2015 21:38:03 GMT
129
+ - Mon, 06 Apr 2015 21:59:32 GMT
130
130
  Content-Length:
131
131
  - '84'
132
132
  body:
133
133
  encoding: UTF-8
134
134
  string: |
135
- No such container: b55cce347dbd82a4f2d0afcbe7ca0990e986d31b07a62c47c4477c2a3f35db56
135
+ No such container: 32ada448dc8554a5b372f6c1be44be03ea45e05e93c1c0806e777eda17301832
136
136
  http_version:
137
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
137
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
138
138
  - request:
139
139
  method: get
140
- uri: "<DOCKER_HOST>/v1.16/containers/b55cce347dbd82a4f2d0afcbe7ca0990e986d31b07a62c47c4477c2a3f35db56/json"
140
+ uri: "<DOCKER_HOST>/v1.16/containers/32ada448dc8554a5b372f6c1be44be03ea45e05e93c1c0806e777eda17301832/json"
141
141
  body:
142
142
  encoding: US-ASCII
143
143
  string: ''
@@ -154,18 +154,18 @@ http_interactions:
154
154
  Content-Type:
155
155
  - text/plain; charset=utf-8
156
156
  Date:
157
- - Thu, 12 Mar 2015 21:38:03 GMT
157
+ - Mon, 06 Apr 2015 21:59:32 GMT
158
158
  Content-Length:
159
159
  - '84'
160
160
  body:
161
161
  encoding: UTF-8
162
162
  string: |
163
- No such container: b55cce347dbd82a4f2d0afcbe7ca0990e986d31b07a62c47c4477c2a3f35db56
163
+ No such container: 32ada448dc8554a5b372f6c1be44be03ea45e05e93c1c0806e777eda17301832
164
164
  http_version:
165
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
165
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
166
166
  - request:
167
167
  method: get
168
- uri: "<DOCKER_HOST>/v1.16/containers/b55cce347dbd82a4f2d0afcbe7ca0990e986d31b07a62c47c4477c2a3f35db56/json"
168
+ uri: "<DOCKER_HOST>/v1.16/containers/32ada448dc8554a5b372f6c1be44be03ea45e05e93c1c0806e777eda17301832/json"
169
169
  body:
170
170
  encoding: US-ASCII
171
171
  string: ''
@@ -182,18 +182,18 @@ http_interactions:
182
182
  Content-Type:
183
183
  - text/plain; charset=utf-8
184
184
  Date:
185
- - Thu, 12 Mar 2015 21:38:03 GMT
185
+ - Mon, 06 Apr 2015 21:59:32 GMT
186
186
  Content-Length:
187
187
  - '84'
188
188
  body:
189
189
  encoding: UTF-8
190
190
  string: |
191
- No such container: b55cce347dbd82a4f2d0afcbe7ca0990e986d31b07a62c47c4477c2a3f35db56
191
+ No such container: 32ada448dc8554a5b372f6c1be44be03ea45e05e93c1c0806e777eda17301832
192
192
  http_version:
193
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
193
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
194
194
  - request:
195
195
  method: get
196
- uri: "<DOCKER_HOST>/v1.16/containers/b55cce347dbd82a4f2d0afcbe7ca0990e986d31b07a62c47c4477c2a3f35db56/json"
196
+ uri: "<DOCKER_HOST>/v1.16/containers/32ada448dc8554a5b372f6c1be44be03ea45e05e93c1c0806e777eda17301832/json"
197
197
  body:
198
198
  encoding: US-ASCII
199
199
  string: ''
@@ -210,13 +210,13 @@ http_interactions:
210
210
  Content-Type:
211
211
  - text/plain; charset=utf-8
212
212
  Date:
213
- - Thu, 12 Mar 2015 21:38:03 GMT
213
+ - Mon, 06 Apr 2015 21:59:32 GMT
214
214
  Content-Length:
215
215
  - '84'
216
216
  body:
217
217
  encoding: UTF-8
218
218
  string: |
219
- No such container: b55cce347dbd82a4f2d0afcbe7ca0990e986d31b07a62c47c4477c2a3f35db56
219
+ No such container: 32ada448dc8554a5b372f6c1be44be03ea45e05e93c1c0806e777eda17301832
220
220
  http_version:
221
- recorded_at: Thu, 12 Mar 2015 21:38:05 GMT
221
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
222
222
  recorded_with: VCR 2.9.3
@@ -19,18 +19,18 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Thu, 12 Mar 2015 21:38:03 GMT
22
+ - Mon, 06 Apr 2015 21:59:33 GMT
23
23
  Content-Length:
24
24
  - '90'
25
25
  body:
26
26
  encoding: UTF-8
27
27
  string: |
28
- {"Id":"d6e61245f80d91ff8585eb54941760c84be530213ed529ba352738ccfdae9de4","Warnings":null}
28
+ {"Id":"b49a93251576ac613d952484bc2dae88489bdaf6bfa5e63719fe19ae2152460d","Warnings":null}
29
29
  http_version:
30
- recorded_at: Thu, 12 Mar 2015 21:38:06 GMT
30
+ recorded_at: Mon, 06 Apr 2015 21:59:31 GMT
31
31
  - request:
32
32
  method: post
33
- uri: "<DOCKER_HOST>/v1.16/containers/d6e61245f80d91ff8585eb54941760c84be530213ed529ba352738ccfdae9de4/start"
33
+ uri: "<DOCKER_HOST>/v1.16/containers/b49a93251576ac613d952484bc2dae88489bdaf6bfa5e63719fe19ae2152460d/start"
34
34
  body:
35
35
  encoding: UTF-8
36
36
  string: "{}"
@@ -45,15 +45,15 @@ http_interactions:
45
45
  message:
46
46
  headers:
47
47
  Date:
48
- - Thu, 12 Mar 2015 21:38:04 GMT
48
+ - Mon, 06 Apr 2015 21:59:33 GMT
49
49
  body:
50
50
  encoding: UTF-8
51
51
  string: ''
52
52
  http_version:
53
- recorded_at: Thu, 12 Mar 2015 21:38:06 GMT
53
+ recorded_at: Mon, 06 Apr 2015 21:59:32 GMT
54
54
  - request:
55
55
  method: get
56
- uri: "<DOCKER_HOST>/v1.16/containers/d6e61245f80d91ff8585eb54941760c84be530213ed529ba352738ccfdae9de4/json"
56
+ uri: "<DOCKER_HOST>/v1.16/containers/b49a93251576ac613d952484bc2dae88489bdaf6bfa5e63719fe19ae2152460d/json"
57
57
  body:
58
58
  encoding: US-ASCII
59
59
  string: ''
@@ -70,11 +70,11 @@ http_interactions:
70
70
  Content-Type:
71
71
  - application/json
72
72
  Date:
73
- - Thu, 12 Mar 2015 21:38:04 GMT
73
+ - Mon, 06 Apr 2015 21:59:33 GMT
74
74
  body:
75
75
  encoding: UTF-8
76
76
  string: |
77
- {"AppArmorProfile":"","Args":[],"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":"d6e61245f80d","Image":"hawknewton/true","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-03-12T21:38:03.785138793Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/d6e61245f80d91ff8585eb54941760c84be530213ed529ba352738ccfdae9de4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/d6e61245f80d91ff8585eb54941760c84be530213ed529ba352738ccfdae9de4/hosts","Id":"d6e61245f80d91ff8585eb54941760c84be530213ed529ba352738ccfdae9de4","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","MountLabel":"","Name":"/sick_mcclintock","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.2.98","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:262","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:02:62","PortMapping":null,"Ports":{}},"Path":"/true","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/d6e61245f80d91ff8585eb54941760c84be530213ed529ba352738ccfdae9de4/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":11767,"Restarting":false,"Running":true,"StartedAt":"2015-03-12T21:38:04.150279119Z"},"Volumes":{},"VolumesRW":{}}
77
+ {"AppArmorProfile":"","Args":[],"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":"b49a93251576","Image":"hawknewton/true","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-06T21:59:32.938260524Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b49a93251576ac613d952484bc2dae88489bdaf6bfa5e63719fe19ae2152460d/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b49a93251576ac613d952484bc2dae88489bdaf6bfa5e63719fe19ae2152460d/hosts","Id":"b49a93251576ac613d952484bc2dae88489bdaf6bfa5e63719fe19ae2152460d","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","MountLabel":"","Name":"/ecstatic_cori","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.222","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:1de","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:de","PortMapping":null,"Ports":{}},"Path":"/true","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/b49a93251576ac613d952484bc2dae88489bdaf6bfa5e63719fe19ae2152460d/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":7625,"Restarting":false,"Running":true,"StartedAt":"2015-04-06T21:59:33.385078858Z"},"Volumes":{},"VolumesRW":{}}
78
78
  http_version:
79
- recorded_at: Thu, 12 Mar 2015 21:38:06 GMT
79
+ recorded_at: Mon, 06 Apr 2015 21:59:32 GMT
80
80
  recorded_with: VCR 2.9.3
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - text/plain; charset=utf-8
21
21
  Date:
22
- - Thu, 12 Mar 2015 21:38:04 GMT
22
+ - Mon, 06 Apr 2015 21:59:33 GMT
23
23
  Content-Length:
24
24
  - '30'
25
25
  body:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  string: |
28
28
  No such image: does_not_exist
29
29
  http_version:
30
- recorded_at: Thu, 12 Mar 2015 21:38:06 GMT
30
+ recorded_at: Mon, 06 Apr 2015 21:59:32 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/images/does_not_exist/json"
@@ -47,7 +47,7 @@ http_interactions:
47
47
  Content-Type:
48
48
  - text/plain; charset=utf-8
49
49
  Date:
50
- - Thu, 12 Mar 2015 21:38:04 GMT
50
+ - Mon, 06 Apr 2015 21:59:33 GMT
51
51
  Content-Length:
52
52
  - '30'
53
53
  body:
@@ -55,7 +55,7 @@ http_interactions:
55
55
  string: |
56
56
  No such image: does_not_exist
57
57
  http_version:
58
- recorded_at: Thu, 12 Mar 2015 21:38:06 GMT
58
+ recorded_at: Mon, 06 Apr 2015 21:59:32 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: "<DOCKER_HOST>/v1.16/images/does_not_exist/json"
@@ -75,7 +75,7 @@ http_interactions:
75
75
  Content-Type:
76
76
  - text/plain; charset=utf-8
77
77
  Date:
78
- - Thu, 12 Mar 2015 21:38:04 GMT
78
+ - Mon, 06 Apr 2015 21:59:33 GMT
79
79
  Content-Length:
80
80
  - '30'
81
81
  body:
@@ -83,7 +83,7 @@ http_interactions:
83
83
  string: |
84
84
  No such image: does_not_exist
85
85
  http_version:
86
- recorded_at: Thu, 12 Mar 2015 21:38:06 GMT
86
+ recorded_at: Mon, 06 Apr 2015 21:59:32 GMT
87
87
  - request:
88
88
  method: get
89
89
  uri: "<DOCKER_HOST>/v1.16/images/does_not_exist/json"
@@ -103,7 +103,7 @@ http_interactions:
103
103
  Content-Type:
104
104
  - text/plain; charset=utf-8
105
105
  Date:
106
- - Thu, 12 Mar 2015 21:38:04 GMT
106
+ - Mon, 06 Apr 2015 21:59:33 GMT
107
107
  Content-Length:
108
108
  - '30'
109
109
  body:
@@ -111,5 +111,5 @@ http_interactions:
111
111
  string: |
112
112
  No such image: does_not_exist
113
113
  http_version:
114
- recorded_at: Thu, 12 Mar 2015 21:38:06 GMT
114
+ recorded_at: Mon, 06 Apr 2015 21:59:32 GMT
115
115
  recorded_with: VCR 2.9.3
@@ -21,15 +21,15 @@ http_interactions:
21
21
  Content-Type:
22
22
  - application/json
23
23
  Date:
24
- - Thu, 12 Mar 2015 21:38:04 GMT
24
+ - Mon, 06 Apr 2015 21:59:33 GMT
25
25
  body:
26
26
  encoding: UTF-8
27
- string: "{\"status\":\"196eb71a45382770c0e1808903ddbe9a178ef554fa837011bfe619350e4fd3da\"}\r\n"
27
+ string: "{\"status\":\"c87526584da794b88c2bdde032488b966e2c259d7b633293a0274e1c14aa1936\"}\r\n"
28
28
  http_version:
29
- recorded_at: Thu, 12 Mar 2015 21:38:06 GMT
29
+ recorded_at: Mon, 06 Apr 2015 21:59:32 GMT
30
30
  - request:
31
31
  method: get
32
- uri: "<DOCKER_HOST>/v1.16/images/196eb71a45382770c0e1808903ddbe9a178ef554fa837011bfe619350e4fd3da/json"
32
+ uri: "<DOCKER_HOST>/v1.16/images/c87526584da794b88c2bdde032488b966e2c259d7b633293a0274e1c14aa1936/json"
33
33
  body:
34
34
  encoding: US-ASCII
35
35
  string: ''
@@ -46,18 +46,18 @@ http_interactions:
46
46
  Content-Type:
47
47
  - application/json
48
48
  Date:
49
- - Thu, 12 Mar 2015 21:38:04 GMT
49
+ - Mon, 06 Apr 2015 21:59:33 GMT
50
50
  Content-Length:
51
51
  - '679'
52
52
  body:
53
53
  encoding: UTF-8
54
54
  string: |
55
- {"Architecture":"amd64","Author":"","Comment":"Imported from -","Config":null,"Container":"","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":null,"ExposedPorts":null,"Hostname":"","Image":"","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-03-12T21:38:04.224883573Z","DockerVersion":"1.5.0","Id":"196eb71a45382770c0e1808903ddbe9a178ef554fa837011bfe619350e4fd3da","Os":"linux","Parent":"","Size":0,"VirtualSize":0}
55
+ {"Architecture":"amd64","Author":"","Comment":"Imported from -","Config":null,"Container":"","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":null,"ExposedPorts":null,"Hostname":"","Image":"","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-06T21:59:33.473333135Z","DockerVersion":"1.5.0","Id":"c87526584da794b88c2bdde032488b966e2c259d7b633293a0274e1c14aa1936","Os":"linux","Parent":"","Size":0,"VirtualSize":0}
56
56
  http_version:
57
- recorded_at: Thu, 12 Mar 2015 21:38:06 GMT
57
+ recorded_at: Mon, 06 Apr 2015 21:59:32 GMT
58
58
  - request:
59
59
  method: delete
60
- uri: "<DOCKER_HOST>/v1.16/images/196eb71a45382770c0e1808903ddbe9a178ef554fa837011bfe619350e4fd3da?force=true"
60
+ uri: "<DOCKER_HOST>/v1.16/images/c87526584da794b88c2bdde032488b966e2c259d7b633293a0274e1c14aa1936?force=true"
61
61
  body:
62
62
  encoding: US-ASCII
63
63
  string: ''
@@ -74,19 +74,19 @@ http_interactions:
74
74
  Content-Type:
75
75
  - application/json
76
76
  Date:
77
- - Thu, 12 Mar 2015 21:38:04 GMT
77
+ - Mon, 06 Apr 2015 21:59:33 GMT
78
78
  Content-Length:
79
79
  - '81'
80
80
  body:
81
81
  encoding: UTF-8
82
82
  string: |-
83
- [{"Deleted":"196eb71a45382770c0e1808903ddbe9a178ef554fa837011bfe619350e4fd3da"}
83
+ [{"Deleted":"c87526584da794b88c2bdde032488b966e2c259d7b633293a0274e1c14aa1936"}
84
84
  ]
85
85
  http_version:
86
- recorded_at: Thu, 12 Mar 2015 21:38:06 GMT
86
+ recorded_at: Mon, 06 Apr 2015 21:59:32 GMT
87
87
  - request:
88
88
  method: get
89
- uri: "<DOCKER_HOST>/v1.16/images/196eb71a45382770c0e1808903ddbe9a178ef554fa837011bfe619350e4fd3da/json"
89
+ uri: "<DOCKER_HOST>/v1.16/images/c87526584da794b88c2bdde032488b966e2c259d7b633293a0274e1c14aa1936/json"
90
90
  body:
91
91
  encoding: US-ASCII
92
92
  string: ''
@@ -103,18 +103,18 @@ http_interactions:
103
103
  Content-Type:
104
104
  - text/plain; charset=utf-8
105
105
  Date:
106
- - Thu, 12 Mar 2015 21:38:04 GMT
106
+ - Mon, 06 Apr 2015 21:59:33 GMT
107
107
  Content-Length:
108
108
  - '80'
109
109
  body:
110
110
  encoding: UTF-8
111
111
  string: |
112
- No such image: 196eb71a45382770c0e1808903ddbe9a178ef554fa837011bfe619350e4fd3da
112
+ No such image: c87526584da794b88c2bdde032488b966e2c259d7b633293a0274e1c14aa1936
113
113
  http_version:
114
- recorded_at: Thu, 12 Mar 2015 21:38:06 GMT
114
+ recorded_at: Mon, 06 Apr 2015 21:59:32 GMT
115
115
  - request:
116
116
  method: get
117
- uri: "<DOCKER_HOST>/v1.16/images/196eb71a45382770c0e1808903ddbe9a178ef554fa837011bfe619350e4fd3da/json"
117
+ uri: "<DOCKER_HOST>/v1.16/images/c87526584da794b88c2bdde032488b966e2c259d7b633293a0274e1c14aa1936/json"
118
118
  body:
119
119
  encoding: US-ASCII
120
120
  string: ''
@@ -131,18 +131,18 @@ http_interactions:
131
131
  Content-Type:
132
132
  - text/plain; charset=utf-8
133
133
  Date:
134
- - Thu, 12 Mar 2015 21:38:04 GMT
134
+ - Mon, 06 Apr 2015 21:59:33 GMT
135
135
  Content-Length:
136
136
  - '80'
137
137
  body:
138
138
  encoding: UTF-8
139
139
  string: |
140
- No such image: 196eb71a45382770c0e1808903ddbe9a178ef554fa837011bfe619350e4fd3da
140
+ No such image: c87526584da794b88c2bdde032488b966e2c259d7b633293a0274e1c14aa1936
141
141
  http_version:
142
- recorded_at: Thu, 12 Mar 2015 21:38:06 GMT
142
+ recorded_at: Mon, 06 Apr 2015 21:59:32 GMT
143
143
  - request:
144
144
  method: get
145
- uri: "<DOCKER_HOST>/v1.16/images/196eb71a45382770c0e1808903ddbe9a178ef554fa837011bfe619350e4fd3da/json"
145
+ uri: "<DOCKER_HOST>/v1.16/images/c87526584da794b88c2bdde032488b966e2c259d7b633293a0274e1c14aa1936/json"
146
146
  body:
147
147
  encoding: US-ASCII
148
148
  string: ''
@@ -159,18 +159,18 @@ http_interactions:
159
159
  Content-Type:
160
160
  - text/plain; charset=utf-8
161
161
  Date:
162
- - Thu, 12 Mar 2015 21:38:04 GMT
162
+ - Mon, 06 Apr 2015 21:59:33 GMT
163
163
  Content-Length:
164
164
  - '80'
165
165
  body:
166
166
  encoding: UTF-8
167
167
  string: |
168
- No such image: 196eb71a45382770c0e1808903ddbe9a178ef554fa837011bfe619350e4fd3da
168
+ No such image: c87526584da794b88c2bdde032488b966e2c259d7b633293a0274e1c14aa1936
169
169
  http_version:
170
- recorded_at: Thu, 12 Mar 2015 21:38:06 GMT
170
+ recorded_at: Mon, 06 Apr 2015 21:59:32 GMT
171
171
  - request:
172
172
  method: get
173
- uri: "<DOCKER_HOST>/v1.16/images/196eb71a45382770c0e1808903ddbe9a178ef554fa837011bfe619350e4fd3da/json"
173
+ uri: "<DOCKER_HOST>/v1.16/images/c87526584da794b88c2bdde032488b966e2c259d7b633293a0274e1c14aa1936/json"
174
174
  body:
175
175
  encoding: US-ASCII
176
176
  string: ''
@@ -187,13 +187,13 @@ http_interactions:
187
187
  Content-Type:
188
188
  - text/plain; charset=utf-8
189
189
  Date:
190
- - Thu, 12 Mar 2015 21:38:04 GMT
190
+ - Mon, 06 Apr 2015 21:59:33 GMT
191
191
  Content-Length:
192
192
  - '80'
193
193
  body:
194
194
  encoding: UTF-8
195
195
  string: |
196
- No such image: 196eb71a45382770c0e1808903ddbe9a178ef554fa837011bfe619350e4fd3da
196
+ No such image: c87526584da794b88c2bdde032488b966e2c259d7b633293a0274e1c14aa1936
197
197
  http_version:
198
- recorded_at: Thu, 12 Mar 2015 21:38:06 GMT
198
+ recorded_at: Mon, 06 Apr 2015 21:59:32 GMT
199
199
  recorded_with: VCR 2.9.3