bigrig 0.2.1 → 0.2.2

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 (86) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile.lock +3 -1
  4. data/bigrig.gemspec +1 -0
  5. data/lib/bigrig/dependency_graph.rb +3 -1
  6. data/lib/bigrig/version.rb +1 -1
  7. data/spec/bigrig/dependency_graph_spec.rb +10 -4
  8. data/spec/bigrig_spec.rb +44 -34
  9. data/spec/data/scan.json +2 -1
  10. data/spec/spec_helper.rb +1 -13
  11. data/spec/support/wait_for.rb +35 -0
  12. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +46 -46
  13. 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
  14. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +8 -8
  15. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +4 -4
  16. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +8 -8
  17. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +9 -9
  18. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +12 -12
  19. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +12 -12
  20. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +8 -8
  21. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +22 -22
  22. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +17 -17
  23. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +4 -4
  24. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +2 -2
  25. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +6 -6
  26. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +36 -36
  27. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +453 -77
  28. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +16 -16
  29. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +32 -32
  30. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +10 -10
  31. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +8 -8
  32. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +28 -28
  33. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +27 -27
  34. 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 +27 -27
  35. 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
  36. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +8 -8
  37. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +11 -11
  38. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +13 -13
  39. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +16 -16
  40. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +25 -25
  41. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +20 -20
  42. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +40 -40
  43. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +41 -41
  44. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +73 -73
  45. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +52 -52
  46. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +74 -74
  47. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +36 -36
  48. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +38 -38
  49. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes/should_pass_volumes_to_the_right_container.yml +40 -40
  50. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +73 -73
  51. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +52 -52
  52. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +35 -35
  53. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +38 -38
  54. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +14 -14
  55. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +427 -37
  56. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +32 -32
  57. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +472 -76
  58. data/spec/vcr/bigrig/dev/spec/data/dev_json/tails_the_logs.yml +16 -16
  59. data/spec/vcr/bigrig/dev/spec/data/scan_json/leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +1544 -86
  60. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_dependant_containers_when_the_scanned_file_changes.yml +1725 -69
  61. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_the_container_when_the_scanned_file_changes.yml +1536 -96
  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 +20 -20
  69. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +15 -15
  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 +105 -305
  72. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +109 -307
  73. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +116 -116
  74. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +385 -382
  75. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_dependant_containers_when_the_scanned_file_changes.yml +357 -354
  76. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_the_container_when_the_scanned_file_changes.yml +358 -1091
  77. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +21 -21
  78. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +24 -24
  79. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +24 -24
  80. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +17 -17
  81. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +24 -24
  82. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +24 -24
  83. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +439 -63
  84. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +430 -54
  85. data/spec/waitfor_spec.rb +10 -0
  86. metadata +18 -2
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Mon, 06 Apr 2015 21:59:38 GMT
22
+ - Mon, 20 Apr 2015 23:28:51 GMT
23
23
  Content-Length:
24
24
  - '1479'
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":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"cb0575974a6a573010bf8f4fa1ca6ce5ac4760b880c30db72ffe47a4c62849c0","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) CMD [/true]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-01-10T13:42:58.118276832Z","DockerVersion":"1.3.0","Id":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Os":"linux","Parent":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","Size":0,"VirtualSize":125}
29
29
  http_version:
30
- recorded_at: Mon, 06 Apr 2015 21:59:37 GMT
30
+ recorded_at: Mon, 20 Apr 2015 23:28:51 GMT
31
31
  - request:
32
32
  method: delete
33
33
  uri: "<DOCKER_HOST>/v1.16/images/5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb?force=true"
@@ -47,7 +47,7 @@ http_interactions:
47
47
  Content-Type:
48
48
  - application/json
49
49
  Date:
50
- - Mon, 06 Apr 2015 21:59:38 GMT
50
+ - Mon, 20 Apr 2015 23:28:51 GMT
51
51
  Content-Length:
52
52
  - '120'
53
53
  body:
@@ -58,7 +58,7 @@ http_interactions:
58
58
  ,{"Untagged":"hawknewton/true:not_exist"}
59
59
  ]
60
60
  http_version:
61
- recorded_at: Mon, 06 Apr 2015 21:59:37 GMT
61
+ recorded_at: Mon, 20 Apr 2015 23:28:51 GMT
62
62
  - request:
63
63
  method: post
64
64
  uri: "<DOCKER_HOST>/v1.16/images/create?fromImage=hawknewton%2Ftrue"
@@ -78,7 +78,7 @@ http_interactions:
78
78
  Content-Type:
79
79
  - application/json
80
80
  Date:
81
- - Mon, 06 Apr 2015 21:59:38 GMT
81
+ - Mon, 20 Apr 2015 23:28:51 GMT
82
82
  body:
83
83
  encoding: UTF-8
84
84
  string: "{\"status\":\"Pulling repository hawknewton/true\"}\r\n{\"status\":\"Pulling
@@ -91,7 +91,7 @@ http_interactions:
91
91
  complete\",\"progressDetail\":{},\"id\":\"5fbce35eb337\"}{\"status\":\"Status:
92
92
  Image is up to date for hawknewton/true\"}\r\n"
93
93
  http_version:
94
- recorded_at: Mon, 06 Apr 2015 21:59:40 GMT
94
+ recorded_at: Mon, 20 Apr 2015 23:28:53 GMT
95
95
  - request:
96
96
  method: get
97
97
  uri: "<DOCKER_HOST>/v1.16/images/5fbce35eb337/json"
@@ -111,7 +111,7 @@ http_interactions:
111
111
  Content-Type:
112
112
  - application/json
113
113
  Date:
114
- - Mon, 06 Apr 2015 21:59:42 GMT
114
+ - Mon, 20 Apr 2015 23:28:53 GMT
115
115
  Content-Length:
116
116
  - '1479'
117
117
  body:
@@ -119,7 +119,7 @@ http_interactions:
119
119
  string: |
120
120
  {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"cb0575974a6a573010bf8f4fa1ca6ce5ac4760b880c30db72ffe47a4c62849c0","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) CMD [/true]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-01-10T13:42:58.118276832Z","DockerVersion":"1.3.0","Id":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Os":"linux","Parent":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","Size":0,"VirtualSize":125}
121
121
  http_version:
122
- recorded_at: Mon, 06 Apr 2015 21:59:40 GMT
122
+ recorded_at: Mon, 20 Apr 2015 23:28:53 GMT
123
123
  - request:
124
124
  method: post
125
125
  uri: "<DOCKER_HOST>/v1.16/images/5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb/tag?force=true&repo=test%2Ftag&tag=1.2.3"
@@ -137,7 +137,7 @@ http_interactions:
137
137
  message:
138
138
  headers:
139
139
  Date:
140
- - Mon, 06 Apr 2015 21:59:42 GMT
140
+ - Mon, 20 Apr 2015 23:28:53 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, 06 Apr 2015 21:59:40 GMT
149
+ recorded_at: Mon, 20 Apr 2015 23:28:53 GMT
150
150
  - request:
151
151
  method: get
152
152
  uri: "<DOCKER_HOST>/v1.16/images/test/tag:1.2.3/json"
@@ -166,7 +166,7 @@ http_interactions:
166
166
  Content-Type:
167
167
  - application/json
168
168
  Date:
169
- - Mon, 06 Apr 2015 21:59:42 GMT
169
+ - Mon, 20 Apr 2015 23:28:53 GMT
170
170
  Content-Length:
171
171
  - '1479'
172
172
  body:
@@ -174,7 +174,7 @@ http_interactions:
174
174
  string: |
175
175
  {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"cb0575974a6a573010bf8f4fa1ca6ce5ac4760b880c30db72ffe47a4c62849c0","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) CMD [/true]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-01-10T13:42:58.118276832Z","DockerVersion":"1.3.0","Id":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Os":"linux","Parent":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","Size":0,"VirtualSize":125}
176
176
  http_version:
177
- recorded_at: Mon, 06 Apr 2015 21:59:40 GMT
177
+ recorded_at: Mon, 20 Apr 2015 23:28:53 GMT
178
178
  - request:
179
179
  method: get
180
180
  uri: "<DOCKER_HOST>/v1.16/images/test/tag:1.2.3/json"
@@ -194,7 +194,7 @@ http_interactions:
194
194
  Content-Type:
195
195
  - application/json
196
196
  Date:
197
- - Mon, 06 Apr 2015 21:59:42 GMT
197
+ - Mon, 20 Apr 2015 23:28:53 GMT
198
198
  Content-Length:
199
199
  - '1479'
200
200
  body:
@@ -202,7 +202,7 @@ http_interactions:
202
202
  string: |
203
203
  {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"cb0575974a6a573010bf8f4fa1ca6ce5ac4760b880c30db72ffe47a4c62849c0","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) CMD [/true]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-01-10T13:42:58.118276832Z","DockerVersion":"1.3.0","Id":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Os":"linux","Parent":"c0d55928342254f4d19858c0b9ef3991e22ee7d5c2e8f4a0239a398e4b4e657f","Size":0,"VirtualSize":125}
204
204
  http_version:
205
- recorded_at: Mon, 06 Apr 2015 21:59:40 GMT
205
+ recorded_at: Mon, 20 Apr 2015 23:28:53 GMT
206
206
  - request:
207
207
  method: delete
208
208
  uri: "<DOCKER_HOST>/v1.16/images/5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb?force=true"
@@ -222,7 +222,7 @@ http_interactions:
222
222
  Content-Type:
223
223
  - application/json
224
224
  Date:
225
- - Mon, 06 Apr 2015 21:59:42 GMT
225
+ - Mon, 20 Apr 2015 23:28:53 GMT
226
226
  Content-Length:
227
227
  - '120'
228
228
  body:
@@ -233,5 +233,5 @@ http_interactions:
233
233
  ,{"Untagged":"hawknewton/true:not_exist"}
234
234
  ]
235
235
  http_version:
236
- recorded_at: Mon, 06 Apr 2015 21:59:41 GMT
236
+ recorded_at: Mon, 20 Apr 2015 23:28:53 GMT
237
237
  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
- - Wed, 08 Apr 2015 21:24:23 GMT
22
+ - Mon, 20 Apr 2015 23:27:47 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: log-test
29
29
  http_version:
30
- recorded_at: Wed, 08 Apr 2015 21:24:22 GMT
30
+ recorded_at: Mon, 20 Apr 2015 23:27:47 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/containers/log-test/json"
@@ -47,7 +47,7 @@ http_interactions:
47
47
  Content-Type:
48
48
  - text/plain; charset=utf-8
49
49
  Date:
50
- - Wed, 08 Apr 2015 21:24:23 GMT
50
+ - Mon, 20 Apr 2015 23:27:47 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: log-test
57
57
  http_version:
58
- recorded_at: Wed, 08 Apr 2015 21:24:22 GMT
58
+ recorded_at: Mon, 20 Apr 2015 23:27:47 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: "<DOCKER_HOST>/v1.16/containers/log-test/json"
@@ -75,7 +75,7 @@ http_interactions:
75
75
  Content-Type:
76
76
  - text/plain; charset=utf-8
77
77
  Date:
78
- - Wed, 08 Apr 2015 21:24:23 GMT
78
+ - Mon, 20 Apr 2015 23:27:47 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: log-test
85
85
  http_version:
86
- recorded_at: Wed, 08 Apr 2015 21:24:22 GMT
86
+ recorded_at: Mon, 20 Apr 2015 23:27:47 GMT
87
87
  - request:
88
88
  method: get
89
89
  uri: "<DOCKER_HOST>/v1.16/containers/log-test/json"
@@ -103,7 +103,7 @@ http_interactions:
103
103
  Content-Type:
104
104
  - text/plain; charset=utf-8
105
105
  Date:
106
- - Wed, 08 Apr 2015 21:24:23 GMT
106
+ - Mon, 20 Apr 2015 23:27:47 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: log-test
113
113
  http_version:
114
- recorded_at: Wed, 08 Apr 2015 21:24:22 GMT
114
+ recorded_at: Mon, 20 Apr 2015 23:27:47 GMT
115
115
  - request:
116
116
  method: post
117
117
  uri: "<DOCKER_HOST>/v1.16/images/create?fromImage=hawknewton%2Flog-test%3A0.0.1"
@@ -131,7 +131,7 @@ http_interactions:
131
131
  Content-Type:
132
132
  - application/json
133
133
  Date:
134
- - Wed, 08 Apr 2015 21:24:23 GMT
134
+ - Mon, 20 Apr 2015 23:27:47 GMT
135
135
  body:
136
136
  encoding: UTF-8
137
137
  string: "{\"status\":\"Pulling repository hawknewton/log-test\"}\r\n{\"status\":\"Pulling
@@ -148,7 +148,7 @@ http_interactions:
148
148
  complete\",\"progressDetail\":{},\"id\":\"bf0f8a45f956\"}{\"status\":\"Status:
149
149
  Image is up to date for hawknewton/log-test:0.0.1\"}\r\n"
150
150
  http_version:
151
- recorded_at: Wed, 08 Apr 2015 21:24:25 GMT
151
+ recorded_at: Mon, 20 Apr 2015 23:27:49 GMT
152
152
  - request:
153
153
  method: post
154
154
  uri: "<DOCKER_HOST>/v1.16/containers/create?name=log-test"
@@ -168,18 +168,18 @@ http_interactions:
168
168
  Content-Type:
169
169
  - application/json
170
170
  Date:
171
- - Wed, 08 Apr 2015 21:24:26 GMT
171
+ - Mon, 20 Apr 2015 23:27:50 GMT
172
172
  Content-Length:
173
173
  - '90'
174
174
  body:
175
175
  encoding: UTF-8
176
176
  string: |
177
- {"Id":"90bda73544157f522d34ed45a490de31470f9aced03c7721856cc6a8f3cd496f","Warnings":null}
177
+ {"Id":"3a074ce96b5d5e59dc17bca86a3ac574849bfbfe0927cf1c15a52b593cd738d6","Warnings":null}
178
178
  http_version:
179
- recorded_at: Wed, 08 Apr 2015 21:24:25 GMT
179
+ recorded_at: Mon, 20 Apr 2015 23:27:49 GMT
180
180
  - request:
181
181
  method: post
182
- uri: "<DOCKER_HOST>/v1.16/containers/90bda73544157f522d34ed45a490de31470f9aced03c7721856cc6a8f3cd496f/start"
182
+ uri: "<DOCKER_HOST>/v1.16/containers/3a074ce96b5d5e59dc17bca86a3ac574849bfbfe0927cf1c15a52b593cd738d6/start"
183
183
  body:
184
184
  encoding: UTF-8
185
185
  string: "{}"
@@ -194,12 +194,12 @@ http_interactions:
194
194
  message:
195
195
  headers:
196
196
  Date:
197
- - Wed, 08 Apr 2015 21:24:26 GMT
197
+ - Mon, 20 Apr 2015 23:27:50 GMT
198
198
  body:
199
199
  encoding: UTF-8
200
200
  string: ''
201
201
  http_version:
202
- recorded_at: Wed, 08 Apr 2015 21:24:25 GMT
202
+ recorded_at: Mon, 20 Apr 2015 23:27:50 GMT
203
203
  - request:
204
204
  method: get
205
205
  uri: "<DOCKER_HOST>/v1.16/containers/log-test/json"
@@ -219,16 +219,16 @@ http_interactions:
219
219
  Content-Type:
220
220
  - application/json
221
221
  Date:
222
- - Wed, 08 Apr 2015 21:24:26 GMT
222
+ - Mon, 20 Apr 2015 23:27:50 GMT
223
223
  body:
224
224
  encoding: UTF-8
225
225
  string: |
226
- {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/run.sh"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"90bda7354415","Image":"bf0f8a45f956","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-08T21:24:26.138290169Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/90bda73544157f522d34ed45a490de31470f9aced03c7721856cc6a8f3cd496f/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/90bda73544157f522d34ed45a490de31470f9aced03c7721856cc6a8f3cd496f/hosts","Id":"90bda73544157f522d34ed45a490de31470f9aced03c7721856cc6a8f3cd496f","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/log-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.45","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:12d","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:2d","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/90bda73544157f522d34ed45a490de31470f9aced03c7721856cc6a8f3cd496f/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":29968,"Restarting":false,"Running":true,"StartedAt":"2015-04-08T21:24:26.485839631Z"},"Volumes":{},"VolumesRW":{}}
226
+ {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/run.sh"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"3a074ce96b5d","Image":"bf0f8a45f956","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:27:50.103710009Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/3a074ce96b5d5e59dc17bca86a3ac574849bfbfe0927cf1c15a52b593cd738d6/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/3a074ce96b5d5e59dc17bca86a3ac574849bfbfe0927cf1c15a52b593cd738d6/hosts","Id":"3a074ce96b5d5e59dc17bca86a3ac574849bfbfe0927cf1c15a52b593cd738d6","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/log-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.182","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b6","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b6","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/3a074ce96b5d5e59dc17bca86a3ac574849bfbfe0927cf1c15a52b593cd738d6/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13111,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:50.506829512Z"},"Volumes":{},"VolumesRW":{}}
227
227
  http_version:
228
- recorded_at: Wed, 08 Apr 2015 21:24:25 GMT
228
+ recorded_at: Mon, 20 Apr 2015 23:27:50 GMT
229
229
  - request:
230
230
  method: post
231
- uri: "<DOCKER_HOST>/v1.16/containers/90bda73544157f522d34ed45a490de31470f9aced03c7721856cc6a8f3cd496f/kill"
231
+ uri: "<DOCKER_HOST>/v1.16/containers/3a074ce96b5d5e59dc17bca86a3ac574849bfbfe0927cf1c15a52b593cd738d6/kill"
232
232
  body:
233
233
  encoding: US-ASCII
234
234
  string: ''
@@ -243,15 +243,15 @@ http_interactions:
243
243
  message:
244
244
  headers:
245
245
  Date:
246
- - Wed, 08 Apr 2015 21:24:26 GMT
246
+ - Mon, 20 Apr 2015 23:27:50 GMT
247
247
  body:
248
248
  encoding: UTF-8
249
249
  string: ''
250
250
  http_version:
251
- recorded_at: Wed, 08 Apr 2015 21:24:26 GMT
251
+ recorded_at: Mon, 20 Apr 2015 23:27:50 GMT
252
252
  - request:
253
253
  method: delete
254
- uri: "<DOCKER_HOST>/v1.16/containers/90bda73544157f522d34ed45a490de31470f9aced03c7721856cc6a8f3cd496f"
254
+ uri: "<DOCKER_HOST>/v1.16/containers/3a074ce96b5d5e59dc17bca86a3ac574849bfbfe0927cf1c15a52b593cd738d6"
255
255
  body:
256
256
  encoding: US-ASCII
257
257
  string: ''
@@ -266,10 +266,10 @@ http_interactions:
266
266
  message:
267
267
  headers:
268
268
  Date:
269
- - Wed, 08 Apr 2015 21:24:26 GMT
269
+ - Mon, 20 Apr 2015 23:27:50 GMT
270
270
  body:
271
271
  encoding: UTF-8
272
272
  string: ''
273
273
  http_version:
274
- recorded_at: Wed, 08 Apr 2015 21:24:26 GMT
274
+ recorded_at: Mon, 20 Apr 2015 23:27:50 GMT
275
275
  recorded_with: VCR 2.9.3
@@ -23,15 +23,15 @@ http_interactions:
23
23
  Content-Type:
24
24
  - application/json
25
25
  Date:
26
- - Mon, 06 Apr 2015 21:58:54 GMT
26
+ - Mon, 20 Apr 2015 23:28:10 GMT
27
27
  body:
28
28
  encoding: UTF-8
29
29
  string: "{\"stream\":\"Step 0 : FROM hawknewton/true\\n\"}\r\n{\"stream\":\"
30
30
  ---\\u003e 5fbce35eb337\\n\"}\r\n{\"stream\":\"Step 1 : ADD test /\\n\"}\r\n{\"stream\":\"
31
- ---\\u003e e2037e82a884\\n\"}\r\n{\"stream\":\"Removing intermediate container
32
- b7abbfd104e8\\n\"}\r\n{\"stream\":\"Successfully built e2037e82a884\\n\"}\r\n"
31
+ ---\\u003e 3689f5b24631\\n\"}\r\n{\"stream\":\"Removing intermediate container
32
+ c4238f47cb7a\\n\"}\r\n{\"stream\":\"Successfully built 3689f5b24631\\n\"}\r\n"
33
33
  http_version:
34
- recorded_at: Mon, 06 Apr 2015 21:58:53 GMT
34
+ recorded_at: Mon, 20 Apr 2015 23:28:10 GMT
35
35
  - request:
36
36
  method: get
37
37
  uri: "<DOCKER_HOST>/v1.16/containers/build_me/json"
@@ -51,13 +51,13 @@ http_interactions:
51
51
  Content-Type:
52
52
  - application/json
53
53
  Date:
54
- - Mon, 06 Apr 2015 21:58:55 GMT
54
+ - Mon, 20 Apr 2015 23:28:10 GMT
55
55
  body:
56
56
  encoding: UTF-8
57
57
  string: |
58
- {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"59b8e7c3c3ab","Image":"b66bd1b60f88","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-06T21:27:19.339105595Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/59b8e7c3c3ab9a6e6f2f9e0b4c8a580be42daea8c7d6fafeb81a6306094c4f37/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/59b8e7c3c3ab9a6e6f2f9e0b4c8a580be42daea8c7d6fafeb81a6306094c4f37/hosts","Id":"59b8e7c3c3ab9a6e6f2f9e0b4c8a580be42daea8c7d6fafeb81a6306094c4f37","Image":"b66bd1b60f8893c68850c90616f11370c21e021cbe9f0416394c537e388c6564","MountLabel":"","Name":"/build_me","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/true","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/59b8e7c3c3ab9a6e6f2f9e0b4c8a580be42daea8c7d6fafeb81a6306094c4f37/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"2015-04-06T21:27:20.023515357Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-06T21:27:19.852575764Z"},"Volumes":{},"VolumesRW":{}}
58
+ {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"b1e494c2a9bc","Image":"f49569ccde97","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:22:20.464495221Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b1e494c2a9bc212beee3478203eb8558df2a10c3c9245f8cf169bd3dae8583b4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b1e494c2a9bc212beee3478203eb8558df2a10c3c9245f8cf169bd3dae8583b4/hosts","Id":"b1e494c2a9bc212beee3478203eb8558df2a10c3c9245f8cf169bd3dae8583b4","Image":"f49569ccde974b72e9ab3281a8152cab4e84131d6c0a8f76f958ac0d0aba8250","MountLabel":"","Name":"/build_me","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/true","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/b1e494c2a9bc212beee3478203eb8558df2a10c3c9245f8cf169bd3dae8583b4/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"2015-04-20T23:22:21.031762995Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:22:20.897887101Z"},"Volumes":{},"VolumesRW":{}}
59
59
  http_version:
60
- recorded_at: Mon, 06 Apr 2015 21:58:53 GMT
60
+ recorded_at: Mon, 20 Apr 2015 23:28:10 GMT
61
61
  - request:
62
62
  method: get
63
63
  uri: "<DOCKER_HOST>/v1.16/containers/build_me/json"
@@ -77,16 +77,16 @@ http_interactions:
77
77
  Content-Type:
78
78
  - application/json
79
79
  Date:
80
- - Mon, 06 Apr 2015 21:58:55 GMT
80
+ - Mon, 20 Apr 2015 23:28:10 GMT
81
81
  body:
82
82
  encoding: UTF-8
83
83
  string: |
84
- {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"59b8e7c3c3ab","Image":"b66bd1b60f88","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-06T21:27:19.339105595Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/59b8e7c3c3ab9a6e6f2f9e0b4c8a580be42daea8c7d6fafeb81a6306094c4f37/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/59b8e7c3c3ab9a6e6f2f9e0b4c8a580be42daea8c7d6fafeb81a6306094c4f37/hosts","Id":"59b8e7c3c3ab9a6e6f2f9e0b4c8a580be42daea8c7d6fafeb81a6306094c4f37","Image":"b66bd1b60f8893c68850c90616f11370c21e021cbe9f0416394c537e388c6564","MountLabel":"","Name":"/build_me","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/true","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/59b8e7c3c3ab9a6e6f2f9e0b4c8a580be42daea8c7d6fafeb81a6306094c4f37/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"2015-04-06T21:27:20.023515357Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-06T21:27:19.852575764Z"},"Volumes":{},"VolumesRW":{}}
84
+ {"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"b1e494c2a9bc","Image":"f49569ccde97","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:22:20.464495221Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b1e494c2a9bc212beee3478203eb8558df2a10c3c9245f8cf169bd3dae8583b4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b1e494c2a9bc212beee3478203eb8558df2a10c3c9245f8cf169bd3dae8583b4/hosts","Id":"b1e494c2a9bc212beee3478203eb8558df2a10c3c9245f8cf169bd3dae8583b4","Image":"f49569ccde974b72e9ab3281a8152cab4e84131d6c0a8f76f958ac0d0aba8250","MountLabel":"","Name":"/build_me","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/true","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/b1e494c2a9bc212beee3478203eb8558df2a10c3c9245f8cf169bd3dae8583b4/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"2015-04-20T23:22:21.031762995Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:22:20.897887101Z"},"Volumes":{},"VolumesRW":{}}
85
85
  http_version:
86
- recorded_at: Mon, 06 Apr 2015 21:58:53 GMT
86
+ recorded_at: Mon, 20 Apr 2015 23:28:10 GMT
87
87
  - request:
88
88
  method: delete
89
- uri: "<DOCKER_HOST>/v1.16/containers/59b8e7c3c3ab9a6e6f2f9e0b4c8a580be42daea8c7d6fafeb81a6306094c4f37"
89
+ uri: "<DOCKER_HOST>/v1.16/containers/b1e494c2a9bc212beee3478203eb8558df2a10c3c9245f8cf169bd3dae8583b4"
90
90
  body:
91
91
  encoding: US-ASCII
92
92
  string: ''
@@ -101,18 +101,18 @@ http_interactions:
101
101
  message:
102
102
  headers:
103
103
  Date:
104
- - Mon, 06 Apr 2015 21:58:55 GMT
104
+ - Mon, 20 Apr 2015 23:28:10 GMT
105
105
  body:
106
106
  encoding: UTF-8
107
107
  string: ''
108
108
  http_version:
109
- recorded_at: Mon, 06 Apr 2015 21:58:53 GMT
109
+ recorded_at: Mon, 20 Apr 2015 23:28:10 GMT
110
110
  - request:
111
111
  method: post
112
112
  uri: "<DOCKER_HOST>/v1.16/containers/create?name=build_me"
113
113
  body:
114
114
  encoding: UTF-8
115
- string: '{"Env":[],"Image":"e2037e82a884","ExposedPorts":{}}'
115
+ string: '{"Env":[],"Image":"3689f5b24631","ExposedPorts":{}}'
116
116
  headers:
117
117
  User-Agent:
118
118
  - Swipely/Docker-API 1.20.0
@@ -126,18 +126,18 @@ http_interactions:
126
126
  Content-Type:
127
127
  - application/json
128
128
  Date:
129
- - Mon, 06 Apr 2015 21:58:55 GMT
129
+ - Mon, 20 Apr 2015 23:28:11 GMT
130
130
  Content-Length:
131
131
  - '90'
132
132
  body:
133
133
  encoding: UTF-8
134
134
  string: |
135
- {"Id":"246ef82862db85f3c3bbc8d31551a128d3cda16f0663bfcdd4639340410be90d","Warnings":null}
135
+ {"Id":"63fab9e5dd65e5bdd7901e568a9530f90c8cc1d402a434369ee0c9be04aee4f9","Warnings":null}
136
136
  http_version:
137
- recorded_at: Mon, 06 Apr 2015 21:58:54 GMT
137
+ recorded_at: Mon, 20 Apr 2015 23:28:10 GMT
138
138
  - request:
139
139
  method: post
140
- uri: "<DOCKER_HOST>/v1.16/containers/246ef82862db85f3c3bbc8d31551a128d3cda16f0663bfcdd4639340410be90d/start"
140
+ uri: "<DOCKER_HOST>/v1.16/containers/63fab9e5dd65e5bdd7901e568a9530f90c8cc1d402a434369ee0c9be04aee4f9/start"
141
141
  body:
142
142
  encoding: UTF-8
143
143
  string: '{"Links":[],"ExtraHosts":[],"PortBindings":{},"VolumesFrom":[],"Binds":[]}'
@@ -152,10 +152,10 @@ http_interactions:
152
152
  message:
153
153
  headers:
154
154
  Date:
155
- - Mon, 06 Apr 2015 21:58:55 GMT
155
+ - Mon, 20 Apr 2015 23:28:11 GMT
156
156
  body:
157
157
  encoding: UTF-8
158
158
  string: ''
159
159
  http_version:
160
- recorded_at: Mon, 06 Apr 2015 21:58:54 GMT
160
+ recorded_at: Mon, 20 Apr 2015 23:28:11 GMT
161
161
  recorded_with: VCR 2.9.3