bigrig 0.0.0 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (146) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rspec +3 -0
  4. data/.rubocop.yml +20 -0
  5. data/.travis.yml +3 -0
  6. data/CHANGELOG.md +19 -0
  7. data/Gemfile +2 -0
  8. data/Gemfile.lock +84 -0
  9. data/LICENSE +28 -0
  10. data/README.md +191 -0
  11. data/Rakefile +10 -0
  12. data/bigrig.gemspec +29 -0
  13. data/bin/bigrig +113 -0
  14. data/lib/bigrig/actions/destroy_action.rb +21 -0
  15. data/lib/bigrig/actions/dev_action.rb +19 -0
  16. data/lib/bigrig/actions/log_action.rb +45 -0
  17. data/lib/bigrig/actions/run_action.rb +14 -0
  18. data/lib/bigrig/actions/ship_action.rb +51 -0
  19. data/lib/bigrig/actions.rb +5 -0
  20. data/lib/bigrig/dependency_graph.rb +21 -0
  21. data/lib/bigrig/descriptor.rb +43 -0
  22. data/lib/bigrig/docker_adapter.rb +129 -0
  23. data/lib/bigrig/models/application.rb +22 -0
  24. data/lib/bigrig/models/base_model.rb +7 -0
  25. data/lib/bigrig/models/container.rb +40 -0
  26. data/lib/bigrig/models.rb +3 -0
  27. data/lib/bigrig/output_parser.rb +52 -0
  28. data/lib/bigrig/runner.rb +94 -0
  29. data/lib/bigrig/version.rb +3 -0
  30. data/lib/bigrig.rb +8 -0
  31. data/spec/bigrig/actions/destroy_action_spec.rb +55 -0
  32. data/spec/bigrig/actions/dev_action_spec.rb +17 -0
  33. data/spec/bigrig/actions/log_action_spec.rb +33 -0
  34. data/spec/bigrig/actions/run_action_spec.rb +270 -0
  35. data/spec/bigrig/actions/ship_action_spec.rb +82 -0
  36. data/spec/bigrig/dependency_graph_spec.rb +19 -0
  37. data/spec/bigrig/descriptor_spec.rb +56 -0
  38. data/spec/bigrig/docker_adapter_spec.rb +409 -0
  39. data/spec/bigrig/models/application_spec.rb +32 -0
  40. data/spec/bigrig/models/container_spec.rb +115 -0
  41. data/spec/bigrig/output_parser_spec.rb +71 -0
  42. data/spec/bigrig_spec.rb +249 -0
  43. data/spec/data/addscontainer.json +24 -0
  44. data/spec/data/build/Dockerfile +2 -0
  45. data/spec/data/build/test +0 -0
  46. data/spec/data/dev.json +26 -0
  47. data/spec/data/duplicate.json +13 -0
  48. data/spec/data/env.json +12 -0
  49. data/spec/data/hosts_ip.json +12 -0
  50. data/spec/data/hosts_name.json +11 -0
  51. data/spec/data/links.json +13 -0
  52. data/spec/data/log.json +8 -0
  53. data/spec/data/multiple.json +13 -0
  54. data/spec/data/path.json +5 -0
  55. data/spec/data/ports.json +9 -0
  56. data/spec/data/profiles.json +24 -0
  57. data/spec/data/ship.json +5 -0
  58. data/spec/data/single.json +8 -0
  59. data/spec/data/tagandpath.json +24 -0
  60. data/spec/data/tiny-image.tar +0 -0
  61. data/spec/data/volumes.json +13 -0
  62. data/spec/spec_helper.rb +104 -0
  63. data/spec/support/bigrig_vcr +8 -0
  64. data/spec/support/vcr.rb +15 -0
  65. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +392 -0
  66. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +418 -0
  67. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +63 -0
  68. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +35 -0
  69. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +115 -0
  70. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +82 -0
  71. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +172 -0
  72. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +148 -0
  73. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +115 -0
  74. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +200 -0
  75. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +163 -0
  76. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +64 -0
  77. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +30 -0
  78. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +92 -0
  79. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +254 -0
  80. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +482 -0
  81. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +227 -0
  82. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +222 -0
  83. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +80 -0
  84. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +115 -0
  85. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +199 -0
  86. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +204 -0
  87. 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 +204 -0
  88. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +230 -0
  89. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +115 -0
  90. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +82 -0
  91. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +103 -0
  92. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +290 -0
  93. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +163 -0
  94. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +310 -0
  95. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +430 -0
  96. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +430 -0
  97. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +805 -0
  98. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +731 -0
  99. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +805 -0
  100. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +404 -0
  101. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +329 -0
  102. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +805 -0
  103. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +731 -0
  104. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +409 -0
  105. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +432 -0
  106. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +166 -0
  107. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +37 -0
  108. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +227 -0
  109. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +107 -0
  110. data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +163 -0
  111. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +110 -0
  112. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +110 -0
  113. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +103 -0
  114. data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +75 -0
  115. data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +101 -0
  116. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +212 -0
  117. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +128 -0
  118. data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +179 -0
  119. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +1068 -0
  120. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_destroys_containers_on_exit.yml +1070 -0
  121. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +1068 -0
  122. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +1075 -0
  123. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +69 -0
  124. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +306 -0
  125. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +306 -0
  126. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +306 -0
  127. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +306 -0
  128. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +306 -0
  129. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +335 -0
  130. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +285 -0
  131. data/test/dev/shipper.json +24 -0
  132. data/test/logs/bigrig.json +6 -0
  133. data/test/logs/container1/Dockerfile +4 -0
  134. data/test/logs/container1/run.sh +7 -0
  135. data/test/logs/container2/Dockerfile +4 -0
  136. data/test/logs/container2/run.sh +7 -0
  137. data/test/ship/bigrig-1.2.3.json +1 -0
  138. data/test/ship/bigrig.json +5 -0
  139. data/test/ship/registry.json +11 -0
  140. data/test/ship/ship/Dockerfile +4 -0
  141. data/test/ship/ship/run.sh +6 -0
  142. data/test/volumes_from/exports_volumes/Dockerfile +8 -0
  143. data/test/volumes_from/exports_volumes/index.html +8 -0
  144. data/test/volumes_from/exports_volumes/run.sh +7 -0
  145. data/test/volumes_from/shipper.json +14 -0
  146. metadata +278 -8
@@ -0,0 +1,482 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: "<DOCKER_HOST>/v1.16/images/create?fromImage=registry%3Alatest"
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Swipely/Docker-API 1.20.0
12
+ Content-Type:
13
+ - text/plain
14
+ response:
15
+ status:
16
+ code: 200
17
+ message:
18
+ headers:
19
+ Content-Type:
20
+ - application/json
21
+ Date:
22
+ - Thu, 12 Mar 2015 21:37:47 GMT
23
+ body:
24
+ encoding: UTF-8
25
+ string: "{\"status\":\"Already exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
26
+ exists\",\"progressDetail\":{},\"id\":\"f0dde87450ec\"}{\"status\":\"Already
27
+ exists\",\"progressDetail\":{},\"id\":\"76b658ecb564\"}{\"status\":\"Already
28
+ exists\",\"progressDetail\":{},\"id\":\"4faa69f72743\"}{\"status\":\"Already
29
+ exists\",\"progressDetail\":{},\"id\":\"2103b00b3fdf\"}{\"status\":\"Already
30
+ exists\",\"progressDetail\":{},\"id\":\"32943d3e6f56\"}{\"status\":\"Already
31
+ exists\",\"progressDetail\":{},\"id\":\"5cc05b767e63\"}{\"status\":\"Already
32
+ exists\",\"progressDetail\":{},\"id\":\"6d322257f61a\"}{\"status\":\"Already
33
+ exists\",\"progressDetail\":{},\"id\":\"2b5bdbaba7b4\"}{\"status\":\"Already
34
+ exists\",\"progressDetail\":{},\"id\":\"4db501ba5f65\"}{\"status\":\"Already
35
+ exists\",\"progressDetail\":{},\"id\":\"94a7590f0c68\"}{\"status\":\"Already
36
+ exists\",\"progressDetail\":{},\"id\":\"636f9c8d55c8\"}{\"status\":\"Already
37
+ exists\",\"progressDetail\":{},\"id\":\"72d05766572c\"}{\"status\":\"Already
38
+ exists\",\"progressDetail\":{},\"id\":\"6b0583376f62\"}{\"status\":\"Already
39
+ exists\",\"progressDetail\":{},\"id\":\"fc251f2434a1\"}{\"status\":\"The image
40
+ you are pulling has been verified. Important: image verification is a tech
41
+ preview feature and should not be relied on to provide security.\",\"id\":\"registry:latest\"}\r\n{\"status\":\"Status:
42
+ Image is up to date for registry:latest\"}\r\n"
43
+ http_version:
44
+ recorded_at: Thu, 12 Mar 2015 21:37:50 GMT
45
+ - request:
46
+ method: post
47
+ uri: "<DOCKER_HOST>/v1.16/containers/create?name=registry"
48
+ body:
49
+ encoding: UTF-8
50
+ string: '{"Image":"registry","Env":["GUNICORN_OPTS=[--preload]"],"ExposedPorts":{"5000/tcp":{}},"HostConfig":{"PortBindings":{"5000/tcp":[{"HostPort":"5000"}]}}}'
51
+ headers:
52
+ User-Agent:
53
+ - Swipely/Docker-API 1.20.0
54
+ Content-Type:
55
+ - application/json
56
+ response:
57
+ status:
58
+ code: 201
59
+ message:
60
+ headers:
61
+ Content-Type:
62
+ - application/json
63
+ Date:
64
+ - Thu, 12 Mar 2015 21:37:47 GMT
65
+ Content-Length:
66
+ - '90'
67
+ body:
68
+ encoding: UTF-8
69
+ string: |
70
+ {"Id":"6cc161b01f1f45433e2ed0b25564c5bf69b22429c055a4feb9455b7affe4999c","Warnings":null}
71
+ http_version:
72
+ recorded_at: Thu, 12 Mar 2015 21:37:50 GMT
73
+ - request:
74
+ method: post
75
+ uri: "<DOCKER_HOST>/v1.16/containers/6cc161b01f1f45433e2ed0b25564c5bf69b22429c055a4feb9455b7affe4999c/start"
76
+ body:
77
+ encoding: UTF-8
78
+ string: "{}"
79
+ headers:
80
+ User-Agent:
81
+ - Swipely/Docker-API 1.20.0
82
+ Content-Type:
83
+ - application/json
84
+ response:
85
+ status:
86
+ code: 204
87
+ message:
88
+ headers:
89
+ Date:
90
+ - Thu, 12 Mar 2015 21:37:48 GMT
91
+ body:
92
+ encoding: UTF-8
93
+ string: ''
94
+ http_version:
95
+ recorded_at: Thu, 12 Mar 2015 21:37:50 GMT
96
+ - request:
97
+ method: post
98
+ uri: "<DOCKER_HOST>/v1.16/images/create?fromSrc=-"
99
+ body:
100
+ encoding: US-ASCII
101
+ string: ''
102
+ headers:
103
+ User-Agent:
104
+ - Swipely/Docker-API 1.20.0
105
+ Content-Type:
106
+ - application/tar
107
+ Transfer-Encoding:
108
+ - chunked
109
+ response:
110
+ status:
111
+ code: 200
112
+ message:
113
+ headers:
114
+ Content-Type:
115
+ - application/json
116
+ Date:
117
+ - Thu, 12 Mar 2015 21:37:48 GMT
118
+ body:
119
+ encoding: UTF-8
120
+ string: "{\"status\":\"cb5ef18daf10cb8305331e040c8764994ba17bbca8caee2ef8b150e8495d8fcb\"}\r\n"
121
+ http_version:
122
+ recorded_at: Thu, 12 Mar 2015 21:37:50 GMT
123
+ - request:
124
+ method: post
125
+ uri: "<DOCKER_HOST>/v1.16/images/cb5ef18daf10cb8305331e040c8764994ba17bbca8caee2ef8b150e8495d8fcb/tag?repo=192.168.59.103%3A5000%2Ftest%2Fpush-me&tag=1.2.3"
126
+ body:
127
+ encoding: US-ASCII
128
+ string: ''
129
+ headers:
130
+ User-Agent:
131
+ - Swipely/Docker-API 1.20.0
132
+ Content-Type:
133
+ - text/plain
134
+ response:
135
+ status:
136
+ code: 201
137
+ message:
138
+ headers:
139
+ Date:
140
+ - Thu, 12 Mar 2015 21:37:48 GMT
141
+ Content-Length:
142
+ - '0'
143
+ Content-Type:
144
+ - text/plain; charset=utf-8
145
+ body:
146
+ encoding: UTF-8
147
+ string: ''
148
+ http_version:
149
+ recorded_at: Thu, 12 Mar 2015 21:37:50 GMT
150
+ - request:
151
+ method: get
152
+ uri: "<DOCKER_HOST>/v1.16/images/192.168.59.103:5000/test/push-me:1.2.3/json"
153
+ body:
154
+ encoding: US-ASCII
155
+ string: ''
156
+ headers:
157
+ User-Agent:
158
+ - Swipely/Docker-API 1.20.0
159
+ Content-Type:
160
+ - text/plain
161
+ response:
162
+ status:
163
+ code: 200
164
+ message:
165
+ headers:
166
+ Content-Type:
167
+ - application/json
168
+ Date:
169
+ - Thu, 12 Mar 2015 21:37:49 GMT
170
+ Content-Length:
171
+ - '679'
172
+ body:
173
+ encoding: UTF-8
174
+ string: |
175
+ {"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:37:48.345019859Z","DockerVersion":"1.5.0","Id":"cb5ef18daf10cb8305331e040c8764994ba17bbca8caee2ef8b150e8495d8fcb","Os":"linux","Parent":"","Size":0,"VirtualSize":0}
176
+ http_version:
177
+ recorded_at: Thu, 12 Mar 2015 21:37:51 GMT
178
+ - request:
179
+ method: get
180
+ uri: "<DOCKER_HOST>/v1.16/images/json?all=true"
181
+ body:
182
+ encoding: US-ASCII
183
+ string: ''
184
+ headers:
185
+ User-Agent:
186
+ - Swipely/Docker-API 1.20.0
187
+ Content-Type:
188
+ - text/plain
189
+ response:
190
+ status:
191
+ code: 200
192
+ message:
193
+ headers:
194
+ Content-Type:
195
+ - application/json
196
+ Date:
197
+ - Thu, 12 Mar 2015 21:37:49 GMT
198
+ body:
199
+ encoding: UTF-8
200
+ string: |-
201
+ [{"Created":1426196268,"Id":"cb5ef18daf10cb8305331e040c8764994ba17bbca8caee2ef8b150e8495d8fcb","ParentId":"","RepoTags":["192.168.59.103:5000/test/push-me:1.2.3"],"Size":0,"VirtualSize":0}
202
+ ,{"Created":1426196261,"Id":"476bb395d0504e7bfa1e3f114219271d99b074739bdd404d9aa3c86d4c08bdcf","ParentId":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":125}
203
+ ,{"Created":1426196257,"Id":"c5ff9957f6ceadf1d09e30e8f2c6bea78d3cba8c9fb7dc1ebff463af4ebad953","ParentId":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":125}
204
+ ,{"Created":1426196123,"Id":"e6831a9f1fc8ab11899097c9f2efa537f656f581d274ebc37358469eee2d67ad","ParentId":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":125}
205
+ ,{"Created":1426195975,"Id":"1dd4ba2dee61c21fd99c6fb27d2cc08456f1e15c0e494bf6ced6c9b62790419d","ParentId":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":125}
206
+ ,{"Created":1426195972,"Id":"c349d3555ef7ee0e342b6d69acb274858595fd78b6ca18ee9d3e3c3f5b436f4d","ParentId":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":125}
207
+ ,{"Created":1426020402,"Id":"fc251f2434a12eaf8370dee1bc56ab1857978cb769d64e29fea373db699823c6","ParentId":"6b0583376f622f29adaf7c68e610ecde491c67208743d418f0d2f94f8923a6b1","RepoTags":["registry:latest"],"Size":0,"VirtualSize":413649585}
208
+ ,{"Created":1426020401,"Id":"6b0583376f622f29adaf7c68e610ecde491c67208743d418f0d2f94f8923a6b1","ParentId":"72d05766572cc8b748240bb619c11e34fb10d4377b6cc5cdff96d9f3facfa687","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":413649585}
209
+ ,{"Created":1426020400,"Id":"72d05766572cc8b748240bb619c11e34fb10d4377b6cc5cdff96d9f3facfa687","ParentId":"636f9c8d55c8e9c2cff27a3fec4e644372a6ee6f1a9f51379ec949bcfea7e62f","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":413649585}
210
+ ,{"Created":1426020398,"Id":"636f9c8d55c8e9c2cff27a3fec4e644372a6ee6f1a9f51379ec949bcfea7e62f","ParentId":"94a7590f0c68ffa9972cca995ab36ca05da27b78f31f46d05092b04891a59e1a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":413649585}
211
+ ,{"Created":1426020397,"Id":"94a7590f0c68ffa9972cca995ab36ca05da27b78f31f46d05092b04891a59e1a","ParentId":"4db501ba5f650be01afdf5c00e31d03aa280c438ddf4e9db293eeaed63b7858b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":50796,"VirtualSize":413649585}
212
+ ,{"Created":1426020395,"Id":"4db501ba5f650be01afdf5c00e31d03aa280c438ddf4e9db293eeaed63b7858b","ParentId":"2b5bdbaba7b4ab0ec26a88513857ac4e49d4fe1a9c05a1dff5e3b27ad420b29a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":24817816,"VirtualSize":413598789}
213
+ ,{"Created":1426020289,"Id":"2b5bdbaba7b4ab0ec26a88513857ac4e49d4fe1a9c05a1dff5e3b27ad420b29a","ParentId":"6d322257f61a93a99452aa7fefe11f4d4710e7f727f9a49084d0bbe9fa66dca4","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":11550557,"VirtualSize":388780973}
214
+ ,{"Created":1426020284,"Id":"6d322257f61a93a99452aa7fefe11f4d4710e7f727f9a49084d0bbe9fa66dca4","ParentId":"5cc05b767e6371fd134d8fc961a77974b4655462f91f00f92789f55edafa4539","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":377230416}
215
+ ,{"Created":1426020282,"Id":"5cc05b767e6371fd134d8fc961a77974b4655462f91f00f92789f55edafa4539","ParentId":"32943d3e6f56bce8183d95d7d2c3f9fada19d9522c9607fd7690d68204b71606","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2430746,"VirtualSize":377230343}
216
+ ,{"Created":1426011712,"Id":"32943d3e6f56bce8183d95d7d2c3f9fada19d9522c9607fd7690d68204b71606","ParentId":"2103b00b3fdf1d26a86aded36ae73c1c425def0f779a6e69073b3b77377df348","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":186503712,"VirtualSize":374799597}
217
+ ,{"Created":1426008093,"Id":"2103b00b3fdf1d26a86aded36ae73c1c425def0f779a6e69073b3b77377df348","ParentId":"4faa69f72743ce3a18508e840ff84598952fc05bd1de5fd54c6bc0f8ca835884","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":188295885}
218
+ ,{"Created":1426008092,"Id":"4faa69f72743ce3a18508e840ff84598952fc05bd1de5fd54c6bc0f8ca835884","ParentId":"76b658ecb5644a4aca23b35de695803ad2e223da087d4f8015016021bd970169","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1895,"VirtualSize":188295885}
219
+ ,{"Created":1426008090,"Id":"76b658ecb5644a4aca23b35de695803ad2e223da087d4f8015016021bd970169","ParentId":"f0dde87450ec8236a64aebd3e8b499fe2772fca5e837ecbfa97bd8ae380c605e","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":194533,"VirtualSize":188293990}
220
+ ,{"Created":1426008084,"Id":"f0dde87450ec8236a64aebd3e8b499fe2772fca5e837ecbfa97bd8ae380c605e","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":188099457,"VirtualSize":188099457}
221
+ ,{"Created":1423573573,"Id":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","ParentId":"c507982f836db18913f4a5c7c7a174617c40da13cb0797cf4481220b906f59ff","RepoTags":["hawknewton/log-test:0.0.1"],"Size":0,"VirtualSize":117030274}
222
+ ,{"Created":1423573572,"Id":"c507982f836db18913f4a5c7c7a174617c40da13cb0797cf4481220b906f59ff","ParentId":"76ca2fd907879906ba5c936738ccce0b577590040ac8d288f07afb3d34ae8b03","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":113,"VirtualSize":117030274}
223
+ ,{"Created":1422470398,"Id":"76ca2fd907879906ba5c936738ccce0b577590040ac8d288f07afb3d34ae8b03","ParentId":"100a1992ec48bfdaba03509a9d7996ed3106055f01512474eb6371f5ecac8b68","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":117030161}
224
+ ,{"Created":1422470391,"Id":"100a1992ec48bfdaba03509a9d7996ed3106055f01512474eb6371f5ecac8b68","ParentId":"d96760d4a0ed439104425133cd6387dd41ce57a972553dfa83cf0861ee064a9d","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1879,"VirtualSize":117030161}
225
+ ,{"Created":1422470381,"Id":"d96760d4a0ed439104425133cd6387dd41ce57a972553dfa83cf0861ee064a9d","ParentId":"ac5159eeb0a3662f344fb31b458887044cabc8528e5e0b6d916ccee890abe72e","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":214981,"VirtualSize":117028282}
226
+ ,{"Created":1422470368,"Id":"ac5159eeb0a3662f344fb31b458887044cabc8528e5e0b6d916ccee890abe72e","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":116813301,"VirtualSize":116813301}
227
+ ,{"Created":1420897378,"Id":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","ParentId":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","RepoTags":["hawknewton/true:0.0.1","hawknewton/true:latest"],"Size":0,"VirtualSize":125}
228
+ ,{"Created":1420897378,"Id":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":125,"VirtualSize":125}
229
+ ,{"Created":1414094442,"Id":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","ParentId":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","RepoTags":["hawknewton/show-env:0.0.1","hawknewton/show-env:latest"],"Size":0,"VirtualSize":801041825}
230
+ ,{"Created":1414094441,"Id":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","ParentId":"b020883398e688aa4b142bda22696584e3e59f74322db5516780ceb9c36f3e8b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":801041825}
231
+ ,{"Created":1414094441,"Id":"b020883398e688aa4b142bda22696584e3e59f74322db5516780ceb9c36f3e8b","ParentId":"c18ee8e5eefa490253f2b261cb1e8841b7c9306f3d5b735fc1192dbbcb51caf7","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":40159,"VirtualSize":801041825}
232
+ ,{"Created":1413843388,"Id":"c18ee8e5eefa490253f2b261cb1e8841b7c9306f3d5b735fc1192dbbcb51caf7","ParentId":"30c479473225225d0b6da53390cc32f5e7adafde604e69710194dbaaef16df9d","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":801001666}
233
+ ,{"Created":1413843388,"Id":"a490c0bc4c17e72be77abbb8bde7b39f82dd8d6d5175d0033c7cc83c988ddfb8","ParentId":"4e2f12b9e2460b6538505ab5002ab18dd2eaec6b1c78d531b9845b1048ace417","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":3957733,"VirtualSize":801001666}
234
+ ,{"Created":1413843388,"Id":"30c479473225225d0b6da53390cc32f5e7adafde604e69710194dbaaef16df9d","ParentId":"a490c0bc4c17e72be77abbb8bde7b39f82dd8d6d5175d0033c7cc83c988ddfb8","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":801001666}
235
+ ,{"Created":1413843381,"Id":"aa82a409e225dba4257f3e72814d417e05fbd86544904a1ae4c2c00f24ce35fc","ParentId":"fd3901892100907b06fc49223e42df5b3fde62bbe5073bb07c3d3b169d884b28","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":797043933}
236
+ ,{"Created":1413843381,"Id":"fd3901892100907b06fc49223e42df5b3fde62bbe5073bb07c3d3b169d884b28","ParentId":"4164e85056797ab350cc5de90e84f48f257c95c15c0d0ea3d7f08bae82f66379","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":23,"VirtualSize":797043933}
237
+ ,{"Created":1413843381,"Id":"4e2f12b9e2460b6538505ab5002ab18dd2eaec6b1c78d531b9845b1048ace417","ParentId":"aa82a409e225dba4257f3e72814d417e05fbd86544904a1ae4c2c00f24ce35fc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":797043933}
238
+ ,{"Created":1412819608,"Id":"4164e85056797ab350cc5de90e84f48f257c95c15c0d0ea3d7f08bae82f66379","ParentId":"49d1d522cd44ba8f1db1a1ca5129d6ecaa9528afb86f4c3236a370f6d63d2dc4","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":98431386,"VirtualSize":797043910}
239
+ ,{"Created":1412819306,"Id":"4641ba92cd87925f11e4ec979e43e8ea77aa2a3fe7b62fafdd5ff2d61e37e532","ParentId":"eac5dcb909748ce68df211a443145fa36e52c4de57419b3330cb50346b42cc88","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":698612524}
240
+ ,{"Created":1412819306,"Id":"49d1d522cd44ba8f1db1a1ca5129d6ecaa9528afb86f4c3236a370f6d63d2dc4","ParentId":"4641ba92cd87925f11e4ec979e43e8ea77aa2a3fe7b62fafdd5ff2d61e37e532","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":698612524}
241
+ ,{"Created":1412818980,"Id":"eac5dcb909748ce68df211a443145fa36e52c4de57419b3330cb50346b42cc88","ParentId":"7d2b41d8b63481696f0feddc568379f9263ed0be30ed0c944afaefd3ce7946b4","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1442958,"VirtualSize":698612524}
242
+ ,{"Created":1412800918,"Id":"7d2b41d8b63481696f0feddc568379f9263ed0be30ed0c944afaefd3ce7946b4","ParentId":"71e62a8beff35bb692f64fb2e04bf1d6d19f5262500ad05dd95b1a95dcb5599d","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":115429837,"VirtualSize":697169566}
243
+ ,{"Created":1412800824,"Id":"71e62a8beff35bb692f64fb2e04bf1d6d19f5262500ad05dd95b1a95dcb5599d","ParentId":"53f380325ee97bd72fc8c5d9da68bdd0b6ec904e2619e3c22739d026786309d6","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":461720194,"VirtualSize":581739729}
244
+ ,{"Created":1412792900,"Id":"53f380325ee97bd72fc8c5d9da68bdd0b6ec904e2619e3c22739d026786309d6","ParentId":"50215b109eda706ddb643cdfaa92b898e76ddc6a9f08c3ac93f179946471c199","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":120019535}
245
+ ,{"Created":1412792897,"Id":"50215b109eda706ddb643cdfaa92b898e76ddc6a9f08c3ac93f179946471c199","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":120019535,"VirtualSize":120019535}
246
+ ,{"Created":1371157430,"Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","ParentId":"","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
247
+ ]
248
+ http_version:
249
+ recorded_at: Thu, 12 Mar 2015 21:37:51 GMT
250
+ - request:
251
+ method: get
252
+ uri: "<DOCKER_HOST>/v1.16/images/cb5ef18daf10cb8305331e040c8764994ba17bbca8caee2ef8b150e8495d8fcb/json"
253
+ body:
254
+ encoding: US-ASCII
255
+ string: ''
256
+ headers:
257
+ User-Agent:
258
+ - Swipely/Docker-API 1.20.0
259
+ Content-Type:
260
+ - text/plain
261
+ response:
262
+ status:
263
+ code: 200
264
+ message:
265
+ headers:
266
+ Content-Type:
267
+ - application/json
268
+ Date:
269
+ - Thu, 12 Mar 2015 21:37:49 GMT
270
+ Content-Length:
271
+ - '679'
272
+ body:
273
+ encoding: UTF-8
274
+ string: |
275
+ {"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:37:48.345019859Z","DockerVersion":"1.5.0","Id":"cb5ef18daf10cb8305331e040c8764994ba17bbca8caee2ef8b150e8495d8fcb","Os":"linux","Parent":"","Size":0,"VirtualSize":0}
276
+ http_version:
277
+ recorded_at: Thu, 12 Mar 2015 21:37:51 GMT
278
+ - request:
279
+ method: post
280
+ uri: "<DOCKER_HOST>/v1.16/images/192.168.59.103:5000/test/push-me/push?tag=1.2.3"
281
+ body:
282
+ encoding: US-ASCII
283
+ string: ''
284
+ headers:
285
+ User-Agent:
286
+ - Swipely/Docker-API 1.20.0
287
+ Content-Type:
288
+ - text/plain
289
+ X-Registry-Auth:
290
+ - e30=
291
+ response:
292
+ status:
293
+ code: 200
294
+ message:
295
+ headers:
296
+ Content-Type:
297
+ - application/json
298
+ Date:
299
+ - Thu, 12 Mar 2015 21:37:53 GMT
300
+ body:
301
+ encoding: UTF-8
302
+ string: "{\"status\":\"The push refers to a repository [192.168.59.103:5000/test/push-me]
303
+ (len: 1)\"}\r\n{\"status\":\"Sending image list\"}\r\n{\"status\":\"Pushing
304
+ repository 192.168.59.103:5000/test/push-me (1 tags)\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"cb5ef18daf10\"}{\"status\":\"Buffering
305
+ to disk\",\"progressDetail\":{\"current\":1536,\"start\":1426196273},\"progress\":\"1.536
306
+ kB\",\"id\":\"cb5ef18daf10\"}{\"status\":\"Buffering to disk\",\"progressDetail\":{\"start\":1426196273},\"id\":\"cb5ef18daf10\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1536,\"start\":1426196273},\"progress\":\"[================\\u003e
307
+ \ ] 512 B/1.536 kB 1s\",\"id\":\"cb5ef18daf10\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1024,\"total\":1536,\"start\":1426196273},\"progress\":\"[=================================\\u003e
308
+ \ ] 1.024 kB/1.536 kB 0\",\"id\":\"cb5ef18daf10\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1536,\"total\":1536,\"start\":1426196273},\"progress\":\"[==================================================\\u003e]
309
+ 1.536 kB/1.536 kB\",\"id\":\"cb5ef18daf10\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1536,\"total\":1536,\"start\":1426196273},\"progress\":\"[==================================================\\u003e]
310
+ 1.536 kB/1.536 kB\",\"id\":\"cb5ef18daf10\"}{\"status\":\"Image successfully
311
+ pushed\",\"progressDetail\":{},\"id\":\"cb5ef18daf10\"}{\"status\":\"Pushing
312
+ tag for rev [cb5ef18daf10] on {http://192.168.59.103:5000/v1/repositories/test/push-me/tags/1.2.3}\"}\r\n"
313
+ http_version:
314
+ recorded_at: Thu, 12 Mar 2015 21:37:56 GMT
315
+ - request:
316
+ method: get
317
+ uri: "<DOCKER_HOST>/v1.16/images/192.168.59.103:5000/test/push-me:1.2.3/json"
318
+ body:
319
+ encoding: US-ASCII
320
+ string: ''
321
+ headers:
322
+ User-Agent:
323
+ - Swipely/Docker-API 1.20.0
324
+ Content-Type:
325
+ - text/plain
326
+ response:
327
+ status:
328
+ code: 200
329
+ message:
330
+ headers:
331
+ Content-Type:
332
+ - application/json
333
+ Date:
334
+ - Thu, 12 Mar 2015 21:37:53 GMT
335
+ Content-Length:
336
+ - '679'
337
+ body:
338
+ encoding: UTF-8
339
+ string: |
340
+ {"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:37:48.345019859Z","DockerVersion":"1.5.0","Id":"cb5ef18daf10cb8305331e040c8764994ba17bbca8caee2ef8b150e8495d8fcb","Os":"linux","Parent":"","Size":0,"VirtualSize":0}
341
+ http_version:
342
+ recorded_at: Thu, 12 Mar 2015 21:37:56 GMT
343
+ - request:
344
+ method: delete
345
+ uri: "<DOCKER_HOST>/v1.16/images/cb5ef18daf10cb8305331e040c8764994ba17bbca8caee2ef8b150e8495d8fcb?force=true"
346
+ body:
347
+ encoding: US-ASCII
348
+ string: ''
349
+ headers:
350
+ User-Agent:
351
+ - Swipely/Docker-API 1.20.0
352
+ Content-Type:
353
+ - text/plain
354
+ response:
355
+ status:
356
+ code: 200
357
+ message:
358
+ headers:
359
+ Content-Type:
360
+ - application/json
361
+ Date:
362
+ - Thu, 12 Mar 2015 21:37:53 GMT
363
+ Content-Length:
364
+ - '136'
365
+ body:
366
+ encoding: UTF-8
367
+ string: |-
368
+ [{"Untagged":"192.168.59.103:5000/test/push-me:1.2.3"}
369
+ ,{"Deleted":"cb5ef18daf10cb8305331e040c8764994ba17bbca8caee2ef8b150e8495d8fcb"}
370
+ ]
371
+ http_version:
372
+ recorded_at: Thu, 12 Mar 2015 21:37:56 GMT
373
+ - request:
374
+ method: post
375
+ uri: "<DOCKER_HOST>/v1.16/images/create?fromImage=192.168.59.103%3A5000%2Ftest%2Fpush-me%3A1.2.3"
376
+ body:
377
+ encoding: US-ASCII
378
+ string: ''
379
+ headers:
380
+ User-Agent:
381
+ - Swipely/Docker-API 1.20.0
382
+ Content-Type:
383
+ - text/plain
384
+ response:
385
+ status:
386
+ code: 200
387
+ message:
388
+ headers:
389
+ Content-Type:
390
+ - application/json
391
+ Date:
392
+ - Thu, 12 Mar 2015 21:37:57 GMT
393
+ body:
394
+ encoding: UTF-8
395
+ string: "{\"status\":\"Pulling repository 192.168.59.103:5000/test/push-me\"}\r\n{\"status\":\"Pulling
396
+ image (1.2.3) from 192.168.59.103:5000/test/push-me\",\"progressDetail\":{},\"id\":\"cb5ef18daf10\"}{\"status\":\"Pulling
397
+ image (1.2.3) from 192.168.59.103:5000/test/push-me, endpoint: http://192.168.59.103:5000/v1/\",\"progressDetail\":{},\"id\":\"cb5ef18daf10\"}{\"status\":\"Pulling
398
+ dependent layers\",\"progressDetail\":{},\"id\":\"cb5ef18daf10\"}{\"status\":\"Pulling
399
+ metadata\",\"progressDetail\":{},\"id\":\"cb5ef18daf10\"}{\"status\":\"Pulling
400
+ fs layer\",\"progressDetail\":{},\"id\":\"cb5ef18daf10\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":107,\"total\":107,\"start\":1426196277},\"progress\":\"[==================================================\\u003e]
401
+ \ 107 B/107 B\",\"id\":\"cb5ef18daf10\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"cb5ef18daf10\"}{\"status\":\"Download
402
+ complete\",\"progressDetail\":{},\"id\":\"cb5ef18daf10\"}{\"status\":\"Status:
403
+ Downloaded newer image for 192.168.59.103:5000/test/push-me:1.2.3\"}\r\n"
404
+ http_version:
405
+ recorded_at: Thu, 12 Mar 2015 21:38:00 GMT
406
+ - request:
407
+ method: post
408
+ uri: "<DOCKER_HOST>/v1.16/containers/6cc161b01f1f45433e2ed0b25564c5bf69b22429c055a4feb9455b7affe4999c/kill"
409
+ body:
410
+ encoding: US-ASCII
411
+ string: ''
412
+ headers:
413
+ User-Agent:
414
+ - Swipely/Docker-API 1.20.0
415
+ Content-Type:
416
+ - text/plain
417
+ response:
418
+ status:
419
+ code: 204
420
+ message:
421
+ headers:
422
+ Date:
423
+ - Thu, 12 Mar 2015 21:37:58 GMT
424
+ body:
425
+ encoding: UTF-8
426
+ string: ''
427
+ http_version:
428
+ recorded_at: Thu, 12 Mar 2015 21:38:00 GMT
429
+ - request:
430
+ method: delete
431
+ uri: "<DOCKER_HOST>/v1.16/containers/6cc161b01f1f45433e2ed0b25564c5bf69b22429c055a4feb9455b7affe4999c"
432
+ body:
433
+ encoding: US-ASCII
434
+ string: ''
435
+ headers:
436
+ User-Agent:
437
+ - Swipely/Docker-API 1.20.0
438
+ Content-Type:
439
+ - text/plain
440
+ response:
441
+ status:
442
+ code: 204
443
+ message:
444
+ headers:
445
+ Date:
446
+ - Thu, 12 Mar 2015 21:37:58 GMT
447
+ body:
448
+ encoding: UTF-8
449
+ string: ''
450
+ http_version:
451
+ recorded_at: Thu, 12 Mar 2015 21:38:00 GMT
452
+ - request:
453
+ method: delete
454
+ uri: "<DOCKER_HOST>/v1.16/images/cb5ef18daf10cb8305331e040c8764994ba17bbca8caee2ef8b150e8495d8fcb?force=true"
455
+ body:
456
+ encoding: US-ASCII
457
+ string: ''
458
+ headers:
459
+ User-Agent:
460
+ - Swipely/Docker-API 1.20.0
461
+ Content-Type:
462
+ - text/plain
463
+ response:
464
+ status:
465
+ code: 200
466
+ message:
467
+ headers:
468
+ Content-Type:
469
+ - application/json
470
+ Date:
471
+ - Thu, 12 Mar 2015 21:37:58 GMT
472
+ Content-Length:
473
+ - '136'
474
+ body:
475
+ encoding: UTF-8
476
+ string: |-
477
+ [{"Untagged":"192.168.59.103:5000/test/push-me:1.2.3"}
478
+ ,{"Deleted":"cb5ef18daf10cb8305331e040c8764994ba17bbca8caee2ef8b150e8495d8fcb"}
479
+ ]
480
+ http_version:
481
+ recorded_at: Thu, 12 Mar 2015 21:38:00 GMT
482
+ recorded_with: VCR 2.9.3