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
@@ -23,18 +23,18 @@ http_interactions:
23
23
  Content-Type:
24
24
  - application/json
25
25
  Date:
26
- - Fri, 05 Jun 2015 23:25:33 GMT
26
+ - Tue, 23 Jun 2015 00:59:46 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 66a4dbb856d2\\n\"}\r\n{\"stream\":\"Removing intermediate container
32
- a565a489a4cc\\n\"}\r\n{\"stream\":\"Successfully built 66a4dbb856d2\\n\"}\r\n"
31
+ ---\\u003e c44dcc2e3f8f\\n\"}\r\n{\"stream\":\"Removing intermediate container
32
+ 3487335e7d2f\\n\"}\r\n{\"stream\":\"Successfully built c44dcc2e3f8f\\n\"}\r\n"
33
33
  http_version:
34
- recorded_at: Fri, 05 Jun 2015 23:25:34 GMT
34
+ recorded_at: Tue, 23 Jun 2015 00:59:46 GMT
35
35
  - request:
36
36
  method: get
37
- uri: "<DOCKER_HOST>/v1.16/images/66a4dbb856d2/json"
37
+ uri: "<DOCKER_HOST>/v1.16/images/c44dcc2e3f8f/json"
38
38
  body:
39
39
  encoding: US-ASCII
40
40
  string: ''
@@ -51,13 +51,13 @@ http_interactions:
51
51
  Content-Type:
52
52
  - application/json
53
53
  Date:
54
- - Fri, 05 Jun 2015 23:25:34 GMT
54
+ - Tue, 23 Jun 2015 00:59:47 GMT
55
55
  Content-Length:
56
56
  - '1570'
57
57
  body:
58
58
  encoding: UTF-8
59
59
  string: |
60
- {"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":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"a565a489a4cc134748b2fe214400d4720abbeeebcc5a997bffa9077ec98b37ec","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ADD file:35d3259094c7f7980461248416e52f51a8c79055181a287813e044dbd0c1b514 in /"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:25:34.005272618Z","DockerVersion":"1.6.0","Id":"66a4dbb856d2fea6ca20437b61ebae121eb6a5eac6c7f2be80ce4c9d7cbf88e2","Os":"linux","Parent":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Size":0,"VirtualSize":125}
60
+ {"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":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"3487335e7d2fb438712b7569e681d2d658564146781af6c480210123d04f4f98","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ADD file:19d7ae857bba541c4225ee2703114e5b5dc1371c3c1e798a5e0099aa74e4d5dc in /"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:46.893500135Z","DockerVersion":"1.6.0","Id":"c44dcc2e3f8f548e69cff26a8d189bdb032afc7f7da2e680f5c83a1ea5cc3080","Os":"linux","Parent":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Size":0,"VirtualSize":125}
61
61
  http_version:
62
- recorded_at: Fri, 05 Jun 2015 23:25:34 GMT
62
+ recorded_at: Tue, 23 Jun 2015 00:59:47 GMT
63
63
  recorded_with: VCR 2.9.3
@@ -23,13 +23,13 @@ http_interactions:
23
23
  Content-Type:
24
24
  - application/json
25
25
  Date:
26
- - Fri, 05 Jun 2015 23:25:34 GMT
26
+ - Tue, 23 Jun 2015 00:59:47 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 f1b439797fb7\\n\"}\r\n{\"stream\":\"Removing intermediate container
32
- 45532013e695\\n\"}\r\n{\"stream\":\"Successfully built f1b439797fb7\\n\"}\r\n"
31
+ ---\\u003e b61d952e4395\\n\"}\r\n{\"stream\":\"Removing intermediate container
32
+ dc3228bfebe6\\n\"}\r\n{\"stream\":\"Successfully built b61d952e4395\\n\"}\r\n"
33
33
  http_version:
34
- recorded_at: Fri, 05 Jun 2015 23:25:34 GMT
34
+ recorded_at: Tue, 23 Jun 2015 00:59:47 GMT
35
35
  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
- - Fri, 05 Jun 2015 23:25:35 GMT
22
+ - Tue, 23 Jun 2015 00:59:47 GMT
23
23
  Content-Length:
24
24
  - '37'
25
25
  body:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  string: |
28
28
  no such id: container_does_not_exist
29
29
  http_version:
30
- recorded_at: Fri, 05 Jun 2015 23:25:35 GMT
30
+ recorded_at: Tue, 23 Jun 2015 00:59:47 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/containers/container_does_not_exist/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:35 GMT
50
+ - Tue, 23 Jun 2015 00:59:47 GMT
51
51
  Content-Length:
52
52
  - '37'
53
53
  body:
@@ -55,7 +55,7 @@ http_interactions:
55
55
  string: |
56
56
  no such id: container_does_not_exist
57
57
  http_version:
58
- recorded_at: Fri, 05 Jun 2015 23:25:35 GMT
58
+ recorded_at: Tue, 23 Jun 2015 00:59:47 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: "<DOCKER_HOST>/v1.16/containers/container_does_not_exist/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:35 GMT
78
+ - Tue, 23 Jun 2015 00:59:48 GMT
79
79
  Content-Length:
80
80
  - '37'
81
81
  body:
@@ -83,7 +83,7 @@ http_interactions:
83
83
  string: |
84
84
  no such id: container_does_not_exist
85
85
  http_version:
86
- recorded_at: Fri, 05 Jun 2015 23:25:35 GMT
86
+ recorded_at: Tue, 23 Jun 2015 00:59:47 GMT
87
87
  - request:
88
88
  method: get
89
89
  uri: "<DOCKER_HOST>/v1.16/containers/container_does_not_exist/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:35 GMT
106
+ - Tue, 23 Jun 2015 00:59:48 GMT
107
107
  Content-Length:
108
108
  - '37'
109
109
  body:
@@ -111,5 +111,5 @@ http_interactions:
111
111
  string: |
112
112
  no such id: container_does_not_exist
113
113
  http_version:
114
- recorded_at: Fri, 05 Jun 2015 23:25:35 GMT
114
+ recorded_at: Tue, 23 Jun 2015 00:59:48 GMT
115
115
  recorded_with: VCR 2.9.3
@@ -19,15 +19,15 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Fri, 05 Jun 2015 23:25:34 GMT
22
+ - Tue, 23 Jun 2015 00:59:47 GMT
23
23
  Content-Length:
24
24
  - '90'
25
25
  body:
26
26
  encoding: UTF-8
27
27
  string: |
28
- {"Id":"e98f0f5470e677dc535e9871f8aab3930c0a132ba6cf0f53bd59fd9bf1964f57","Warnings":null}
28
+ {"Id":"ef60701ac6960b10900aff38b7ec0839cff75dd3e754bf8273e5b8158f4fc512","Warnings":null}
29
29
  http_version:
30
- recorded_at: Fri, 05 Jun 2015 23:25:34 GMT
30
+ recorded_at: Tue, 23 Jun 2015 00:59:47 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/containers/container_exists/json"
@@ -47,18 +47,18 @@ http_interactions:
47
47
  Content-Type:
48
48
  - application/json
49
49
  Date:
50
- - Fri, 05 Jun 2015 23:25:35 GMT
50
+ - Tue, 23 Jun 2015 00:59:47 GMT
51
51
  Content-Length:
52
- - '1915'
52
+ - '1916'
53
53
  body:
54
54
  encoding: UTF-8
55
55
  string: |
56
- {"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":"e98f0f5470e6","Image":"hawknewton/true","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:34.81590498Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"e98f0f5470e677dc535e9871f8aab3930c0a132ba6cf0f53bd59fd9bf1964f57","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","LogPath":"","MountLabel":"","Name":"/container_exists","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/true","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":{},"VolumesRW":{}}
56
+ {"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":"ef60701ac696","Image":"hawknewton/true","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:47.751792378Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"ef60701ac6960b10900aff38b7ec0839cff75dd3e754bf8273e5b8158f4fc512","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","LogPath":"","MountLabel":"","Name":"/container_exists","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/true","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":{},"VolumesRW":{}}
57
57
  http_version:
58
- recorded_at: Fri, 05 Jun 2015 23:25:35 GMT
58
+ recorded_at: Tue, 23 Jun 2015 00:59:47 GMT
59
59
  - request:
60
60
  method: delete
61
- uri: "<DOCKER_HOST>/v1.16/containers/e98f0f5470e677dc535e9871f8aab3930c0a132ba6cf0f53bd59fd9bf1964f57"
61
+ uri: "<DOCKER_HOST>/v1.16/containers/ef60701ac6960b10900aff38b7ec0839cff75dd3e754bf8273e5b8158f4fc512"
62
62
  body:
63
63
  encoding: US-ASCII
64
64
  string: ''
@@ -73,10 +73,10 @@ http_interactions:
73
73
  message:
74
74
  headers:
75
75
  Date:
76
- - Fri, 05 Jun 2015 23:25:35 GMT
76
+ - Tue, 23 Jun 2015 00:59:47 GMT
77
77
  body:
78
78
  encoding: UTF-8
79
79
  string: ''
80
80
  http_version:
81
- recorded_at: Fri, 05 Jun 2015 23:25:35 GMT
81
+ recorded_at: Tue, 23 Jun 2015 00:59:47 GMT
82
82
  recorded_with: VCR 2.9.3
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Fri, 05 Jun 2015 23:25:39 GMT
22
+ - Tue, 23 Jun 2015 00:59:52 GMT
23
23
  Content-Length:
24
24
  - '1507'
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","Labels":null,"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","Labels":null,"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: Fri, 05 Jun 2015 23:25:39 GMT
30
+ recorded_at: Tue, 23 Jun 2015 00:59:52 GMT
31
31
  - request:
32
32
  method: delete
33
33
  uri: "<DOCKER_HOST>/v1.16/images/hawknewton/true:not_exist"
@@ -47,7 +47,7 @@ http_interactions:
47
47
  Content-Type:
48
48
  - application/json
49
49
  Date:
50
- - Fri, 05 Jun 2015 23:25:39 GMT
50
+ - Tue, 23 Jun 2015 00:59:52 GMT
51
51
  Content-Length:
52
52
  - '43'
53
53
  body:
@@ -56,7 +56,7 @@ http_interactions:
56
56
  [{"Untagged":"hawknewton/true:not_exist"}
57
57
  ]
58
58
  http_version:
59
- recorded_at: Fri, 05 Jun 2015 23:25:39 GMT
59
+ recorded_at: Tue, 23 Jun 2015 00:59:52 GMT
60
60
  - request:
61
61
  method: get
62
62
  uri: "<DOCKER_HOST>/v1.16/images/hawknewton/true:not_exist/json"
@@ -76,7 +76,7 @@ http_interactions:
76
76
  Content-Type:
77
77
  - text/plain; charset=utf-8
78
78
  Date:
79
- - Fri, 05 Jun 2015 23:25:39 GMT
79
+ - Tue, 23 Jun 2015 00:59:53 GMT
80
80
  Content-Length:
81
81
  - '41'
82
82
  body:
@@ -84,7 +84,7 @@ http_interactions:
84
84
  string: |
85
85
  No such image: hawknewton/true:not_exist
86
86
  http_version:
87
- recorded_at: Fri, 05 Jun 2015 23:25:39 GMT
87
+ recorded_at: Tue, 23 Jun 2015 00:59:53 GMT
88
88
  - request:
89
89
  method: get
90
90
  uri: "<DOCKER_HOST>/v1.16/images/hawknewton/true:not_exist/json"
@@ -104,7 +104,7 @@ http_interactions:
104
104
  Content-Type:
105
105
  - text/plain; charset=utf-8
106
106
  Date:
107
- - Fri, 05 Jun 2015 23:25:39 GMT
107
+ - Tue, 23 Jun 2015 00:59:53 GMT
108
108
  Content-Length:
109
109
  - '41'
110
110
  body:
@@ -112,7 +112,7 @@ http_interactions:
112
112
  string: |
113
113
  No such image: hawknewton/true:not_exist
114
114
  http_version:
115
- recorded_at: Fri, 05 Jun 2015 23:25:39 GMT
115
+ recorded_at: Tue, 23 Jun 2015 00:59:53 GMT
116
116
  - request:
117
117
  method: get
118
118
  uri: "<DOCKER_HOST>/v1.16/images/hawknewton/true:not_exist/json"
@@ -132,7 +132,7 @@ http_interactions:
132
132
  Content-Type:
133
133
  - text/plain; charset=utf-8
134
134
  Date:
135
- - Fri, 05 Jun 2015 23:25:39 GMT
135
+ - Tue, 23 Jun 2015 00:59:53 GMT
136
136
  Content-Length:
137
137
  - '41'
138
138
  body:
@@ -140,7 +140,7 @@ http_interactions:
140
140
  string: |
141
141
  No such image: hawknewton/true:not_exist
142
142
  http_version:
143
- recorded_at: Fri, 05 Jun 2015 23:25:39 GMT
143
+ recorded_at: Tue, 23 Jun 2015 00:59:53 GMT
144
144
  - request:
145
145
  method: get
146
146
  uri: "<DOCKER_HOST>/v1.16/images/hawknewton/true:not_exist/json"
@@ -160,7 +160,7 @@ http_interactions:
160
160
  Content-Type:
161
161
  - text/plain; charset=utf-8
162
162
  Date:
163
- - Fri, 05 Jun 2015 23:25:39 GMT
163
+ - Tue, 23 Jun 2015 00:59:53 GMT
164
164
  Content-Length:
165
165
  - '41'
166
166
  body:
@@ -168,5 +168,5 @@ http_interactions:
168
168
  string: |
169
169
  No such image: hawknewton/true:not_exist
170
170
  http_version:
171
- recorded_at: Fri, 05 Jun 2015 23:25:39 GMT
171
+ recorded_at: Tue, 23 Jun 2015 00:59:53 GMT
172
172
  recorded_with: VCR 2.9.3
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Fri, 05 Jun 2015 23:25:37 GMT
22
+ - Tue, 23 Jun 2015 00:59:50 GMT
23
23
  body:
24
24
  encoding: UTF-8
25
25
  string: "{\"status\":\"Pulling repository hawknewton/true\"}\r\n{\"status\":\"Pulling
@@ -32,7 +32,7 @@ http_interactions:
32
32
  complete\",\"progressDetail\":{},\"id\":\"5fbce35eb337\"}{\"status\":\"Status:
33
33
  Image is up to date for hawknewton/true\"}\r\n"
34
34
  http_version:
35
- recorded_at: Fri, 05 Jun 2015 23:25:39 GMT
35
+ recorded_at: Tue, 23 Jun 2015 00:59:52 GMT
36
36
  - request:
37
37
  method: post
38
38
  uri: "<DOCKER_HOST>/v1.16/images/5fbce35eb337/tag?repo=image_exists"
@@ -50,7 +50,7 @@ http_interactions:
50
50
  message:
51
51
  headers:
52
52
  Date:
53
- - Fri, 05 Jun 2015 23:25:39 GMT
53
+ - Tue, 23 Jun 2015 00:59:52 GMT
54
54
  Content-Length:
55
55
  - '0'
56
56
  Content-Type:
@@ -59,7 +59,7 @@ http_interactions:
59
59
  encoding: UTF-8
60
60
  string: ''
61
61
  http_version:
62
- recorded_at: Fri, 05 Jun 2015 23:25:39 GMT
62
+ recorded_at: Tue, 23 Jun 2015 00:59:52 GMT
63
63
  - request:
64
64
  method: get
65
65
  uri: "<DOCKER_HOST>/v1.16/images/image_exists/json"
@@ -79,7 +79,7 @@ http_interactions:
79
79
  Content-Type:
80
80
  - application/json
81
81
  Date:
82
- - Fri, 05 Jun 2015 23:25:39 GMT
82
+ - Tue, 23 Jun 2015 00:59:52 GMT
83
83
  Content-Length:
84
84
  - '1507'
85
85
  body:
@@ -87,7 +87,7 @@ http_interactions:
87
87
  string: |
88
88
  {"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","Labels":null,"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","Labels":null,"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}
89
89
  http_version:
90
- recorded_at: Fri, 05 Jun 2015 23:25:39 GMT
90
+ recorded_at: Tue, 23 Jun 2015 00:59:52 GMT
91
91
  - request:
92
92
  method: get
93
93
  uri: "<DOCKER_HOST>/v1.16/images/5fbce35eb337/json"
@@ -107,7 +107,7 @@ http_interactions:
107
107
  Content-Type:
108
108
  - application/json
109
109
  Date:
110
- - Fri, 05 Jun 2015 23:25:39 GMT
110
+ - Tue, 23 Jun 2015 00:59:52 GMT
111
111
  Content-Length:
112
112
  - '1507'
113
113
  body:
@@ -115,7 +115,7 @@ http_interactions:
115
115
  string: |
116
116
  {"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","Labels":null,"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","Labels":null,"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}
117
117
  http_version:
118
- recorded_at: Fri, 05 Jun 2015 23:25:39 GMT
118
+ recorded_at: Tue, 23 Jun 2015 00:59:52 GMT
119
119
  - request:
120
120
  method: delete
121
121
  uri: "<DOCKER_HOST>/v1.16/images/image_exists"
@@ -135,7 +135,7 @@ http_interactions:
135
135
  Content-Type:
136
136
  - application/json
137
137
  Date:
138
- - Fri, 05 Jun 2015 23:25:39 GMT
138
+ - Tue, 23 Jun 2015 00:59:52 GMT
139
139
  Content-Length:
140
140
  - '37'
141
141
  body:
@@ -144,5 +144,5 @@ http_interactions:
144
144
  [{"Untagged":"image_exists:latest"}
145
145
  ]
146
146
  http_version:
147
- recorded_at: Fri, 05 Jun 2015 23:25:39 GMT
147
+ recorded_at: Tue, 23 Jun 2015 00:59:52 GMT
148
148
  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
- - Fri, 05 Jun 2015 23:25:44 GMT
22
+ - Tue, 23 Jun 2015 00:59:57 GMT
23
23
  Content-Length:
24
24
  - '25'
25
25
  body:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  string: |
28
28
  no such id: doesnotexist
29
29
  http_version:
30
- recorded_at: Fri, 05 Jun 2015 23:25:44 GMT
30
+ recorded_at: Tue, 23 Jun 2015 00:59:57 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/containers/doesnotexist/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:44 GMT
50
+ - Tue, 23 Jun 2015 00:59:57 GMT
51
51
  Content-Length:
52
52
  - '25'
53
53
  body:
@@ -55,7 +55,7 @@ http_interactions:
55
55
  string: |
56
56
  no such id: doesnotexist
57
57
  http_version:
58
- recorded_at: Fri, 05 Jun 2015 23:25:44 GMT
58
+ recorded_at: Tue, 23 Jun 2015 00:59:57 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: "<DOCKER_HOST>/v1.16/containers/doesnotexist/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:44 GMT
78
+ - Tue, 23 Jun 2015 00:59:57 GMT
79
79
  Content-Length:
80
80
  - '25'
81
81
  body:
@@ -83,7 +83,7 @@ http_interactions:
83
83
  string: |
84
84
  no such id: doesnotexist
85
85
  http_version:
86
- recorded_at: Fri, 05 Jun 2015 23:25:44 GMT
86
+ recorded_at: Tue, 23 Jun 2015 00:59:57 GMT
87
87
  - request:
88
88
  method: get
89
89
  uri: "<DOCKER_HOST>/v1.16/containers/doesnotexist/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:44 GMT
106
+ - Tue, 23 Jun 2015 00:59:57 GMT
107
107
  Content-Length:
108
108
  - '25'
109
109
  body:
@@ -111,5 +111,5 @@ http_interactions:
111
111
  string: |
112
112
  no such id: doesnotexist
113
113
  http_version:
114
- recorded_at: Fri, 05 Jun 2015 23:25:44 GMT
114
+ recorded_at: Tue, 23 Jun 2015 00:59:57 GMT
115
115
  recorded_with: VCR 2.9.3
@@ -19,12 +19,12 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Fri, 05 Jun 2015 23:25:41 GMT
22
+ - Tue, 23 Jun 2015 00:59:54 GMT
23
23
  body:
24
24
  encoding: UTF-8
25
25
  string: "{\"status\":\"Pulling repository hawknewton/show-env\"}\r\n{\"status\":\"Pulling
26
- image (latest) from hawknewton/show-env\",\"progressDetail\":{},\"id\":\"b9c5be3a918d\"}{\"status\":\"Pulling
27
- image (latest) from hawknewton/show-env, endpoint: https://registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b9c5be3a918d\"}{\"status\":\"Pulling
26
+ image (0.0.1) from hawknewton/show-env\",\"progressDetail\":{},\"id\":\"b9c5be3a918d\"}{\"status\":\"Pulling
27
+ image (0.0.1) from hawknewton/show-env, endpoint: https://registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b9c5be3a918d\"}{\"status\":\"Pulling
28
28
  dependent layers\",\"progressDetail\":{},\"id\":\"b9c5be3a918d\"}{\"status\":\"Download
29
29
  complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
30
30
  complete\",\"progressDetail\":{},\"id\":\"50215b109eda\"}{\"status\":\"Download
@@ -47,7 +47,7 @@ http_interactions:
47
47
  complete\",\"progressDetail\":{},\"id\":\"b9c5be3a918d\"}{\"status\":\"Status:
48
48
  Image is up to date for hawknewton/show-env\"}\r\n"
49
49
  http_version:
50
- recorded_at: Fri, 05 Jun 2015 23:25:44 GMT
50
+ recorded_at: Tue, 23 Jun 2015 00:59:56 GMT
51
51
  - request:
52
52
  method: post
53
53
  uri: "<DOCKER_HOST>/v1.16/containers/create"
@@ -67,18 +67,18 @@ http_interactions:
67
67
  Content-Type:
68
68
  - application/json
69
69
  Date:
70
- - Fri, 05 Jun 2015 23:25:44 GMT
70
+ - Tue, 23 Jun 2015 00:59:57 GMT
71
71
  Content-Length:
72
72
  - '90'
73
73
  body:
74
74
  encoding: UTF-8
75
75
  string: |
76
- {"Id":"3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4","Warnings":null}
76
+ {"Id":"2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90","Warnings":null}
77
77
  http_version:
78
- recorded_at: Fri, 05 Jun 2015 23:25:44 GMT
78
+ recorded_at: Tue, 23 Jun 2015 00:59:57 GMT
79
79
  - request:
80
80
  method: post
81
- uri: "<DOCKER_HOST>/v1.16/containers/3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4/start"
81
+ uri: "<DOCKER_HOST>/v1.16/containers/2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90/start"
82
82
  body:
83
83
  encoding: UTF-8
84
84
  string: "{}"
@@ -93,15 +93,15 @@ http_interactions:
93
93
  message:
94
94
  headers:
95
95
  Date:
96
- - Fri, 05 Jun 2015 23:25:44 GMT
96
+ - Tue, 23 Jun 2015 00:59:57 GMT
97
97
  body:
98
98
  encoding: UTF-8
99
99
  string: ''
100
100
  http_version:
101
- recorded_at: Fri, 05 Jun 2015 23:25:44 GMT
101
+ recorded_at: Tue, 23 Jun 2015 00:59:57 GMT
102
102
  - request:
103
103
  method: get
104
- uri: "<DOCKER_HOST>/v1.16/containers/3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4/json"
104
+ uri: "<DOCKER_HOST>/v1.16/containers/2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90/json"
105
105
  body:
106
106
  encoding: US-ASCII
107
107
  string: ''
@@ -118,16 +118,16 @@ http_interactions:
118
118
  Content-Type:
119
119
  - application/json
120
120
  Date:
121
- - Fri, 05 Jun 2015 23:25:44 GMT
121
+ - Tue, 23 Jun 2015 00:59:57 GMT
122
122
  body:
123
123
  encoding: UTF-8
124
124
  string: |
125
- {"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":["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":"3d5e2488759e","Image":"b9c5be3a918d","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:44.15293929Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4/hosts","Id":"3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4/3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4-json.log","MountLabel":"","Name":"/goofy_elion","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.73","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:149","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:49","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23525,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:25:44.534012891Z"},"Volumes":{},"VolumesRW":{}}
125
+ {"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":["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":"2159f15b7658","Image":"b9c5be3a918d","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:56.969386913Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90/hosts","Id":"2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90/2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90-json.log","MountLabel":"","Name":"/high_goodall","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.98","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:62","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:62","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10138,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T00:59:57.385944343Z"},"Volumes":{},"VolumesRW":{}}
126
126
  http_version:
127
- recorded_at: Fri, 05 Jun 2015 23:25:44 GMT
127
+ recorded_at: Tue, 23 Jun 2015 00:59:57 GMT
128
128
  - request:
129
129
  method: post
130
- uri: "<DOCKER_HOST>/v1.16/containers/3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4/kill"
130
+ uri: "<DOCKER_HOST>/v1.16/containers/2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90/kill"
131
131
  body:
132
132
  encoding: US-ASCII
133
133
  string: ''
@@ -142,15 +142,15 @@ http_interactions:
142
142
  message:
143
143
  headers:
144
144
  Date:
145
- - Fri, 05 Jun 2015 23:25:44 GMT
145
+ - Tue, 23 Jun 2015 00:59:57 GMT
146
146
  body:
147
147
  encoding: UTF-8
148
148
  string: ''
149
149
  http_version:
150
- recorded_at: Fri, 05 Jun 2015 23:25:44 GMT
150
+ recorded_at: Tue, 23 Jun 2015 00:59:57 GMT
151
151
  - request:
152
152
  method: get
153
- uri: "<DOCKER_HOST>/v1.16/containers/3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4/json"
153
+ uri: "<DOCKER_HOST>/v1.16/containers/2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90/json"
154
154
  body:
155
155
  encoding: US-ASCII
156
156
  string: ''
@@ -167,16 +167,16 @@ http_interactions:
167
167
  Content-Type:
168
168
  - application/json
169
169
  Date:
170
- - Fri, 05 Jun 2015 23:25:44 GMT
170
+ - Tue, 23 Jun 2015 00:59:57 GMT
171
171
  body:
172
172
  encoding: UTF-8
173
173
  string: |
174
- {"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":["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":"3d5e2488759e","Image":"b9c5be3a918d","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:44.15293929Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4/hosts","Id":"3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4/3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4-json.log","MountLabel":"","Name":"/goofy_elion","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:25:44.724040028Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:25:44.534012891Z"},"Volumes":{},"VolumesRW":{}}
174
+ {"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":["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":"2159f15b7658","Image":"b9c5be3a918d","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:56.969386913Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90/hosts","Id":"2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90/2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90-json.log","MountLabel":"","Name":"/high_goodall","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-23T00:59:57.61869466Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-23T00:59:57.385944343Z"},"Volumes":{},"VolumesRW":{}}
175
175
  http_version:
176
- recorded_at: Fri, 05 Jun 2015 23:25:44 GMT
176
+ recorded_at: Tue, 23 Jun 2015 00:59:57 GMT
177
177
  - request:
178
178
  method: delete
179
- uri: "<DOCKER_HOST>/v1.16/containers/3d5e2488759ec89d8e174784e3e02baf0675b31a972e82038a9fedcc3d7fa4b4?force=true"
179
+ uri: "<DOCKER_HOST>/v1.16/containers/2159f15b76581faa26557624ba255f0731b471fdc79ecdfc5cdf345bc3727d90?force=true"
180
180
  body:
181
181
  encoding: US-ASCII
182
182
  string: ''
@@ -191,10 +191,10 @@ http_interactions:
191
191
  message:
192
192
  headers:
193
193
  Date:
194
- - Fri, 05 Jun 2015 23:25:44 GMT
194
+ - Tue, 23 Jun 2015 00:59:57 GMT
195
195
  body:
196
196
  encoding: UTF-8
197
197
  string: ''
198
198
  http_version:
199
- recorded_at: Fri, 05 Jun 2015 23:25:44 GMT
199
+ recorded_at: Tue, 23 Jun 2015 00:59:57 GMT
200
200
  recorded_with: VCR 2.9.3