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,18 +19,18 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Thu, 12 Mar 2015 21:38:41 GMT
22
+ - Mon, 06 Apr 2015 22:00:18 GMT
23
23
  Content-Length:
24
24
  - '90'
25
25
  body:
26
26
  encoding: UTF-8
27
27
  string: |
28
- {"Id":"7e4d3c1e699d2ecae3de9cdc1d54ffddcea59fb40d977e71cd1652f04fe05f52","Warnings":null}
28
+ {"Id":"11c8788b68e0e2abdde1895b5ba1c752b8f5b19ef656670506b8aec6bd5de3ce","Warnings":null}
29
29
  http_version:
30
- recorded_at: Thu, 12 Mar 2015 21:38:43 GMT
30
+ recorded_at: Mon, 06 Apr 2015 22:00:17 GMT
31
31
  - request:
32
32
  method: post
33
- uri: "<DOCKER_HOST>/v1.16/containers/7e4d3c1e699d2ecae3de9cdc1d54ffddcea59fb40d977e71cd1652f04fe05f52/start"
33
+ uri: "<DOCKER_HOST>/v1.16/containers/11c8788b68e0e2abdde1895b5ba1c752b8f5b19ef656670506b8aec6bd5de3ce/start"
34
34
  body:
35
35
  encoding: UTF-8
36
36
  string: "{}"
@@ -45,12 +45,12 @@ http_interactions:
45
45
  message:
46
46
  headers:
47
47
  Date:
48
- - Thu, 12 Mar 2015 21:38:42 GMT
48
+ - Mon, 06 Apr 2015 22:00:18 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:44 GMT
53
+ recorded_at: Mon, 06 Apr 2015 22:00:17 GMT
54
54
  - request:
55
55
  method: get
56
56
  uri: "<DOCKER_HOST>/v1.16/containers/single-test/json"
@@ -70,7 +70,7 @@ http_interactions:
70
70
  Content-Type:
71
71
  - text/plain; charset=utf-8
72
72
  Date:
73
- - Thu, 12 Mar 2015 21:38:43 GMT
73
+ - Mon, 06 Apr 2015 22:00:20 GMT
74
74
  Content-Length:
75
75
  - '31'
76
76
  body:
@@ -78,7 +78,7 @@ http_interactions:
78
78
  string: |
79
79
  No such container: single-test
80
80
  http_version:
81
- recorded_at: Thu, 12 Mar 2015 21:38:45 GMT
81
+ recorded_at: Mon, 06 Apr 2015 22:00:18 GMT
82
82
  - request:
83
83
  method: get
84
84
  uri: "<DOCKER_HOST>/v1.16/containers/single-test/json"
@@ -98,7 +98,7 @@ http_interactions:
98
98
  Content-Type:
99
99
  - text/plain; charset=utf-8
100
100
  Date:
101
- - Thu, 12 Mar 2015 21:38:43 GMT
101
+ - Mon, 06 Apr 2015 22:00:20 GMT
102
102
  Content-Length:
103
103
  - '31'
104
104
  body:
@@ -106,7 +106,7 @@ http_interactions:
106
106
  string: |
107
107
  No such container: single-test
108
108
  http_version:
109
- recorded_at: Thu, 12 Mar 2015 21:38:45 GMT
109
+ recorded_at: Mon, 06 Apr 2015 22:00:18 GMT
110
110
  - request:
111
111
  method: get
112
112
  uri: "<DOCKER_HOST>/v1.16/containers/single-test/json"
@@ -126,7 +126,7 @@ http_interactions:
126
126
  Content-Type:
127
127
  - text/plain; charset=utf-8
128
128
  Date:
129
- - Thu, 12 Mar 2015 21:38:43 GMT
129
+ - Mon, 06 Apr 2015 22:00:20 GMT
130
130
  Content-Length:
131
131
  - '31'
132
132
  body:
@@ -134,7 +134,7 @@ http_interactions:
134
134
  string: |
135
135
  No such container: single-test
136
136
  http_version:
137
- recorded_at: Thu, 12 Mar 2015 21:38:45 GMT
137
+ recorded_at: Mon, 06 Apr 2015 22:00:18 GMT
138
138
  - request:
139
139
  method: get
140
140
  uri: "<DOCKER_HOST>/v1.16/containers/single-test/json"
@@ -154,7 +154,7 @@ http_interactions:
154
154
  Content-Type:
155
155
  - text/plain; charset=utf-8
156
156
  Date:
157
- - Thu, 12 Mar 2015 21:38:43 GMT
157
+ - Mon, 06 Apr 2015 22:00:20 GMT
158
158
  Content-Length:
159
159
  - '31'
160
160
  body:
@@ -162,5 +162,5 @@ http_interactions:
162
162
  string: |
163
163
  No such container: single-test
164
164
  http_version:
165
- recorded_at: Thu, 12 Mar 2015 21:38:45 GMT
165
+ recorded_at: Mon, 06 Apr 2015 22:00:18 GMT
166
166
  recorded_with: VCR 2.9.3
@@ -2,7 +2,231 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://192.168.59.103:4568/
5
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
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: 404
17
+ message:
18
+ headers:
19
+ Content-Type:
20
+ - text/plain; charset=utf-8
21
+ Date:
22
+ - Mon, 06 Apr 2015 21:59:46 GMT
23
+ Content-Length:
24
+ - '28'
25
+ body:
26
+ encoding: UTF-8
27
+ string: |
28
+ No such container: dev-test
29
+ http_version:
30
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
31
+ - request:
32
+ method: get
33
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
34
+ body:
35
+ encoding: US-ASCII
36
+ string: ''
37
+ headers:
38
+ User-Agent:
39
+ - Swipely/Docker-API 1.20.0
40
+ Content-Type:
41
+ - text/plain
42
+ response:
43
+ status:
44
+ code: 404
45
+ message:
46
+ headers:
47
+ Content-Type:
48
+ - text/plain; charset=utf-8
49
+ Date:
50
+ - Mon, 06 Apr 2015 21:59:46 GMT
51
+ Content-Length:
52
+ - '28'
53
+ body:
54
+ encoding: UTF-8
55
+ string: |
56
+ No such container: dev-test
57
+ http_version:
58
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
59
+ - request:
60
+ method: get
61
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
62
+ body:
63
+ encoding: US-ASCII
64
+ string: ''
65
+ headers:
66
+ User-Agent:
67
+ - Swipely/Docker-API 1.20.0
68
+ Content-Type:
69
+ - text/plain
70
+ response:
71
+ status:
72
+ code: 404
73
+ message:
74
+ headers:
75
+ Content-Type:
76
+ - text/plain; charset=utf-8
77
+ Date:
78
+ - Mon, 06 Apr 2015 21:59:46 GMT
79
+ Content-Length:
80
+ - '28'
81
+ body:
82
+ encoding: UTF-8
83
+ string: |
84
+ No such container: dev-test
85
+ http_version:
86
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
87
+ - request:
88
+ method: get
89
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
90
+ body:
91
+ encoding: US-ASCII
92
+ string: ''
93
+ headers:
94
+ User-Agent:
95
+ - Swipely/Docker-API 1.20.0
96
+ Content-Type:
97
+ - text/plain
98
+ response:
99
+ status:
100
+ code: 404
101
+ message:
102
+ headers:
103
+ Content-Type:
104
+ - text/plain; charset=utf-8
105
+ Date:
106
+ - Mon, 06 Apr 2015 21:59:46 GMT
107
+ Content-Length:
108
+ - '28'
109
+ body:
110
+ encoding: UTF-8
111
+ string: |
112
+ No such container: dev-test
113
+ http_version:
114
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
115
+ - request:
116
+ method: get
117
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
118
+ body:
119
+ encoding: US-ASCII
120
+ string: ''
121
+ headers:
122
+ User-Agent:
123
+ - Swipely/Docker-API 1.20.0
124
+ Content-Type:
125
+ - text/plain
126
+ response:
127
+ status:
128
+ code: 404
129
+ message:
130
+ headers:
131
+ Content-Type:
132
+ - text/plain; charset=utf-8
133
+ Date:
134
+ - Mon, 06 Apr 2015 21:59:46 GMT
135
+ Content-Length:
136
+ - '28'
137
+ body:
138
+ encoding: UTF-8
139
+ string: |
140
+ No such container: dev-logs
141
+ http_version:
142
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
143
+ - request:
144
+ method: get
145
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
146
+ body:
147
+ encoding: US-ASCII
148
+ string: ''
149
+ headers:
150
+ User-Agent:
151
+ - Swipely/Docker-API 1.20.0
152
+ Content-Type:
153
+ - text/plain
154
+ response:
155
+ status:
156
+ code: 404
157
+ message:
158
+ headers:
159
+ Content-Type:
160
+ - text/plain; charset=utf-8
161
+ Date:
162
+ - Mon, 06 Apr 2015 21:59:46 GMT
163
+ Content-Length:
164
+ - '28'
165
+ body:
166
+ encoding: UTF-8
167
+ string: |
168
+ No such container: dev-logs
169
+ http_version:
170
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
171
+ - request:
172
+ method: get
173
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
174
+ body:
175
+ encoding: US-ASCII
176
+ string: ''
177
+ headers:
178
+ User-Agent:
179
+ - Swipely/Docker-API 1.20.0
180
+ Content-Type:
181
+ - text/plain
182
+ response:
183
+ status:
184
+ code: 404
185
+ message:
186
+ headers:
187
+ Content-Type:
188
+ - text/plain; charset=utf-8
189
+ Date:
190
+ - Mon, 06 Apr 2015 21:59:46 GMT
191
+ Content-Length:
192
+ - '28'
193
+ body:
194
+ encoding: UTF-8
195
+ string: |
196
+ No such container: dev-logs
197
+ http_version:
198
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
199
+ - request:
200
+ method: get
201
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
202
+ body:
203
+ encoding: US-ASCII
204
+ string: ''
205
+ headers:
206
+ User-Agent:
207
+ - Swipely/Docker-API 1.20.0
208
+ Content-Type:
209
+ - text/plain
210
+ response:
211
+ status:
212
+ code: 404
213
+ message:
214
+ headers:
215
+ Content-Type:
216
+ - text/plain; charset=utf-8
217
+ Date:
218
+ - Mon, 06 Apr 2015 21:59:46 GMT
219
+ Content-Length:
220
+ - '28'
221
+ body:
222
+ encoding: UTF-8
223
+ string: |
224
+ No such container: dev-logs
225
+ http_version:
226
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
227
+ - request:
228
+ method: get
229
+ uri: "<TEST_URL>/"
6
230
  body:
7
231
  encoding: US-ASCII
8
232
  string: ''
@@ -26,12 +250,12 @@ http_interactions:
26
250
  BUNDLE_APP_CONFIG=/usr/local/bundle
27
251
  GEM_HOME=/usr/local/bundle
28
252
  HOME=/root
29
- HOSTNAME=d6a635cf5003
253
+ HOSTNAME=828f606793da
30
254
  PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
31
255
  PROFILE=dev
32
256
  PWD=/
33
257
  RUBY_MAJOR=2.1
34
258
  RUBY_VERSION=2.1.3
35
259
  http_version:
36
- recorded_at: Thu, 12 Mar 2015 21:38:20 GMT
260
+ recorded_at: Mon, 06 Apr 2015 21:59:48 GMT
37
261
  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:15 GMT
22
+ - Mon, 06 Apr 2015 21:59:46 GMT
23
23
  Content-Length:
24
24
  - '28'
25
25
  body:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  string: |
28
28
  No such container: dev-test
29
29
  http_version:
30
- recorded_at: Thu, 12 Mar 2015 21:38:18 GMT
30
+ recorded_at: Mon, 06 Apr 2015 21:59:44 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/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:15 GMT
50
+ - Mon, 06 Apr 2015 21:59:46 GMT
51
51
  Content-Length:
52
52
  - '28'
53
53
  body:
@@ -55,7 +55,7 @@ http_interactions:
55
55
  string: |
56
56
  No such container: dev-test
57
57
  http_version:
58
- recorded_at: Thu, 12 Mar 2015 21:38:18 GMT
58
+ recorded_at: Mon, 06 Apr 2015 21:59:44 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/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:15 GMT
78
+ - Mon, 06 Apr 2015 21:59:46 GMT
79
79
  Content-Length:
80
80
  - '28'
81
81
  body:
@@ -83,7 +83,7 @@ http_interactions:
83
83
  string: |
84
84
  No such container: dev-test
85
85
  http_version:
86
- recorded_at: Thu, 12 Mar 2015 21:38:18 GMT
86
+ recorded_at: Mon, 06 Apr 2015 21:59:44 GMT
87
87
  - request:
88
88
  method: get
89
89
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/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:16 GMT
106
+ - Mon, 06 Apr 2015 21:59:46 GMT
107
107
  Content-Length:
108
108
  - '28'
109
109
  body:
@@ -111,7 +111,7 @@ http_interactions:
111
111
  string: |
112
112
  No such container: dev-test
113
113
  http_version:
114
- recorded_at: Thu, 12 Mar 2015 21:38:18 GMT
114
+ recorded_at: Mon, 06 Apr 2015 21:59:44 GMT
115
115
  - request:
116
116
  method: get
117
117
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/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:16 GMT
134
+ - Mon, 06 Apr 2015 21:59:46 GMT
135
135
  Content-Length:
136
136
  - '28'
137
137
  body:
@@ -139,7 +139,7 @@ http_interactions:
139
139
  string: |
140
140
  No such container: dev-logs
141
141
  http_version:
142
- recorded_at: Thu, 12 Mar 2015 21:38:18 GMT
142
+ recorded_at: Mon, 06 Apr 2015 21:59:44 GMT
143
143
  - request:
144
144
  method: get
145
145
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/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:16 GMT
162
+ - Mon, 06 Apr 2015 21:59:46 GMT
163
163
  Content-Length:
164
164
  - '28'
165
165
  body:
@@ -167,7 +167,7 @@ http_interactions:
167
167
  string: |
168
168
  No such container: dev-logs
169
169
  http_version:
170
- recorded_at: Thu, 12 Mar 2015 21:38:18 GMT
170
+ recorded_at: Mon, 06 Apr 2015 21:59:44 GMT
171
171
  - request:
172
172
  method: get
173
173
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/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:16 GMT
190
+ - Mon, 06 Apr 2015 21:59:46 GMT
191
191
  Content-Length:
192
192
  - '28'
193
193
  body:
@@ -195,7 +195,7 @@ http_interactions:
195
195
  string: |
196
196
  No such container: dev-logs
197
197
  http_version:
198
- recorded_at: Thu, 12 Mar 2015 21:38:18 GMT
198
+ recorded_at: Mon, 06 Apr 2015 21:59:44 GMT
199
199
  - request:
200
200
  method: get
201
201
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/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:16 GMT
218
+ - Mon, 06 Apr 2015 21:59:46 GMT
219
219
  Content-Length:
220
220
  - '28'
221
221
  body:
@@ -223,5 +223,229 @@ http_interactions:
223
223
  string: |
224
224
  No such container: dev-logs
225
225
  http_version:
226
- recorded_at: Thu, 12 Mar 2015 21:38:18 GMT
226
+ recorded_at: Mon, 06 Apr 2015 21:59:44 GMT
227
+ - request:
228
+ method: get
229
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
230
+ body:
231
+ encoding: US-ASCII
232
+ string: ''
233
+ headers:
234
+ User-Agent:
235
+ - Swipely/Docker-API 1.20.0
236
+ Content-Type:
237
+ - text/plain
238
+ response:
239
+ status:
240
+ code: 404
241
+ message:
242
+ headers:
243
+ Content-Type:
244
+ - text/plain; charset=utf-8
245
+ Date:
246
+ - Mon, 06 Apr 2015 21:59:46 GMT
247
+ Content-Length:
248
+ - '28'
249
+ body:
250
+ encoding: UTF-8
251
+ string: |
252
+ No such container: dev-test
253
+ http_version:
254
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
255
+ - request:
256
+ method: get
257
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
258
+ body:
259
+ encoding: US-ASCII
260
+ string: ''
261
+ headers:
262
+ User-Agent:
263
+ - Swipely/Docker-API 1.20.0
264
+ Content-Type:
265
+ - text/plain
266
+ response:
267
+ status:
268
+ code: 404
269
+ message:
270
+ headers:
271
+ Content-Type:
272
+ - text/plain; charset=utf-8
273
+ Date:
274
+ - Mon, 06 Apr 2015 21:59:46 GMT
275
+ Content-Length:
276
+ - '28'
277
+ body:
278
+ encoding: UTF-8
279
+ string: |
280
+ No such container: dev-test
281
+ http_version:
282
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
283
+ - request:
284
+ method: get
285
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
286
+ body:
287
+ encoding: US-ASCII
288
+ string: ''
289
+ headers:
290
+ User-Agent:
291
+ - Swipely/Docker-API 1.20.0
292
+ Content-Type:
293
+ - text/plain
294
+ response:
295
+ status:
296
+ code: 404
297
+ message:
298
+ headers:
299
+ Content-Type:
300
+ - text/plain; charset=utf-8
301
+ Date:
302
+ - Mon, 06 Apr 2015 21:59:46 GMT
303
+ Content-Length:
304
+ - '28'
305
+ body:
306
+ encoding: UTF-8
307
+ string: |
308
+ No such container: dev-test
309
+ http_version:
310
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
311
+ - request:
312
+ method: get
313
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
314
+ body:
315
+ encoding: US-ASCII
316
+ string: ''
317
+ headers:
318
+ User-Agent:
319
+ - Swipely/Docker-API 1.20.0
320
+ Content-Type:
321
+ - text/plain
322
+ response:
323
+ status:
324
+ code: 404
325
+ message:
326
+ headers:
327
+ Content-Type:
328
+ - text/plain; charset=utf-8
329
+ Date:
330
+ - Mon, 06 Apr 2015 21:59:46 GMT
331
+ Content-Length:
332
+ - '28'
333
+ body:
334
+ encoding: UTF-8
335
+ string: |
336
+ No such container: dev-test
337
+ http_version:
338
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
339
+ - request:
340
+ method: get
341
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
342
+ body:
343
+ encoding: US-ASCII
344
+ string: ''
345
+ headers:
346
+ User-Agent:
347
+ - Swipely/Docker-API 1.20.0
348
+ Content-Type:
349
+ - text/plain
350
+ response:
351
+ status:
352
+ code: 404
353
+ message:
354
+ headers:
355
+ Content-Type:
356
+ - text/plain; charset=utf-8
357
+ Date:
358
+ - Mon, 06 Apr 2015 21:59:46 GMT
359
+ Content-Length:
360
+ - '28'
361
+ body:
362
+ encoding: UTF-8
363
+ string: |
364
+ No such container: dev-logs
365
+ http_version:
366
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
367
+ - request:
368
+ method: get
369
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
370
+ body:
371
+ encoding: US-ASCII
372
+ string: ''
373
+ headers:
374
+ User-Agent:
375
+ - Swipely/Docker-API 1.20.0
376
+ Content-Type:
377
+ - text/plain
378
+ response:
379
+ status:
380
+ code: 404
381
+ message:
382
+ headers:
383
+ Content-Type:
384
+ - text/plain; charset=utf-8
385
+ Date:
386
+ - Mon, 06 Apr 2015 21:59:46 GMT
387
+ Content-Length:
388
+ - '28'
389
+ body:
390
+ encoding: UTF-8
391
+ string: |
392
+ No such container: dev-logs
393
+ http_version:
394
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
395
+ - request:
396
+ method: get
397
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
398
+ body:
399
+ encoding: US-ASCII
400
+ string: ''
401
+ headers:
402
+ User-Agent:
403
+ - Swipely/Docker-API 1.20.0
404
+ Content-Type:
405
+ - text/plain
406
+ response:
407
+ status:
408
+ code: 404
409
+ message:
410
+ headers:
411
+ Content-Type:
412
+ - text/plain; charset=utf-8
413
+ Date:
414
+ - Mon, 06 Apr 2015 21:59:46 GMT
415
+ Content-Length:
416
+ - '28'
417
+ body:
418
+ encoding: UTF-8
419
+ string: |
420
+ No such container: dev-logs
421
+ http_version:
422
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
423
+ - request:
424
+ method: get
425
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
426
+ body:
427
+ encoding: US-ASCII
428
+ string: ''
429
+ headers:
430
+ User-Agent:
431
+ - Swipely/Docker-API 1.20.0
432
+ Content-Type:
433
+ - text/plain
434
+ response:
435
+ status:
436
+ code: 404
437
+ message:
438
+ headers:
439
+ Content-Type:
440
+ - text/plain; charset=utf-8
441
+ Date:
442
+ - Mon, 06 Apr 2015 21:59:46 GMT
443
+ Content-Length:
444
+ - '28'
445
+ body:
446
+ encoding: UTF-8
447
+ string: |
448
+ No such container: dev-logs
449
+ http_version:
450
+ recorded_at: Mon, 06 Apr 2015 21:59:45 GMT
227
451
  recorded_with: VCR 2.9.3