bigrig 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile.lock +4 -1
  4. data/lib/bigrig/docker_adapter.rb +1 -1
  5. data/lib/bigrig/version.rb +1 -1
  6. data/spec/bigrig/docker_adapter_spec.rb +1 -1
  7. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +46 -46
  8. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +51 -51
  9. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +8 -8
  10. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +4 -4
  11. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +8 -8
  12. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +10 -10
  13. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +12 -12
  14. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +10 -10
  15. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +8 -8
  16. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +24 -24
  17. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +17 -17
  18. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +4 -4
  19. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +2 -2
  20. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +6 -6
  21. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +44 -44
  22. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +697 -252
  23. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +16 -16
  24. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +32 -32
  25. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +10 -10
  26. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +8 -8
  27. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +27 -27
  28. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/sets_the_hostname.yml +24 -24
  29. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +28 -28
  30. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_env_variables/starts_the_container_with_env_set.yml +28 -28
  31. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +33 -33
  32. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +8 -8
  33. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +10 -10
  34. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +13 -13
  35. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +16 -16
  36. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +25 -25
  37. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +53 -52
  38. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +58 -58
  39. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +57 -57
  40. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +105 -105
  41. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +52 -52
  42. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +74 -74
  43. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +52 -52
  44. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +56 -56
  45. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes/should_pass_volumes_to_the_right_container.yml +56 -56
  46. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +105 -105
  47. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +52 -52
  48. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +212 -67
  49. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +54 -54
  50. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +14 -14
  51. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +67 -179
  52. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +34 -34
  53. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +83 -111
  54. data/spec/vcr/bigrig/dev/spec/data/dev_json/tails_the_logs.yml +18 -18
  55. data/spec/vcr/bigrig/dev/spec/data/scan_json/leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +266 -210
  56. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_dependant_containers_when_the_scanned_file_changes.yml +249 -223
  57. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_the_container_when_the_scanned_file_changes.yml +211 -353
  58. data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +17 -17
  59. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +11 -11
  60. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +11 -11
  61. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +11 -11
  62. data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +9 -9
  63. data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +13 -13
  64. data/spec/vcr/bigrig/run/spec/data/wait_for/bigrig_json/waits_for_wait_for.yml +24 -24
  65. data/spec/vcr/bigrig/run/spec/data/wait_for_broken_json/fails_with_an_error.yml +9 -9
  66. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +20 -20
  67. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +16 -16
  68. data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +21 -21
  69. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +50 -158
  70. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +91 -66
  71. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +167 -167
  72. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +353 -353
  73. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_dependant_containers_when_the_scanned_file_changes.yml +322 -322
  74. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_the_container_when_the_scanned_file_changes.yml +325 -327
  75. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +21 -21
  76. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +40 -40
  77. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +40 -40
  78. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +40 -40
  79. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +40 -40
  80. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +40 -40
  81. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for/bigrig_json_waits_for_wait_for.yml +60 -60
  82. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for_broken_json_fails_with_an_error.yml +60 -60
  83. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +661 -216
  84. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +662 -217
  85. metadata +2 -2
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Fri, 05 Jun 2015 23:25:32 GMT
22
+ - Tue, 23 Jun 2015 00:59:36 GMT
23
23
  Content-Length:
24
24
  - '1887'
25
25
  body:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  string: |
28
28
  {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"d6d34d2bfd452f4175eab78597ddd29856f0af494d503b00f4160d5eb3f13f1b","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ENTRYPOINT [/bin/sh -c ruby /code/server.rb]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-10-23T20:00:42.057514693Z","DockerVersion":"1.3.0","Id":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Os":"linux","Parent":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Size":0,"VirtualSize":801041825}
29
29
  http_version:
30
- recorded_at: Fri, 05 Jun 2015 23:25:32 GMT
30
+ recorded_at: Tue, 23 Jun 2015 00:59:36 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -47,7 +47,7 @@ http_interactions:
47
47
  Content-Type:
48
48
  - text/plain; charset=utf-8
49
49
  Date:
50
- - Fri, 05 Jun 2015 23:25:32 GMT
50
+ - Tue, 23 Jun 2015 00:59:36 GMT
51
51
  Content-Length:
52
52
  - '21'
53
53
  body:
@@ -55,7 +55,7 @@ http_interactions:
55
55
  string: |
56
56
  no such id: profiles
57
57
  http_version:
58
- recorded_at: Fri, 05 Jun 2015 23:25:32 GMT
58
+ recorded_at: Tue, 23 Jun 2015 00:59:36 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -75,7 +75,7 @@ http_interactions:
75
75
  Content-Type:
76
76
  - text/plain; charset=utf-8
77
77
  Date:
78
- - Fri, 05 Jun 2015 23:25:32 GMT
78
+ - Tue, 23 Jun 2015 00:59:36 GMT
79
79
  Content-Length:
80
80
  - '21'
81
81
  body:
@@ -83,7 +83,7 @@ http_interactions:
83
83
  string: |
84
84
  no such id: profiles
85
85
  http_version:
86
- recorded_at: Fri, 05 Jun 2015 23:25:32 GMT
86
+ recorded_at: Tue, 23 Jun 2015 00:59:36 GMT
87
87
  - request:
88
88
  method: get
89
89
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -103,7 +103,7 @@ http_interactions:
103
103
  Content-Type:
104
104
  - text/plain; charset=utf-8
105
105
  Date:
106
- - Fri, 05 Jun 2015 23:25:32 GMT
106
+ - Tue, 23 Jun 2015 00:59:36 GMT
107
107
  Content-Length:
108
108
  - '21'
109
109
  body:
@@ -111,7 +111,7 @@ http_interactions:
111
111
  string: |
112
112
  no such id: profiles
113
113
  http_version:
114
- recorded_at: Fri, 05 Jun 2015 23:25:32 GMT
114
+ recorded_at: Tue, 23 Jun 2015 00:59:36 GMT
115
115
  - request:
116
116
  method: get
117
117
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -131,7 +131,7 @@ http_interactions:
131
131
  Content-Type:
132
132
  - text/plain; charset=utf-8
133
133
  Date:
134
- - Fri, 05 Jun 2015 23:25:32 GMT
134
+ - Tue, 23 Jun 2015 00:59:36 GMT
135
135
  Content-Length:
136
136
  - '21'
137
137
  body:
@@ -139,7 +139,7 @@ http_interactions:
139
139
  string: |
140
140
  no such id: profiles
141
141
  http_version:
142
- recorded_at: Fri, 05 Jun 2015 23:25:32 GMT
142
+ recorded_at: Tue, 23 Jun 2015 00:59:36 GMT
143
143
  - request:
144
144
  method: get
145
145
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -159,7 +159,7 @@ http_interactions:
159
159
  Content-Type:
160
160
  - text/plain; charset=utf-8
161
161
  Date:
162
- - Fri, 05 Jun 2015 23:25:32 GMT
162
+ - Tue, 23 Jun 2015 00:59:36 GMT
163
163
  Content-Length:
164
164
  - '21'
165
165
  body:
@@ -167,7 +167,7 @@ http_interactions:
167
167
  string: |
168
168
  no such id: profiles
169
169
  http_version:
170
- recorded_at: Fri, 05 Jun 2015 23:25:32 GMT
170
+ recorded_at: Tue, 23 Jun 2015 00:59:36 GMT
171
171
  - request:
172
172
  method: get
173
173
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -187,7 +187,7 @@ http_interactions:
187
187
  Content-Type:
188
188
  - text/plain; charset=utf-8
189
189
  Date:
190
- - Fri, 05 Jun 2015 23:25:32 GMT
190
+ - Tue, 23 Jun 2015 00:59:36 GMT
191
191
  Content-Length:
192
192
  - '21'
193
193
  body:
@@ -195,7 +195,7 @@ http_interactions:
195
195
  string: |
196
196
  no such id: profiles
197
197
  http_version:
198
- recorded_at: Fri, 05 Jun 2015 23:25:32 GMT
198
+ recorded_at: Tue, 23 Jun 2015 00:59:36 GMT
199
199
  - request:
200
200
  method: get
201
201
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -215,7 +215,7 @@ http_interactions:
215
215
  Content-Type:
216
216
  - text/plain; charset=utf-8
217
217
  Date:
218
- - Fri, 05 Jun 2015 23:25:32 GMT
218
+ - Tue, 23 Jun 2015 00:59:36 GMT
219
219
  Content-Length:
220
220
  - '21'
221
221
  body:
@@ -223,7 +223,7 @@ http_interactions:
223
223
  string: |
224
224
  no such id: profiles
225
225
  http_version:
226
- recorded_at: Fri, 05 Jun 2015 23:25:32 GMT
226
+ recorded_at: Tue, 23 Jun 2015 00:59:36 GMT
227
227
  - request:
228
228
  method: get
229
229
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -243,7 +243,7 @@ http_interactions:
243
243
  Content-Type:
244
244
  - text/plain; charset=utf-8
245
245
  Date:
246
- - Fri, 05 Jun 2015 23:25:32 GMT
246
+ - Tue, 23 Jun 2015 00:59:36 GMT
247
247
  Content-Length:
248
248
  - '21'
249
249
  body:
@@ -251,13 +251,13 @@ http_interactions:
251
251
  string: |
252
252
  no such id: profiles
253
253
  http_version:
254
- recorded_at: Fri, 05 Jun 2015 23:25:32 GMT
254
+ recorded_at: Tue, 23 Jun 2015 00:59:36 GMT
255
255
  - request:
256
256
  method: post
257
257
  uri: "<DOCKER_HOST>/v1.16/containers/create?name=profiles"
258
258
  body:
259
259
  encoding: UTF-8
260
- string: '{"Env":["NAME1=VALUE1A","NAME2=VALUE2"],"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","ExposedPorts":{"80/tcp":{}}}'
260
+ string: '{"Env":["NAME1=VALUE1A","NAME2=VALUE2"],"Hostname":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","ExposedPorts":{"80/tcp":{}}}'
261
261
  headers:
262
262
  User-Agent:
263
263
  - Swipely/Docker-API 1.21.4
@@ -271,18 +271,18 @@ http_interactions:
271
271
  Content-Type:
272
272
  - application/json
273
273
  Date:
274
- - Fri, 05 Jun 2015 23:25:32 GMT
274
+ - Tue, 23 Jun 2015 00:59:36 GMT
275
275
  Content-Length:
276
276
  - '90'
277
277
  body:
278
278
  encoding: UTF-8
279
279
  string: |
280
- {"Id":"395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1","Warnings":null}
280
+ {"Id":"98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942","Warnings":null}
281
281
  http_version:
282
- recorded_at: Fri, 05 Jun 2015 23:25:32 GMT
282
+ recorded_at: Tue, 23 Jun 2015 00:59:36 GMT
283
283
  - request:
284
284
  method: post
285
- uri: "<DOCKER_HOST>/v1.16/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/start"
285
+ uri: "<DOCKER_HOST>/v1.16/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/start"
286
286
  body:
287
287
  encoding: UTF-8
288
288
  string: '{"Links":[],"ExtraHosts":[],"PortBindings":{"80/tcp":[{"HostPort":"4567"}]},"VolumesFrom":[],"Binds":[]}'
@@ -297,12 +297,12 @@ http_interactions:
297
297
  message:
298
298
  headers:
299
299
  Date:
300
- - Fri, 05 Jun 2015 23:25:32 GMT
300
+ - Tue, 23 Jun 2015 00:59:37 GMT
301
301
  body:
302
302
  encoding: UTF-8
303
303
  string: ''
304
304
  http_version:
305
- recorded_at: Fri, 05 Jun 2015 23:25:32 GMT
305
+ recorded_at: Tue, 23 Jun 2015 00:59:37 GMT
306
306
  - request:
307
307
  method: get
308
308
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -322,16 +322,16 @@ http_interactions:
322
322
  Content-Type:
323
323
  - application/json
324
324
  Date:
325
- - Fri, 05 Jun 2015 23:25:32 GMT
325
+ - Tue, 23 Jun 2015 00:59:37 GMT
326
326
  body:
327
327
  encoding: UTF-8
328
328
  string: |
329
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["NAME1=VALUE1A","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"395fc26ba50d","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:25:32.470395724Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4567"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/hosts","Id":"395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1-json.log","MountLabel":"","Name":"/profiles","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.72","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:148","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:48","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4567"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23472,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:25:32.944572233Z"},"Volumes":{},"VolumesRW":{}}
329
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["NAME1=VALUE1A","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:36.74374696Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4567"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/hosts","Id":"98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942-json.log","MountLabel":"","Name":"/profiles","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.96","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:60","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:60","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4567"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10065,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T00:59:37.235911477Z"},"Volumes":{},"VolumesRW":{}}
330
330
  http_version:
331
- recorded_at: Fri, 05 Jun 2015 23:25:32 GMT
331
+ recorded_at: Tue, 23 Jun 2015 00:59:37 GMT
332
332
  - request:
333
333
  method: post
334
- uri: "<DOCKER_HOST>/v1.16/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/exec"
334
+ uri: "<DOCKER_HOST>/v1.16/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/exec"
335
335
  body:
336
336
  encoding: UTF-8
337
337
  string: '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":false,"Cmd":["ls","/bigrig-wait.sh"]}'
@@ -348,18 +348,18 @@ http_interactions:
348
348
  Content-Type:
349
349
  - application/json
350
350
  Date:
351
- - Fri, 05 Jun 2015 23:25:33 GMT
351
+ - Tue, 23 Jun 2015 00:59:37 GMT
352
352
  Content-Length:
353
353
  - '74'
354
354
  body:
355
355
  encoding: UTF-8
356
356
  string: |
357
- {"Id":"287960f6f11b927fe2fe3a0020b58799e84722380792a99b524b66afa9813bca"}
357
+ {"Id":"e1074b3fd3c0ca64b8771abe4fadf6d9e8d15ef586269e4acef0f103cab53402"}
358
358
  http_version:
359
- recorded_at: Fri, 05 Jun 2015 23:25:33 GMT
359
+ recorded_at: Tue, 23 Jun 2015 00:59:37 GMT
360
360
  - request:
361
361
  method: post
362
- uri: "<DOCKER_HOST>/v1.16/exec/287960f6f11b927fe2fe3a0020b58799e84722380792a99b524b66afa9813bca/start"
362
+ uri: "<DOCKER_HOST>/v1.16/exec/e1074b3fd3c0ca64b8771abe4fadf6d9e8d15ef586269e4acef0f103cab53402/start"
363
363
  body:
364
364
  encoding: UTF-8
365
365
  string: '{"Tty":false,"Detach":false}'
@@ -381,10 +381,10 @@ http_interactions:
381
381
  AgAAAAAAAD1sczogY2Fubm90IGFjY2VzcyAvYmlncmlnLXdhaXQuc2g6IE5v
382
382
  IHN1Y2ggZmlsZSBvciBkaXJlY3RvcnkK
383
383
  http_version:
384
- recorded_at: Fri, 05 Jun 2015 23:25:33 GMT
384
+ recorded_at: Tue, 23 Jun 2015 00:59:37 GMT
385
385
  - request:
386
386
  method: get
387
- uri: "<DOCKER_HOST>/v1.16/exec/287960f6f11b927fe2fe3a0020b58799e84722380792a99b524b66afa9813bca/json"
387
+ uri: "<DOCKER_HOST>/v1.16/exec/e1074b3fd3c0ca64b8771abe4fadf6d9e8d15ef586269e4acef0f103cab53402/json"
388
388
  body:
389
389
  encoding: US-ASCII
390
390
  string: ''
@@ -401,14 +401,14 @@ http_interactions:
401
401
  Content-Type:
402
402
  - application/json
403
403
  Date:
404
- - Fri, 05 Jun 2015 23:25:33 GMT
404
+ - Tue, 23 Jun 2015 00:59:37 GMT
405
405
  body:
406
406
  encoding: UTF-8
407
- string: '{"ID":"287960f6f11b927fe2fe3a0020b58799e84722380792a99b524b66afa9813bca","Running":false,"ExitCode":2,"ProcessConfig":{"privileged":false,"user":"","tty":false,"entrypoint":"ls","arguments":["/bigrig-wait.sh"]},"OpenStdin":false,"OpenStderr":true,"OpenStdout":true,"Container":{"State":{"Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":23472,"ExitCode":0,"Error":"","StartedAt":"2015-06-05T23:25:32.944572233Z","FinishedAt":"0001-01-01T00:00:00Z"},"ID":"395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1","Created":"2015-06-05T23:25:32.470395724Z","Path":"/bin/sh","Args":["-c","ruby
408
- /code/server.rb"],"Config":{"Hostname":"395fc26ba50d","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"Cpuset":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":{"80/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["NAME1=VALUE1A","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"Cmd":null,"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Volumes":null,"WorkingDir":"","Entrypoint":["/bin/sh","-c","ruby
409
- /code/server.rb"],"NetworkDisabled":false,"MacAddress":"","OnBuild":null,"Labels":{}},"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","NetworkSettings":{"IPAddress":"172.17.1.72","IPPrefixLen":16,"MacAddress":"02:42:ac:11:01:48","LinkLocalIPv6Address":"fe80::42:acff:fe11:148","LinkLocalIPv6PrefixLen":64,"GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"Gateway":"172.17.42.1","IPv6Gateway":"","Bridge":"docker0","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4567"}]}},"ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/resolv.conf","HostnamePath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/hosts","LogPath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1-json.log","Name":"/profiles","Driver":"aufs","ExecDriver":"native-0.2","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","RestartCount":0,"UpdateDns":false,"Volumes":{},"VolumesRW":{},"AppliedVolumesFrom":null}}'
407
+ string: '{"ID":"e1074b3fd3c0ca64b8771abe4fadf6d9e8d15ef586269e4acef0f103cab53402","Running":false,"ExitCode":2,"ProcessConfig":{"privileged":false,"user":"","tty":false,"entrypoint":"ls","arguments":["/bigrig-wait.sh"]},"OpenStdin":false,"OpenStderr":true,"OpenStdout":true,"Container":{"State":{"Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":10065,"ExitCode":0,"Error":"","StartedAt":"2015-06-23T00:59:37.235911477Z","FinishedAt":"0001-01-01T00:00:00Z"},"ID":"98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942","Created":"2015-06-23T00:59:36.74374696Z","Path":"/bin/sh","Args":["-c","ruby
408
+ /code/server.rb"],"Config":{"Hostname":"HNEWTONMAC3","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"Cpuset":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":{"80/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["NAME1=VALUE1A","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"Cmd":null,"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Volumes":null,"WorkingDir":"","Entrypoint":["/bin/sh","-c","ruby
409
+ /code/server.rb"],"NetworkDisabled":false,"MacAddress":"","OnBuild":null,"Labels":{}},"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","NetworkSettings":{"IPAddress":"172.17.0.96","IPPrefixLen":16,"MacAddress":"02:42:ac:11:00:60","LinkLocalIPv6Address":"fe80::42:acff:fe11:60","LinkLocalIPv6PrefixLen":64,"GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"Gateway":"172.17.42.1","IPv6Gateway":"","Bridge":"docker0","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4567"}]}},"ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/resolv.conf","HostnamePath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/hosts","LogPath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942-json.log","Name":"/profiles","Driver":"aufs","ExecDriver":"native-0.2","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","RestartCount":0,"UpdateDns":false,"Volumes":{},"VolumesRW":{},"AppliedVolumesFrom":null}}'
410
410
  http_version:
411
- recorded_at: Fri, 05 Jun 2015 23:25:33 GMT
411
+ recorded_at: Tue, 23 Jun 2015 00:59:37 GMT
412
412
  - request:
413
413
  method: get
414
414
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -428,13 +428,13 @@ http_interactions:
428
428
  Content-Type:
429
429
  - application/json
430
430
  Date:
431
- - Fri, 05 Jun 2015 23:25:33 GMT
431
+ - Tue, 23 Jun 2015 00:59:37 GMT
432
432
  body:
433
433
  encoding: UTF-8
434
434
  string: |
435
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["NAME1=VALUE1A","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"395fc26ba50d","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:25:32.470395724Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["287960f6f11b927fe2fe3a0020b58799e84722380792a99b524b66afa9813bca"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4567"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/hosts","Id":"395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1-json.log","MountLabel":"","Name":"/profiles","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.72","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:148","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:48","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4567"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23472,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:25:32.944572233Z"},"Volumes":{},"VolumesRW":{}}
435
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["NAME1=VALUE1A","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:36.74374696Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["e1074b3fd3c0ca64b8771abe4fadf6d9e8d15ef586269e4acef0f103cab53402"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4567"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/hosts","Id":"98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942-json.log","MountLabel":"","Name":"/profiles","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.96","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:60","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:60","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4567"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10065,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T00:59:37.235911477Z"},"Volumes":{},"VolumesRW":{}}
436
436
  http_version:
437
- recorded_at: Fri, 05 Jun 2015 23:25:33 GMT
437
+ recorded_at: Tue, 23 Jun 2015 00:59:37 GMT
438
438
  - request:
439
439
  method: get
440
440
  uri: "<DOCKER_HOST>/v1.16/images/hawknewton/show-env/json"
@@ -454,7 +454,7 @@ http_interactions:
454
454
  Content-Type:
455
455
  - application/json
456
456
  Date:
457
- - Fri, 05 Jun 2015 23:25:33 GMT
457
+ - Tue, 23 Jun 2015 00:59:37 GMT
458
458
  Content-Length:
459
459
  - '1887'
460
460
  body:
@@ -462,7 +462,7 @@ http_interactions:
462
462
  string: |
463
463
  {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"d6d34d2bfd452f4175eab78597ddd29856f0af494d503b00f4160d5eb3f13f1b","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ENTRYPOINT [/bin/sh -c ruby /code/server.rb]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-10-23T20:00:42.057514693Z","DockerVersion":"1.3.0","Id":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Os":"linux","Parent":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Size":0,"VirtualSize":801041825}
464
464
  http_version:
465
- recorded_at: Fri, 05 Jun 2015 23:25:33 GMT
465
+ recorded_at: Tue, 23 Jun 2015 00:59:37 GMT
466
466
  - request:
467
467
  method: get
468
468
  uri: "<DOCKER_HOST>/v1.16/containers/profiles/json"
@@ -482,16 +482,16 @@ http_interactions:
482
482
  Content-Type:
483
483
  - application/json
484
484
  Date:
485
- - Fri, 05 Jun 2015 23:25:33 GMT
485
+ - Tue, 23 Jun 2015 00:59:37 GMT
486
486
  body:
487
487
  encoding: UTF-8
488
488
  string: |
489
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["NAME1=VALUE1A","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"395fc26ba50d","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:25:32.470395724Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["287960f6f11b927fe2fe3a0020b58799e84722380792a99b524b66afa9813bca"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4567"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/hosts","Id":"395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1-json.log","MountLabel":"","Name":"/profiles","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.72","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:148","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:48","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4567"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23472,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:25:32.944572233Z"},"Volumes":{},"VolumesRW":{}}
489
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["NAME1=VALUE1A","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:36.74374696Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["e1074b3fd3c0ca64b8771abe4fadf6d9e8d15ef586269e4acef0f103cab53402"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4567"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/hosts","Id":"98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942-json.log","MountLabel":"","Name":"/profiles","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.96","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:60","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:60","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4567"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10065,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T00:59:37.235911477Z"},"Volumes":{},"VolumesRW":{}}
490
490
  http_version:
491
- recorded_at: Fri, 05 Jun 2015 23:25:33 GMT
491
+ recorded_at: Tue, 23 Jun 2015 00:59:37 GMT
492
492
  - request:
493
493
  method: post
494
- uri: "<DOCKER_HOST>/v1.16/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1/kill"
494
+ uri: "<DOCKER_HOST>/v1.16/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942/kill"
495
495
  body:
496
496
  encoding: US-ASCII
497
497
  string: ''
@@ -506,15 +506,15 @@ http_interactions:
506
506
  message:
507
507
  headers:
508
508
  Date:
509
- - Fri, 05 Jun 2015 23:25:33 GMT
509
+ - Tue, 23 Jun 2015 00:59:37 GMT
510
510
  body:
511
511
  encoding: UTF-8
512
512
  string: ''
513
513
  http_version:
514
- recorded_at: Fri, 05 Jun 2015 23:25:33 GMT
514
+ recorded_at: Tue, 23 Jun 2015 00:59:37 GMT
515
515
  - request:
516
516
  method: delete
517
- uri: "<DOCKER_HOST>/v1.16/containers/395fc26ba50d968345ee7f86e6b0b13e4e77b770a2bfea1cd60fcd588857eaf1"
517
+ uri: "<DOCKER_HOST>/v1.16/containers/98dde88bded04d86aafb2be6ff62482eee9003c758808f4cc218bca410354942"
518
518
  body:
519
519
  encoding: US-ASCII
520
520
  string: ''
@@ -529,10 +529,10 @@ http_interactions:
529
529
  message:
530
530
  headers:
531
531
  Date:
532
- - Fri, 05 Jun 2015 23:25:33 GMT
532
+ - Tue, 23 Jun 2015 00:59:37 GMT
533
533
  body:
534
534
  encoding: UTF-8
535
535
  string: ''
536
536
  http_version:
537
- recorded_at: Fri, 05 Jun 2015 23:25:33 GMT
537
+ recorded_at: Tue, 23 Jun 2015 00:59:37 GMT
538
538
  recorded_with: VCR 2.9.3
@@ -19,18 +19,18 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Fri, 05 Jun 2015 23:27:47 GMT
22
+ - Tue, 23 Jun 2015 01:01:57 GMT
23
23
  Content-Length:
24
24
  - '90'
25
25
  body:
26
26
  encoding: UTF-8
27
27
  string: |
28
- {"Id":"f9f8e6211ceb74495e7bfa804589c4e8ed42eafdc4ee4296120bc233160b9bfb","Warnings":null}
28
+ {"Id":"de944351a40cf4045141ee983e3f175632d2a2e769b99807e94280903c52179c","Warnings":null}
29
29
  http_version:
30
- recorded_at: Fri, 05 Jun 2015 23:27:47 GMT
30
+ recorded_at: Tue, 23 Jun 2015 01:01:57 GMT
31
31
  - request:
32
32
  method: post
33
- uri: "<DOCKER_HOST>/v1.16/containers/f9f8e6211ceb74495e7bfa804589c4e8ed42eafdc4ee4296120bc233160b9bfb/start"
33
+ uri: "<DOCKER_HOST>/v1.16/containers/de944351a40cf4045141ee983e3f175632d2a2e769b99807e94280903c52179c/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
- - Fri, 05 Jun 2015 23:27:48 GMT
48
+ - Tue, 23 Jun 2015 01:01:58 GMT
49
49
  body:
50
50
  encoding: UTF-8
51
51
  string: ''
52
52
  http_version:
53
- recorded_at: Fri, 05 Jun 2015 23:27:48 GMT
53
+ recorded_at: Tue, 23 Jun 2015 01:01:58 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
- - Fri, 05 Jun 2015 23:27:49 GMT
73
+ - Tue, 23 Jun 2015 01:01:59 GMT
74
74
  Content-Length:
75
75
  - '24'
76
76
  body:
@@ -78,7 +78,7 @@ http_interactions:
78
78
  string: |
79
79
  no such id: single-test
80
80
  http_version:
81
- recorded_at: Fri, 05 Jun 2015 23:27:49 GMT
81
+ recorded_at: Tue, 23 Jun 2015 01:01:59 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
- - Fri, 05 Jun 2015 23:27:49 GMT
101
+ - Tue, 23 Jun 2015 01:01:59 GMT
102
102
  Content-Length:
103
103
  - '24'
104
104
  body:
@@ -106,7 +106,7 @@ http_interactions:
106
106
  string: |
107
107
  no such id: single-test
108
108
  http_version:
109
- recorded_at: Fri, 05 Jun 2015 23:27:49 GMT
109
+ recorded_at: Tue, 23 Jun 2015 01:01:59 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
- - Fri, 05 Jun 2015 23:27:49 GMT
129
+ - Tue, 23 Jun 2015 01:01:59 GMT
130
130
  Content-Length:
131
131
  - '24'
132
132
  body:
@@ -134,7 +134,7 @@ http_interactions:
134
134
  string: |
135
135
  no such id: single-test
136
136
  http_version:
137
- recorded_at: Fri, 05 Jun 2015 23:27:49 GMT
137
+ recorded_at: Tue, 23 Jun 2015 01:01:59 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
- - Fri, 05 Jun 2015 23:27:49 GMT
157
+ - Tue, 23 Jun 2015 01:01:59 GMT
158
158
  Content-Length:
159
159
  - '24'
160
160
  body:
@@ -162,5 +162,5 @@ http_interactions:
162
162
  string: |
163
163
  no such id: single-test
164
164
  http_version:
165
- recorded_at: Fri, 05 Jun 2015 23:27:49 GMT
165
+ recorded_at: Tue, 23 Jun 2015 01:01:59 GMT
166
166
  recorded_with: VCR 2.9.3