bigrig 0.4.2 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/Gemfile.lock +24 -26
  4. data/bigrig.gemspec +2 -2
  5. data/lib/bigrig/models/container.rb +2 -2
  6. data/lib/bigrig/runner.rb +2 -10
  7. data/lib/bigrig/version.rb +1 -1
  8. data/lib/bigrig/waiter.rb +20 -0
  9. data/lib/bigrig.rb +1 -0
  10. data/spec/bigrig/actions/run_action_spec.rb +8 -0
  11. data/spec/bigrig/docker_adapter_spec.rb +1 -1
  12. data/spec/bigrig/models/container_spec.rb +0 -18
  13. data/spec/bigrig_spec.rb +20 -6
  14. data/spec/data/wait_for/Dockerfile +4 -0
  15. data/spec/data/wait_for/bigrig-wait.sh +5 -0
  16. data/spec/data/wait_for/bigrig.json +8 -0
  17. data/spec/data/wait_for_broken/Dockerfile +4 -0
  18. data/spec/data/wait_for_broken/bigrig-wait.sh +3 -0
  19. data/spec/data/wait_for_broken/bigrig.json +8 -0
  20. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +65 -65
  21. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +71 -71
  22. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +11 -11
  23. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +5 -5
  24. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +20 -20
  25. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +13 -13
  26. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +20 -20
  27. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +19 -19
  28. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +20 -20
  29. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +29 -29
  30. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +23 -23
  31. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +8 -8
  32. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +3 -3
  33. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +13 -13
  34. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +54 -54
  35. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +1059 -553
  36. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +40 -40
  37. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +44 -44
  38. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +13 -13
  39. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +12 -12
  40. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +35 -35
  41. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +35 -35
  42. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_env_variables/starts_the_container_with_env_set.yml +35 -35
  43. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +41 -41
  44. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +20 -20
  45. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +13 -15
  46. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +17 -17
  47. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +34 -34
  48. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +43 -43
  49. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +222 -26
  50. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +180 -74
  51. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +181 -75
  52. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +351 -139
  53. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +130 -130
  54. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +140 -140
  55. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +175 -69
  56. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +159 -53
  57. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes/should_pass_volumes_to_the_right_container.yml +180 -74
  58. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +351 -139
  59. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +130 -130
  60. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +268 -77
  61. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +180 -74
  62. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +28 -28
  63. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +266 -158
  64. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +78 -158
  65. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +187 -191
  66. data/spec/vcr/bigrig/dev/spec/data/dev_json/tails_the_logs.yml +38 -118
  67. data/spec/vcr/bigrig/dev/spec/data/scan_json/leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +811 -345
  68. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_dependant_containers_when_the_scanned_file_changes.yml +813 -375
  69. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_the_container_when_the_scanned_file_changes.yml +855 -363
  70. data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +23 -23
  71. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +14 -14
  72. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +14 -14
  73. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +17 -17
  74. data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +12 -12
  75. data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +17 -17
  76. data/spec/vcr/bigrig/run/spec/data/wait_for/bigrig_json/waits_for_wait_for.yml +180 -0
  77. data/spec/vcr/bigrig/run/spec/data/wait_for_broken_json/fails_with_an_error.yml +12 -12
  78. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +28 -28
  79. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +21 -21
  80. data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +28 -28
  81. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +135 -486
  82. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +146 -472
  83. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +402 -192
  84. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +980 -396
  85. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_dependant_containers_when_the_scanned_file_changes.yml +916 -388
  86. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_the_container_when_the_scanned_file_changes.yml +919 -391
  87. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +23 -23
  88. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +159 -53
  89. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +159 -53
  90. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +286 -31
  91. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +159 -53
  92. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +159 -53
  93. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for/bigrig_json_waits_for_wait_for.yml +522 -0
  94. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for_broken_json_fails_with_an_error.yml +175 -80
  95. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +1036 -526
  96. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +1024 -514
  97. metadata +17 -12
  98. data/spec/data/wait_for.json +0 -9
  99. data/spec/data/wait_for_broken.json +0 -9
  100. data/spec/vcr/bigrig/run/spec/data/wait_for_json/waits_for_wait_for.yml +0 -180
  101. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for_json_waits_for_wait_for.yml +0 -412
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.20.0
11
+ - Swipely/Docker-API 1.21.4
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -19,15 +19,15 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Mon, 20 Apr 2015 23:27:56 GMT
22
+ - Fri, 05 Jun 2015 23:25:16 GMT
23
23
  Content-Length:
24
- - '1859'
24
+ - '1887'
25
25
  body:
26
26
  encoding: UTF-8
27
27
  string: |
28
- {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"d6d34d2bfd452f4175eab78597ddd29856f0af494d503b00f4160d5eb3f13f1b","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ENTRYPOINT [/bin/sh -c ruby /code/server.rb]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-10-23T20:00:42.057514693Z","DockerVersion":"1.3.0","Id":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Os":"linux","Parent":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Size":0,"VirtualSize":801041825}
28
+ {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"d6d34d2bfd452f4175eab78597ddd29856f0af494d503b00f4160d5eb3f13f1b","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ENTRYPOINT [/bin/sh -c ruby /code/server.rb]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-10-23T20:00:42.057514693Z","DockerVersion":"1.3.0","Id":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Os":"linux","Parent":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Size":0,"VirtualSize":801041825}
29
29
  http_version:
30
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
30
+ recorded_at: Fri, 05 Jun 2015 23:25:16 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/images/hawknewton/show-env:0.0.1/json"
@@ -36,7 +36,7 @@ http_interactions:
36
36
  string: ''
37
37
  headers:
38
38
  User-Agent:
39
- - Swipely/Docker-API 1.20.0
39
+ - Swipely/Docker-API 1.21.4
40
40
  Content-Type:
41
41
  - text/plain
42
42
  response:
@@ -47,15 +47,15 @@ http_interactions:
47
47
  Content-Type:
48
48
  - application/json
49
49
  Date:
50
- - Mon, 20 Apr 2015 23:27:56 GMT
50
+ - Fri, 05 Jun 2015 23:25:16 GMT
51
51
  Content-Length:
52
- - '1859'
52
+ - '1887'
53
53
  body:
54
54
  encoding: UTF-8
55
55
  string: |
56
- {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"d6d34d2bfd452f4175eab78597ddd29856f0af494d503b00f4160d5eb3f13f1b","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ENTRYPOINT [/bin/sh -c ruby /code/server.rb]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-10-23T20:00:42.057514693Z","DockerVersion":"1.3.0","Id":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Os":"linux","Parent":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Size":0,"VirtualSize":801041825}
56
+ {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"d6d34d2bfd452f4175eab78597ddd29856f0af494d503b00f4160d5eb3f13f1b","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ENTRYPOINT [/bin/sh -c ruby /code/server.rb]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-10-23T20:00:42.057514693Z","DockerVersion":"1.3.0","Id":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Os":"linux","Parent":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Size":0,"VirtualSize":801041825}
57
57
  http_version:
58
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
58
+ recorded_at: Fri, 05 Jun 2015 23:25:16 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test1/json"
@@ -64,7 +64,7 @@ http_interactions:
64
64
  string: ''
65
65
  headers:
66
66
  User-Agent:
67
- - Swipely/Docker-API 1.20.0
67
+ - Swipely/Docker-API 1.21.4
68
68
  Content-Type:
69
69
  - text/plain
70
70
  response:
@@ -75,15 +75,15 @@ http_interactions:
75
75
  Content-Type:
76
76
  - text/plain; charset=utf-8
77
77
  Date:
78
- - Mon, 20 Apr 2015 23:27:56 GMT
78
+ - Fri, 05 Jun 2015 23:25:16 GMT
79
79
  Content-Length:
80
- - '34'
80
+ - '27'
81
81
  body:
82
82
  encoding: UTF-8
83
83
  string: |
84
- No such container: multiple-test1
84
+ no such id: multiple-test1
85
85
  http_version:
86
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
86
+ recorded_at: Fri, 05 Jun 2015 23:25:16 GMT
87
87
  - request:
88
88
  method: get
89
89
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test1/json"
@@ -92,7 +92,7 @@ http_interactions:
92
92
  string: ''
93
93
  headers:
94
94
  User-Agent:
95
- - Swipely/Docker-API 1.20.0
95
+ - Swipely/Docker-API 1.21.4
96
96
  Content-Type:
97
97
  - text/plain
98
98
  response:
@@ -103,15 +103,15 @@ http_interactions:
103
103
  Content-Type:
104
104
  - text/plain; charset=utf-8
105
105
  Date:
106
- - Mon, 20 Apr 2015 23:27:56 GMT
106
+ - Fri, 05 Jun 2015 23:25:16 GMT
107
107
  Content-Length:
108
- - '34'
108
+ - '27'
109
109
  body:
110
110
  encoding: UTF-8
111
111
  string: |
112
- No such container: multiple-test1
112
+ no such id: multiple-test1
113
113
  http_version:
114
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
114
+ recorded_at: Fri, 05 Jun 2015 23:25:16 GMT
115
115
  - request:
116
116
  method: get
117
117
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test1/json"
@@ -120,7 +120,7 @@ http_interactions:
120
120
  string: ''
121
121
  headers:
122
122
  User-Agent:
123
- - Swipely/Docker-API 1.20.0
123
+ - Swipely/Docker-API 1.21.4
124
124
  Content-Type:
125
125
  - text/plain
126
126
  response:
@@ -131,15 +131,15 @@ http_interactions:
131
131
  Content-Type:
132
132
  - text/plain; charset=utf-8
133
133
  Date:
134
- - Mon, 20 Apr 2015 23:27:56 GMT
134
+ - Fri, 05 Jun 2015 23:25:16 GMT
135
135
  Content-Length:
136
- - '34'
136
+ - '27'
137
137
  body:
138
138
  encoding: UTF-8
139
139
  string: |
140
- No such container: multiple-test1
140
+ no such id: multiple-test1
141
141
  http_version:
142
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
142
+ recorded_at: Fri, 05 Jun 2015 23:25:16 GMT
143
143
  - request:
144
144
  method: get
145
145
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test1/json"
@@ -148,7 +148,7 @@ http_interactions:
148
148
  string: ''
149
149
  headers:
150
150
  User-Agent:
151
- - Swipely/Docker-API 1.20.0
151
+ - Swipely/Docker-API 1.21.4
152
152
  Content-Type:
153
153
  - text/plain
154
154
  response:
@@ -159,15 +159,15 @@ http_interactions:
159
159
  Content-Type:
160
160
  - text/plain; charset=utf-8
161
161
  Date:
162
- - Mon, 20 Apr 2015 23:27:56 GMT
162
+ - Fri, 05 Jun 2015 23:25:16 GMT
163
163
  Content-Length:
164
- - '34'
164
+ - '27'
165
165
  body:
166
166
  encoding: UTF-8
167
167
  string: |
168
- No such container: multiple-test1
168
+ no such id: multiple-test1
169
169
  http_version:
170
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
170
+ recorded_at: Fri, 05 Jun 2015 23:25:16 GMT
171
171
  - request:
172
172
  method: get
173
173
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test1/json"
@@ -176,7 +176,7 @@ http_interactions:
176
176
  string: ''
177
177
  headers:
178
178
  User-Agent:
179
- - Swipely/Docker-API 1.20.0
179
+ - Swipely/Docker-API 1.21.4
180
180
  Content-Type:
181
181
  - text/plain
182
182
  response:
@@ -187,15 +187,15 @@ http_interactions:
187
187
  Content-Type:
188
188
  - text/plain; charset=utf-8
189
189
  Date:
190
- - Mon, 20 Apr 2015 23:27:56 GMT
190
+ - Fri, 05 Jun 2015 23:25:16 GMT
191
191
  Content-Length:
192
- - '34'
192
+ - '27'
193
193
  body:
194
194
  encoding: UTF-8
195
195
  string: |
196
- No such container: multiple-test1
196
+ no such id: multiple-test1
197
197
  http_version:
198
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
198
+ recorded_at: Fri, 05 Jun 2015 23:25:16 GMT
199
199
  - request:
200
200
  method: get
201
201
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test1/json"
@@ -204,7 +204,7 @@ http_interactions:
204
204
  string: ''
205
205
  headers:
206
206
  User-Agent:
207
- - Swipely/Docker-API 1.20.0
207
+ - Swipely/Docker-API 1.21.4
208
208
  Content-Type:
209
209
  - text/plain
210
210
  response:
@@ -215,15 +215,15 @@ http_interactions:
215
215
  Content-Type:
216
216
  - text/plain; charset=utf-8
217
217
  Date:
218
- - Mon, 20 Apr 2015 23:27:56 GMT
218
+ - Fri, 05 Jun 2015 23:25:16 GMT
219
219
  Content-Length:
220
- - '34'
220
+ - '27'
221
221
  body:
222
222
  encoding: UTF-8
223
223
  string: |
224
- No such container: multiple-test1
224
+ no such id: multiple-test1
225
225
  http_version:
226
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
226
+ recorded_at: Fri, 05 Jun 2015 23:25:16 GMT
227
227
  - request:
228
228
  method: get
229
229
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test1/json"
@@ -232,7 +232,7 @@ http_interactions:
232
232
  string: ''
233
233
  headers:
234
234
  User-Agent:
235
- - Swipely/Docker-API 1.20.0
235
+ - Swipely/Docker-API 1.21.4
236
236
  Content-Type:
237
237
  - text/plain
238
238
  response:
@@ -243,15 +243,15 @@ http_interactions:
243
243
  Content-Type:
244
244
  - text/plain; charset=utf-8
245
245
  Date:
246
- - Mon, 20 Apr 2015 23:27:56 GMT
246
+ - Fri, 05 Jun 2015 23:25:16 GMT
247
247
  Content-Length:
248
- - '34'
248
+ - '27'
249
249
  body:
250
250
  encoding: UTF-8
251
251
  string: |
252
- No such container: multiple-test1
252
+ no such id: multiple-test1
253
253
  http_version:
254
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
254
+ recorded_at: Fri, 05 Jun 2015 23:25:16 GMT
255
255
  - request:
256
256
  method: get
257
257
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test1/json"
@@ -260,7 +260,7 @@ http_interactions:
260
260
  string: ''
261
261
  headers:
262
262
  User-Agent:
263
- - Swipely/Docker-API 1.20.0
263
+ - Swipely/Docker-API 1.21.4
264
264
  Content-Type:
265
265
  - text/plain
266
266
  response:
@@ -271,15 +271,15 @@ http_interactions:
271
271
  Content-Type:
272
272
  - text/plain; charset=utf-8
273
273
  Date:
274
- - Mon, 20 Apr 2015 23:27:56 GMT
274
+ - Fri, 05 Jun 2015 23:25:16 GMT
275
275
  Content-Length:
276
- - '34'
276
+ - '27'
277
277
  body:
278
278
  encoding: UTF-8
279
279
  string: |
280
- No such container: multiple-test1
280
+ no such id: multiple-test1
281
281
  http_version:
282
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
282
+ recorded_at: Fri, 05 Jun 2015 23:25:16 GMT
283
283
  - request:
284
284
  method: get
285
285
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test2/json"
@@ -288,7 +288,7 @@ http_interactions:
288
288
  string: ''
289
289
  headers:
290
290
  User-Agent:
291
- - Swipely/Docker-API 1.20.0
291
+ - Swipely/Docker-API 1.21.4
292
292
  Content-Type:
293
293
  - text/plain
294
294
  response:
@@ -299,15 +299,15 @@ http_interactions:
299
299
  Content-Type:
300
300
  - text/plain; charset=utf-8
301
301
  Date:
302
- - Mon, 20 Apr 2015 23:27:56 GMT
302
+ - Fri, 05 Jun 2015 23:25:16 GMT
303
303
  Content-Length:
304
- - '34'
304
+ - '27'
305
305
  body:
306
306
  encoding: UTF-8
307
307
  string: |
308
- No such container: multiple-test2
308
+ no such id: multiple-test2
309
309
  http_version:
310
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
310
+ recorded_at: Fri, 05 Jun 2015 23:25:16 GMT
311
311
  - request:
312
312
  method: get
313
313
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test2/json"
@@ -316,7 +316,7 @@ http_interactions:
316
316
  string: ''
317
317
  headers:
318
318
  User-Agent:
319
- - Swipely/Docker-API 1.20.0
319
+ - Swipely/Docker-API 1.21.4
320
320
  Content-Type:
321
321
  - text/plain
322
322
  response:
@@ -327,15 +327,15 @@ http_interactions:
327
327
  Content-Type:
328
328
  - text/plain; charset=utf-8
329
329
  Date:
330
- - Mon, 20 Apr 2015 23:27:56 GMT
330
+ - Fri, 05 Jun 2015 23:25:16 GMT
331
331
  Content-Length:
332
- - '34'
332
+ - '27'
333
333
  body:
334
334
  encoding: UTF-8
335
335
  string: |
336
- No such container: multiple-test2
336
+ no such id: multiple-test2
337
337
  http_version:
338
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
338
+ recorded_at: Fri, 05 Jun 2015 23:25:16 GMT
339
339
  - request:
340
340
  method: get
341
341
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test2/json"
@@ -344,7 +344,7 @@ http_interactions:
344
344
  string: ''
345
345
  headers:
346
346
  User-Agent:
347
- - Swipely/Docker-API 1.20.0
347
+ - Swipely/Docker-API 1.21.4
348
348
  Content-Type:
349
349
  - text/plain
350
350
  response:
@@ -355,15 +355,15 @@ http_interactions:
355
355
  Content-Type:
356
356
  - text/plain; charset=utf-8
357
357
  Date:
358
- - Mon, 20 Apr 2015 23:27:56 GMT
358
+ - Fri, 05 Jun 2015 23:25:16 GMT
359
359
  Content-Length:
360
- - '34'
360
+ - '27'
361
361
  body:
362
362
  encoding: UTF-8
363
363
  string: |
364
- No such container: multiple-test2
364
+ no such id: multiple-test2
365
365
  http_version:
366
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
366
+ recorded_at: Fri, 05 Jun 2015 23:25:17 GMT
367
367
  - request:
368
368
  method: get
369
369
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test2/json"
@@ -372,7 +372,7 @@ http_interactions:
372
372
  string: ''
373
373
  headers:
374
374
  User-Agent:
375
- - Swipely/Docker-API 1.20.0
375
+ - Swipely/Docker-API 1.21.4
376
376
  Content-Type:
377
377
  - text/plain
378
378
  response:
@@ -383,15 +383,15 @@ http_interactions:
383
383
  Content-Type:
384
384
  - text/plain; charset=utf-8
385
385
  Date:
386
- - Mon, 20 Apr 2015 23:27:56 GMT
386
+ - Fri, 05 Jun 2015 23:25:17 GMT
387
387
  Content-Length:
388
- - '34'
388
+ - '27'
389
389
  body:
390
390
  encoding: UTF-8
391
391
  string: |
392
- No such container: multiple-test2
392
+ no such id: multiple-test2
393
393
  http_version:
394
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
394
+ recorded_at: Fri, 05 Jun 2015 23:25:17 GMT
395
395
  - request:
396
396
  method: get
397
397
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test2/json"
@@ -400,7 +400,7 @@ http_interactions:
400
400
  string: ''
401
401
  headers:
402
402
  User-Agent:
403
- - Swipely/Docker-API 1.20.0
403
+ - Swipely/Docker-API 1.21.4
404
404
  Content-Type:
405
405
  - text/plain
406
406
  response:
@@ -411,15 +411,15 @@ http_interactions:
411
411
  Content-Type:
412
412
  - text/plain; charset=utf-8
413
413
  Date:
414
- - Mon, 20 Apr 2015 23:27:56 GMT
414
+ - Fri, 05 Jun 2015 23:25:17 GMT
415
415
  Content-Length:
416
- - '34'
416
+ - '27'
417
417
  body:
418
418
  encoding: UTF-8
419
419
  string: |
420
- No such container: multiple-test2
420
+ no such id: multiple-test2
421
421
  http_version:
422
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
422
+ recorded_at: Fri, 05 Jun 2015 23:25:17 GMT
423
423
  - request:
424
424
  method: get
425
425
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test2/json"
@@ -428,7 +428,7 @@ http_interactions:
428
428
  string: ''
429
429
  headers:
430
430
  User-Agent:
431
- - Swipely/Docker-API 1.20.0
431
+ - Swipely/Docker-API 1.21.4
432
432
  Content-Type:
433
433
  - text/plain
434
434
  response:
@@ -439,15 +439,15 @@ http_interactions:
439
439
  Content-Type:
440
440
  - text/plain; charset=utf-8
441
441
  Date:
442
- - Mon, 20 Apr 2015 23:27:57 GMT
442
+ - Fri, 05 Jun 2015 23:25:17 GMT
443
443
  Content-Length:
444
- - '34'
444
+ - '27'
445
445
  body:
446
446
  encoding: UTF-8
447
447
  string: |
448
- No such container: multiple-test2
448
+ no such id: multiple-test2
449
449
  http_version:
450
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
450
+ recorded_at: Fri, 05 Jun 2015 23:25:17 GMT
451
451
  - request:
452
452
  method: get
453
453
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test2/json"
@@ -456,7 +456,7 @@ http_interactions:
456
456
  string: ''
457
457
  headers:
458
458
  User-Agent:
459
- - Swipely/Docker-API 1.20.0
459
+ - Swipely/Docker-API 1.21.4
460
460
  Content-Type:
461
461
  - text/plain
462
462
  response:
@@ -467,15 +467,15 @@ http_interactions:
467
467
  Content-Type:
468
468
  - text/plain; charset=utf-8
469
469
  Date:
470
- - Mon, 20 Apr 2015 23:27:57 GMT
470
+ - Fri, 05 Jun 2015 23:25:17 GMT
471
471
  Content-Length:
472
- - '34'
472
+ - '27'
473
473
  body:
474
474
  encoding: UTF-8
475
475
  string: |
476
- No such container: multiple-test2
476
+ no such id: multiple-test2
477
477
  http_version:
478
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
478
+ recorded_at: Fri, 05 Jun 2015 23:25:17 GMT
479
479
  - request:
480
480
  method: get
481
481
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test2/json"
@@ -484,7 +484,7 @@ http_interactions:
484
484
  string: ''
485
485
  headers:
486
486
  User-Agent:
487
- - Swipely/Docker-API 1.20.0
487
+ - Swipely/Docker-API 1.21.4
488
488
  Content-Type:
489
489
  - text/plain
490
490
  response:
@@ -495,15 +495,15 @@ http_interactions:
495
495
  Content-Type:
496
496
  - text/plain; charset=utf-8
497
497
  Date:
498
- - Mon, 20 Apr 2015 23:27:57 GMT
498
+ - Fri, 05 Jun 2015 23:25:17 GMT
499
499
  Content-Length:
500
- - '34'
500
+ - '27'
501
501
  body:
502
502
  encoding: UTF-8
503
503
  string: |
504
- No such container: multiple-test2
504
+ no such id: multiple-test2
505
505
  http_version:
506
- recorded_at: Mon, 20 Apr 2015 23:27:56 GMT
506
+ recorded_at: Fri, 05 Jun 2015 23:25:17 GMT
507
507
  - request:
508
508
  method: get
509
509
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test1/json"
@@ -512,7 +512,7 @@ http_interactions:
512
512
  string: ''
513
513
  headers:
514
514
  User-Agent:
515
- - Swipely/Docker-API 1.20.0
515
+ - Swipely/Docker-API 1.21.4
516
516
  Content-Type:
517
517
  - text/plain
518
518
  response:
@@ -523,15 +523,15 @@ http_interactions:
523
523
  Content-Type:
524
524
  - text/plain; charset=utf-8
525
525
  Date:
526
- - Mon, 20 Apr 2015 23:27:58 GMT
526
+ - Fri, 05 Jun 2015 23:25:18 GMT
527
527
  Content-Length:
528
- - '34'
528
+ - '27'
529
529
  body:
530
530
  encoding: UTF-8
531
531
  string: |
532
- No such container: multiple-test1
532
+ no such id: multiple-test1
533
533
  http_version:
534
- recorded_at: Mon, 20 Apr 2015 23:27:57 GMT
534
+ recorded_at: Fri, 05 Jun 2015 23:25:18 GMT
535
535
  - request:
536
536
  method: get
537
537
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test1/json"
@@ -540,7 +540,7 @@ http_interactions:
540
540
  string: ''
541
541
  headers:
542
542
  User-Agent:
543
- - Swipely/Docker-API 1.20.0
543
+ - Swipely/Docker-API 1.21.4
544
544
  Content-Type:
545
545
  - text/plain
546
546
  response:
@@ -551,15 +551,15 @@ http_interactions:
551
551
  Content-Type:
552
552
  - text/plain; charset=utf-8
553
553
  Date:
554
- - Mon, 20 Apr 2015 23:27:58 GMT
554
+ - Fri, 05 Jun 2015 23:25:18 GMT
555
555
  Content-Length:
556
- - '34'
556
+ - '27'
557
557
  body:
558
558
  encoding: UTF-8
559
559
  string: |
560
- No such container: multiple-test1
560
+ no such id: multiple-test1
561
561
  http_version:
562
- recorded_at: Mon, 20 Apr 2015 23:27:57 GMT
562
+ recorded_at: Fri, 05 Jun 2015 23:25:18 GMT
563
563
  - request:
564
564
  method: get
565
565
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test1/json"
@@ -568,7 +568,7 @@ http_interactions:
568
568
  string: ''
569
569
  headers:
570
570
  User-Agent:
571
- - Swipely/Docker-API 1.20.0
571
+ - Swipely/Docker-API 1.21.4
572
572
  Content-Type:
573
573
  - text/plain
574
574
  response:
@@ -579,15 +579,15 @@ http_interactions:
579
579
  Content-Type:
580
580
  - text/plain; charset=utf-8
581
581
  Date:
582
- - Mon, 20 Apr 2015 23:27:58 GMT
582
+ - Fri, 05 Jun 2015 23:25:18 GMT
583
583
  Content-Length:
584
- - '34'
584
+ - '27'
585
585
  body:
586
586
  encoding: UTF-8
587
587
  string: |
588
- No such container: multiple-test1
588
+ no such id: multiple-test1
589
589
  http_version:
590
- recorded_at: Mon, 20 Apr 2015 23:27:58 GMT
590
+ recorded_at: Fri, 05 Jun 2015 23:25:18 GMT
591
591
  - request:
592
592
  method: get
593
593
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test1/json"
@@ -596,7 +596,7 @@ http_interactions:
596
596
  string: ''
597
597
  headers:
598
598
  User-Agent:
599
- - Swipely/Docker-API 1.20.0
599
+ - Swipely/Docker-API 1.21.4
600
600
  Content-Type:
601
601
  - text/plain
602
602
  response:
@@ -607,15 +607,15 @@ http_interactions:
607
607
  Content-Type:
608
608
  - text/plain; charset=utf-8
609
609
  Date:
610
- - Mon, 20 Apr 2015 23:27:58 GMT
610
+ - Fri, 05 Jun 2015 23:25:18 GMT
611
611
  Content-Length:
612
- - '34'
612
+ - '27'
613
613
  body:
614
614
  encoding: UTF-8
615
615
  string: |
616
- No such container: multiple-test1
616
+ no such id: multiple-test1
617
617
  http_version:
618
- recorded_at: Mon, 20 Apr 2015 23:27:58 GMT
618
+ recorded_at: Fri, 05 Jun 2015 23:25:18 GMT
619
619
  - request:
620
620
  method: get
621
621
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test2/json"
@@ -624,7 +624,7 @@ http_interactions:
624
624
  string: ''
625
625
  headers:
626
626
  User-Agent:
627
- - Swipely/Docker-API 1.20.0
627
+ - Swipely/Docker-API 1.21.4
628
628
  Content-Type:
629
629
  - text/plain
630
630
  response:
@@ -635,15 +635,15 @@ http_interactions:
635
635
  Content-Type:
636
636
  - text/plain; charset=utf-8
637
637
  Date:
638
- - Mon, 20 Apr 2015 23:27:58 GMT
638
+ - Fri, 05 Jun 2015 23:25:18 GMT
639
639
  Content-Length:
640
- - '34'
640
+ - '27'
641
641
  body:
642
642
  encoding: UTF-8
643
643
  string: |
644
- No such container: multiple-test2
644
+ no such id: multiple-test2
645
645
  http_version:
646
- recorded_at: Mon, 20 Apr 2015 23:27:58 GMT
646
+ recorded_at: Fri, 05 Jun 2015 23:25:18 GMT
647
647
  - request:
648
648
  method: get
649
649
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test2/json"
@@ -652,7 +652,7 @@ http_interactions:
652
652
  string: ''
653
653
  headers:
654
654
  User-Agent:
655
- - Swipely/Docker-API 1.20.0
655
+ - Swipely/Docker-API 1.21.4
656
656
  Content-Type:
657
657
  - text/plain
658
658
  response:
@@ -663,15 +663,15 @@ http_interactions:
663
663
  Content-Type:
664
664
  - text/plain; charset=utf-8
665
665
  Date:
666
- - Mon, 20 Apr 2015 23:27:58 GMT
666
+ - Fri, 05 Jun 2015 23:25:18 GMT
667
667
  Content-Length:
668
- - '34'
668
+ - '27'
669
669
  body:
670
670
  encoding: UTF-8
671
671
  string: |
672
- No such container: multiple-test2
672
+ no such id: multiple-test2
673
673
  http_version:
674
- recorded_at: Mon, 20 Apr 2015 23:27:58 GMT
674
+ recorded_at: Fri, 05 Jun 2015 23:25:18 GMT
675
675
  - request:
676
676
  method: get
677
677
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test2/json"
@@ -680,7 +680,7 @@ http_interactions:
680
680
  string: ''
681
681
  headers:
682
682
  User-Agent:
683
- - Swipely/Docker-API 1.20.0
683
+ - Swipely/Docker-API 1.21.4
684
684
  Content-Type:
685
685
  - text/plain
686
686
  response:
@@ -691,15 +691,15 @@ http_interactions:
691
691
  Content-Type:
692
692
  - text/plain; charset=utf-8
693
693
  Date:
694
- - Mon, 20 Apr 2015 23:27:58 GMT
694
+ - Fri, 05 Jun 2015 23:25:18 GMT
695
695
  Content-Length:
696
- - '34'
696
+ - '27'
697
697
  body:
698
698
  encoding: UTF-8
699
699
  string: |
700
- No such container: multiple-test2
700
+ no such id: multiple-test2
701
701
  http_version:
702
- recorded_at: Mon, 20 Apr 2015 23:27:58 GMT
702
+ recorded_at: Fri, 05 Jun 2015 23:25:18 GMT
703
703
  - request:
704
704
  method: get
705
705
  uri: "<DOCKER_HOST>/v1.16/containers/multiple-test2/json"
@@ -708,7 +708,7 @@ http_interactions:
708
708
  string: ''
709
709
  headers:
710
710
  User-Agent:
711
- - Swipely/Docker-API 1.20.0
711
+ - Swipely/Docker-API 1.21.4
712
712
  Content-Type:
713
713
  - text/plain
714
714
  response:
@@ -719,13 +719,13 @@ http_interactions:
719
719
  Content-Type:
720
720
  - text/plain; charset=utf-8
721
721
  Date:
722
- - Mon, 20 Apr 2015 23:27:58 GMT
722
+ - Fri, 05 Jun 2015 23:25:18 GMT
723
723
  Content-Length:
724
- - '34'
724
+ - '27'
725
725
  body:
726
726
  encoding: UTF-8
727
727
  string: |
728
- No such container: multiple-test2
728
+ no such id: multiple-test2
729
729
  http_version:
730
- recorded_at: Mon, 20 Apr 2015 23:27:58 GMT
730
+ recorded_at: Fri, 05 Jun 2015 23:25:18 GMT
731
731
  recorded_with: VCR 2.9.3