bigrig 0.4.2 → 0.5.0

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 (101) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/Gemfile.lock +24 -26
  4. data/bigrig.gemspec +2 -2
  5. data/lib/bigrig/models/container.rb +2 -2
  6. data/lib/bigrig/runner.rb +2 -10
  7. data/lib/bigrig/version.rb +1 -1
  8. data/lib/bigrig/waiter.rb +20 -0
  9. data/lib/bigrig.rb +1 -0
  10. data/spec/bigrig/actions/run_action_spec.rb +8 -0
  11. data/spec/bigrig/docker_adapter_spec.rb +1 -1
  12. data/spec/bigrig/models/container_spec.rb +0 -18
  13. data/spec/bigrig_spec.rb +20 -6
  14. data/spec/data/wait_for/Dockerfile +4 -0
  15. data/spec/data/wait_for/bigrig-wait.sh +5 -0
  16. data/spec/data/wait_for/bigrig.json +8 -0
  17. data/spec/data/wait_for_broken/Dockerfile +4 -0
  18. data/spec/data/wait_for_broken/bigrig-wait.sh +3 -0
  19. data/spec/data/wait_for_broken/bigrig.json +8 -0
  20. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +65 -65
  21. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +71 -71
  22. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +11 -11
  23. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +5 -5
  24. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +20 -20
  25. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +13 -13
  26. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +20 -20
  27. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +19 -19
  28. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +20 -20
  29. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +29 -29
  30. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +23 -23
  31. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +8 -8
  32. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +3 -3
  33. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +13 -13
  34. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +54 -54
  35. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +1059 -553
  36. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +40 -40
  37. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +44 -44
  38. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +13 -13
  39. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +12 -12
  40. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +35 -35
  41. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +35 -35
  42. 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 +35 -35
  43. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +41 -41
  44. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +20 -20
  45. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +13 -15
  46. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +17 -17
  47. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +34 -34
  48. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +43 -43
  49. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +222 -26
  50. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +180 -74
  51. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +181 -75
  52. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +351 -139
  53. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +130 -130
  54. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +140 -140
  55. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +175 -69
  56. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +159 -53
  57. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes/should_pass_volumes_to_the_right_container.yml +180 -74
  58. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +351 -139
  59. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +130 -130
  60. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +268 -77
  61. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +180 -74
  62. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +28 -28
  63. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +266 -158
  64. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +78 -158
  65. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +187 -191
  66. data/spec/vcr/bigrig/dev/spec/data/dev_json/tails_the_logs.yml +38 -118
  67. data/spec/vcr/bigrig/dev/spec/data/scan_json/leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +811 -345
  68. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_dependant_containers_when_the_scanned_file_changes.yml +813 -375
  69. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_the_container_when_the_scanned_file_changes.yml +855 -363
  70. data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +23 -23
  71. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +14 -14
  72. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +14 -14
  73. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +17 -17
  74. data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +12 -12
  75. data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +17 -17
  76. data/spec/vcr/bigrig/run/spec/data/wait_for/bigrig_json/waits_for_wait_for.yml +180 -0
  77. data/spec/vcr/bigrig/run/spec/data/wait_for_broken_json/fails_with_an_error.yml +12 -12
  78. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +28 -28
  79. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +21 -21
  80. data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +28 -28
  81. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +135 -486
  82. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +146 -472
  83. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +402 -192
  84. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +980 -396
  85. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_dependant_containers_when_the_scanned_file_changes.yml +916 -388
  86. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_the_container_when_the_scanned_file_changes.yml +919 -391
  87. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +23 -23
  88. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +159 -53
  89. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +159 -53
  90. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +286 -31
  91. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +159 -53
  92. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +159 -53
  93. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for/bigrig_json_waits_for_wait_for.yml +522 -0
  94. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for_broken_json_fails_with_an_error.yml +175 -80
  95. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +1036 -526
  96. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +1024 -514
  97. metadata +17 -12
  98. data/spec/data/wait_for.json +0 -9
  99. data/spec/data/wait_for_broken.json +0 -9
  100. data/spec/vcr/bigrig/run/spec/data/wait_for_json/waits_for_wait_for.yml +0 -180
  101. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for_json_waits_for_wait_for.yml +0 -412
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.20.0
11
+ - Swipely/Docker-API 1.21.4
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -19,29 +19,29 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Mon, 20 Apr 2015 23:28:38 GMT
22
+ - Fri, 05 Jun 2015 23:26:09 GMT
23
23
  body:
24
24
  encoding: UTF-8
25
- string: "{\"status\":\"Already exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
26
- exists\",\"progressDetail\":{},\"id\":\"f3c84ac3a053\"}{\"status\":\"Already
27
- exists\",\"progressDetail\":{},\"id\":\"a1a958a24818\"}{\"status\":\"Already
28
- exists\",\"progressDetail\":{},\"id\":\"9fec74352904\"}{\"status\":\"Already
29
- exists\",\"progressDetail\":{},\"id\":\"d0955f21bf24\"}{\"status\":\"Already
30
- exists\",\"progressDetail\":{},\"id\":\"6cfde7386ab2\"}{\"status\":\"Already
31
- exists\",\"progressDetail\":{},\"id\":\"9789d95d9fda\"}{\"status\":\"Already
32
- exists\",\"progressDetail\":{},\"id\":\"19443e64f223\"}{\"status\":\"Already
33
- exists\",\"progressDetail\":{},\"id\":\"b329371ab73c\"}{\"status\":\"Already
34
- exists\",\"progressDetail\":{},\"id\":\"f0daee9a4e8f\"}{\"status\":\"Already
35
- exists\",\"progressDetail\":{},\"id\":\"a66e50e56475\"}{\"status\":\"Already
36
- exists\",\"progressDetail\":{},\"id\":\"8ab3d2988df5\"}{\"status\":\"Already
37
- exists\",\"progressDetail\":{},\"id\":\"5f60fa7ea945\"}{\"status\":\"Already
38
- exists\",\"progressDetail\":{},\"id\":\"db22a140c899\"}{\"status\":\"Already
39
- exists\",\"progressDetail\":{},\"id\":\"5b2fff9306bd\"}{\"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:
25
+ string: "{\"status\":\"Pulling from registry\",\"id\":\"latest\"}\r\n{\"status\":\"Already
26
+ exists\",\"progressDetail\":{},\"id\":\"e9e06b06e14c\"}{\"status\":\"Already
27
+ exists\",\"progressDetail\":{},\"id\":\"a82efea989f9\"}{\"status\":\"Already
28
+ exists\",\"progressDetail\":{},\"id\":\"37bea4ee0c81\"}{\"status\":\"Already
29
+ exists\",\"progressDetail\":{},\"id\":\"07f8e8c5e660\"}{\"status\":\"Already
30
+ exists\",\"progressDetail\":{},\"id\":\"1f4ab7282e19\"}{\"status\":\"Already
31
+ exists\",\"progressDetail\":{},\"id\":\"35f93dcfca99\"}{\"status\":\"Already
32
+ exists\",\"progressDetail\":{},\"id\":\"8f1038aaf890\"}{\"status\":\"Already
33
+ exists\",\"progressDetail\":{},\"id\":\"5f9be3f3a0d9\"}{\"status\":\"Already
34
+ exists\",\"progressDetail\":{},\"id\":\"4fec8c4376f8\"}{\"status\":\"Already
35
+ exists\",\"progressDetail\":{},\"id\":\"30783772e63e\"}{\"status\":\"Already
36
+ exists\",\"progressDetail\":{},\"id\":\"27714e0ff742\"}{\"status\":\"Already
37
+ exists\",\"progressDetail\":{},\"id\":\"f0c304f28703\"}{\"status\":\"Already
38
+ exists\",\"progressDetail\":{},\"id\":\"6a103e956eab\"}{\"status\":\"Already
39
+ exists\",\"progressDetail\":{},\"id\":\"d849e35be7b0\"}{\"status\":\"Already
40
+ exists\",\"progressDetail\":{},\"id\":\"d849e35be7b0\"}{\"status\":\"Digest:
41
+ sha256:20db657109d625426987b3c76e7e12fde3e6b66d269a2b38a53cccfdd5d9d7a7\"}\r\n{\"status\":\"Status:
42
42
  Image is up to date for registry:latest\"}\r\n"
43
43
  http_version:
44
- recorded_at: Mon, 20 Apr 2015 23:28:37 GMT
44
+ recorded_at: Fri, 05 Jun 2015 23:26:09 GMT
45
45
  - request:
46
46
  method: post
47
47
  uri: "<DOCKER_HOST>/v1.16/containers/create?name=registry"
@@ -50,7 +50,7 @@ http_interactions:
50
50
  string: '{"Image":"registry","Env":["GUNICORN_OPTS=[--preload]"],"ExposedPorts":{"5000/tcp":{}},"HostConfig":{"PortBindings":{"5000/tcp":[{"HostPort":"5000"}]}}}'
51
51
  headers:
52
52
  User-Agent:
53
- - Swipely/Docker-API 1.20.0
53
+ - Swipely/Docker-API 1.21.4
54
54
  Content-Type:
55
55
  - application/json
56
56
  response:
@@ -61,24 +61,24 @@ http_interactions:
61
61
  Content-Type:
62
62
  - application/json
63
63
  Date:
64
- - Mon, 20 Apr 2015 23:28:38 GMT
64
+ - Fri, 05 Jun 2015 23:26:10 GMT
65
65
  Content-Length:
66
66
  - '90'
67
67
  body:
68
68
  encoding: UTF-8
69
69
  string: |
70
- {"Id":"55c036869a1c5fef614ee14d9d8e109163434eec841ace6bec9ef8987f499de8","Warnings":null}
70
+ {"Id":"de02fbb655b4948f052964c285b2a28704594fe56db952810be843da6802df66","Warnings":null}
71
71
  http_version:
72
- recorded_at: Mon, 20 Apr 2015 23:28:38 GMT
72
+ recorded_at: Fri, 05 Jun 2015 23:26:10 GMT
73
73
  - request:
74
74
  method: post
75
- uri: "<DOCKER_HOST>/v1.16/containers/55c036869a1c5fef614ee14d9d8e109163434eec841ace6bec9ef8987f499de8/start"
75
+ uri: "<DOCKER_HOST>/v1.16/containers/de02fbb655b4948f052964c285b2a28704594fe56db952810be843da6802df66/start"
76
76
  body:
77
77
  encoding: UTF-8
78
78
  string: "{}"
79
79
  headers:
80
80
  User-Agent:
81
- - Swipely/Docker-API 1.20.0
81
+ - Swipely/Docker-API 1.21.4
82
82
  Content-Type:
83
83
  - application/json
84
84
  response:
@@ -87,12 +87,12 @@ http_interactions:
87
87
  message:
88
88
  headers:
89
89
  Date:
90
- - Mon, 20 Apr 2015 23:28:38 GMT
90
+ - Fri, 05 Jun 2015 23:26:10 GMT
91
91
  body:
92
92
  encoding: UTF-8
93
93
  string: ''
94
94
  http_version:
95
- recorded_at: Mon, 20 Apr 2015 23:28:38 GMT
95
+ recorded_at: Fri, 05 Jun 2015 23:26:10 GMT
96
96
  - request:
97
97
  method: post
98
98
  uri: "<DOCKER_HOST>/v1.16/images/create?fromSrc=-"
@@ -101,7 +101,7 @@ http_interactions:
101
101
  string: ''
102
102
  headers:
103
103
  User-Agent:
104
- - Swipely/Docker-API 1.20.0
104
+ - Swipely/Docker-API 1.21.4
105
105
  Content-Type:
106
106
  - application/tar
107
107
  Transfer-Encoding:
@@ -114,21 +114,21 @@ http_interactions:
114
114
  Content-Type:
115
115
  - application/json
116
116
  Date:
117
- - Mon, 20 Apr 2015 23:28:38 GMT
117
+ - Fri, 05 Jun 2015 23:26:10 GMT
118
118
  body:
119
119
  encoding: UTF-8
120
- string: "{\"status\":\"69ccc101ecc53a44485b58c73ea7aa4e657152e65767720bff0a78a6889960a5\"}\r\n"
120
+ string: "{\"status\":\"e1ce6a0bdfe64b255e130679abe986773217db1892094100687b180062011919\"}\r\n"
121
121
  http_version:
122
- recorded_at: Mon, 20 Apr 2015 23:28:38 GMT
122
+ recorded_at: Fri, 05 Jun 2015 23:26:10 GMT
123
123
  - request:
124
124
  method: post
125
- uri: "<DOCKER_HOST>/v1.16/images/69ccc101ecc53a44485b58c73ea7aa4e657152e65767720bff0a78a6889960a5/tag?repo=<ENCODED_REPO_URL>%2Ftest%2Fpush-me&tag=1.2.3"
125
+ uri: "<DOCKER_HOST>/v1.16/images/e1ce6a0bdfe64b255e130679abe986773217db1892094100687b180062011919/tag?repo=<ENCODED_REPO_URL>%2Ftest%2Fpush-me&tag=1.2.3"
126
126
  body:
127
127
  encoding: US-ASCII
128
128
  string: ''
129
129
  headers:
130
130
  User-Agent:
131
- - Swipely/Docker-API 1.20.0
131
+ - Swipely/Docker-API 1.21.4
132
132
  Content-Type:
133
133
  - text/plain
134
134
  response:
@@ -137,7 +137,7 @@ http_interactions:
137
137
  message:
138
138
  headers:
139
139
  Date:
140
- - Mon, 20 Apr 2015 23:28:38 GMT
140
+ - Fri, 05 Jun 2015 23:26:10 GMT
141
141
  Content-Length:
142
142
  - '0'
143
143
  Content-Type:
@@ -146,7 +146,7 @@ http_interactions:
146
146
  encoding: UTF-8
147
147
  string: ''
148
148
  http_version:
149
- recorded_at: Mon, 20 Apr 2015 23:28:38 GMT
149
+ recorded_at: Fri, 05 Jun 2015 23:26:10 GMT
150
150
  - request:
151
151
  method: get
152
152
  uri: "<DOCKER_HOST>/v1.16/images/<REPO_URL>/test/push-me:1.2.3/json"
@@ -155,7 +155,7 @@ http_interactions:
155
155
  string: ''
156
156
  headers:
157
157
  User-Agent:
158
- - Swipely/Docker-API 1.20.0
158
+ - Swipely/Docker-API 1.21.4
159
159
  Content-Type:
160
160
  - text/plain
161
161
  response:
@@ -166,24 +166,24 @@ http_interactions:
166
166
  Content-Type:
167
167
  - application/json
168
168
  Date:
169
- - Mon, 20 Apr 2015 23:28:39 GMT
169
+ - Fri, 05 Jun 2015 23:26:11 GMT
170
170
  Content-Length:
171
- - '679'
171
+ - '1079'
172
172
  body:
173
173
  encoding: UTF-8
174
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-04-20T23:28:38.753041099Z","DockerVersion":"1.5.0","Id":"69ccc101ecc53a44485b58c73ea7aa4e657152e65767720bff0a78a6889960a5","Os":"linux","Parent":"","Size":0,"VirtualSize":0}
175
+ {"Architecture":"amd64","Author":"","Comment":"Imported from -","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":null,"ExposedPorts":null,"Hostname":"","Image":"","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":null,"ExposedPorts":null,"Hostname":"","Image":"","Labels":null,"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:26:10.44286422Z","DockerVersion":"1.6.0","Id":"e1ce6a0bdfe64b255e130679abe986773217db1892094100687b180062011919","Os":"linux","Parent":"","Size":0,"VirtualSize":0}
176
176
  http_version:
177
- recorded_at: Mon, 20 Apr 2015 23:28:39 GMT
177
+ recorded_at: Fri, 05 Jun 2015 23:26:11 GMT
178
178
  - request:
179
179
  method: post
180
- uri: "<DOCKER_HOST>/v1.16/containers/55c036869a1c5fef614ee14d9d8e109163434eec841ace6bec9ef8987f499de8/kill"
180
+ uri: "<DOCKER_HOST>/v1.16/containers/de02fbb655b4948f052964c285b2a28704594fe56db952810be843da6802df66/kill"
181
181
  body:
182
182
  encoding: US-ASCII
183
183
  string: ''
184
184
  headers:
185
185
  User-Agent:
186
- - Swipely/Docker-API 1.20.0
186
+ - Swipely/Docker-API 1.21.4
187
187
  Content-Type:
188
188
  - text/plain
189
189
  response:
@@ -192,21 +192,21 @@ http_interactions:
192
192
  message:
193
193
  headers:
194
194
  Date:
195
- - Mon, 20 Apr 2015 23:28:40 GMT
195
+ - Fri, 05 Jun 2015 23:26:11 GMT
196
196
  body:
197
197
  encoding: UTF-8
198
198
  string: ''
199
199
  http_version:
200
- recorded_at: Mon, 20 Apr 2015 23:28:39 GMT
200
+ recorded_at: Fri, 05 Jun 2015 23:26:11 GMT
201
201
  - request:
202
202
  method: delete
203
- uri: "<DOCKER_HOST>/v1.16/containers/55c036869a1c5fef614ee14d9d8e109163434eec841ace6bec9ef8987f499de8"
203
+ uri: "<DOCKER_HOST>/v1.16/containers/de02fbb655b4948f052964c285b2a28704594fe56db952810be843da6802df66"
204
204
  body:
205
205
  encoding: US-ASCII
206
206
  string: ''
207
207
  headers:
208
208
  User-Agent:
209
- - Swipely/Docker-API 1.20.0
209
+ - Swipely/Docker-API 1.21.4
210
210
  Content-Type:
211
211
  - text/plain
212
212
  response:
@@ -215,21 +215,21 @@ http_interactions:
215
215
  message:
216
216
  headers:
217
217
  Date:
218
- - Mon, 20 Apr 2015 23:28:40 GMT
218
+ - Fri, 05 Jun 2015 23:26:11 GMT
219
219
  body:
220
220
  encoding: UTF-8
221
221
  string: ''
222
222
  http_version:
223
- recorded_at: Mon, 20 Apr 2015 23:28:40 GMT
223
+ recorded_at: Fri, 05 Jun 2015 23:26:11 GMT
224
224
  - request:
225
225
  method: delete
226
- uri: "<DOCKER_HOST>/v1.16/images/69ccc101ecc53a44485b58c73ea7aa4e657152e65767720bff0a78a6889960a5?force=true"
226
+ uri: "<DOCKER_HOST>/v1.16/images/e1ce6a0bdfe64b255e130679abe986773217db1892094100687b180062011919?force=true"
227
227
  body:
228
228
  encoding: US-ASCII
229
229
  string: ''
230
230
  headers:
231
231
  User-Agent:
232
- - Swipely/Docker-API 1.20.0
232
+ - Swipely/Docker-API 1.21.4
233
233
  Content-Type:
234
234
  - text/plain
235
235
  response:
@@ -240,15 +240,15 @@ http_interactions:
240
240
  Content-Type:
241
241
  - application/json
242
242
  Date:
243
- - Mon, 20 Apr 2015 23:28:40 GMT
243
+ - Fri, 05 Jun 2015 23:26:12 GMT
244
244
  Content-Length:
245
245
  - '136'
246
246
  body:
247
247
  encoding: UTF-8
248
248
  string: |-
249
249
  [{"Untagged":"<REPO_URL>/test/push-me:1.2.3"}
250
- ,{"Deleted":"69ccc101ecc53a44485b58c73ea7aa4e657152e65767720bff0a78a6889960a5"}
250
+ ,{"Deleted":"e1ce6a0bdfe64b255e130679abe986773217db1892094100687b180062011919"}
251
251
  ]
252
252
  http_version:
253
- recorded_at: Mon, 20 Apr 2015 23:28:40 GMT
253
+ recorded_at: Fri, 05 Jun 2015 23:26:12 GMT
254
254
  recorded_with: VCR 2.9.3