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:31 GMT
22
+ - Fri, 05 Jun 2015 23:27:06 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:30 GMT
30
+ recorded_at: Fri, 05 Jun 2015 23:27:06 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/images/hawknewton/log-test: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:31 GMT
50
+ - Fri, 05 Jun 2015 23:27:06 GMT
51
51
  Content-Length:
52
- - '1493'
52
+ - '1521'
53
53
  body:
54
54
  encoding: UTF-8
55
55
  string: |
56
- {"Architecture":"amd64","Author":"","Comment":"","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":"71e72940b4dd","Image":"c507982f836db18913f4a5c7c7a174617c40da13cb0797cf4481220b906f59ff","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"13fbda9e12ada74a75b684aa44fbecc55acb529370b161d02dcb66fa7c612911","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) 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":"71e72940b4dd","Image":"c507982f836db18913f4a5c7c7a174617c40da13cb0797cf4481220b906f59ff","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-02-10T13:06:13.014751129Z","DockerVersion":"1.3.0","Id":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Os":"linux","Parent":"c507982f836db18913f4a5c7c7a174617c40da13cb0797cf4481220b906f59ff","Size":0,"VirtualSize":117030274}
56
+ {"Architecture":"amd64","Author":"","Comment":"","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":"71e72940b4dd","Image":"c507982f836db18913f4a5c7c7a174617c40da13cb0797cf4481220b906f59ff","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"13fbda9e12ada74a75b684aa44fbecc55acb529370b161d02dcb66fa7c612911","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) 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":"71e72940b4dd","Image":"c507982f836db18913f4a5c7c7a174617c40da13cb0797cf4481220b906f59ff","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-02-10T13:06:13.014751129Z","DockerVersion":"1.3.0","Id":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","Os":"linux","Parent":"c507982f836db18913f4a5c7c7a174617c40da13cb0797cf4481220b906f59ff","Size":0,"VirtualSize":117030274}
57
57
  http_version:
58
- recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
58
+ recorded_at: Fri, 05 Jun 2015 23:27:06 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/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:31 GMT
78
+ - Fri, 05 Jun 2015 23:27:06 GMT
79
79
  Content-Length:
80
- - '28'
80
+ - '21'
81
81
  body:
82
82
  encoding: UTF-8
83
83
  string: |
84
- No such container: dev-test
84
+ no such id: dev-test
85
85
  http_version:
86
- recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
86
+ recorded_at: Fri, 05 Jun 2015 23:27:06 GMT
87
87
  - request:
88
88
  method: get
89
89
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/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:31 GMT
106
+ - Fri, 05 Jun 2015 23:27:06 GMT
107
107
  Content-Length:
108
- - '28'
108
+ - '21'
109
109
  body:
110
110
  encoding: UTF-8
111
111
  string: |
112
- No such container: dev-test
112
+ no such id: dev-test
113
113
  http_version:
114
- recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
114
+ recorded_at: Fri, 05 Jun 2015 23:27:06 GMT
115
115
  - request:
116
116
  method: get
117
117
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/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:31 GMT
134
+ - Fri, 05 Jun 2015 23:27:06 GMT
135
135
  Content-Length:
136
- - '28'
136
+ - '21'
137
137
  body:
138
138
  encoding: UTF-8
139
139
  string: |
140
- No such container: dev-test
140
+ no such id: dev-test
141
141
  http_version:
142
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
142
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
143
143
  - request:
144
144
  method: get
145
145
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/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:31 GMT
162
+ - Fri, 05 Jun 2015 23:27:07 GMT
163
163
  Content-Length:
164
- - '28'
164
+ - '21'
165
165
  body:
166
166
  encoding: UTF-8
167
167
  string: |
168
- No such container: dev-test
168
+ no such id: dev-test
169
169
  http_version:
170
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
170
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
171
171
  - request:
172
172
  method: get
173
173
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/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:31 GMT
190
+ - Fri, 05 Jun 2015 23:27:07 GMT
191
191
  Content-Length:
192
- - '28'
192
+ - '21'
193
193
  body:
194
194
  encoding: UTF-8
195
195
  string: |
196
- No such container: dev-test
196
+ no such id: dev-test
197
197
  http_version:
198
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
198
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
199
199
  - request:
200
200
  method: get
201
201
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/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:31 GMT
218
+ - Fri, 05 Jun 2015 23:27:07 GMT
219
219
  Content-Length:
220
- - '28'
220
+ - '21'
221
221
  body:
222
222
  encoding: UTF-8
223
223
  string: |
224
- No such container: dev-test
224
+ no such id: dev-test
225
225
  http_version:
226
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
226
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
227
227
  - request:
228
228
  method: get
229
229
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/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:31 GMT
246
+ - Fri, 05 Jun 2015 23:27:07 GMT
247
247
  Content-Length:
248
- - '28'
248
+ - '21'
249
249
  body:
250
250
  encoding: UTF-8
251
251
  string: |
252
- No such container: dev-test
252
+ no such id: dev-test
253
253
  http_version:
254
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
254
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
255
255
  - request:
256
256
  method: get
257
257
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/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:31 GMT
274
+ - Fri, 05 Jun 2015 23:27:07 GMT
275
275
  Content-Length:
276
- - '28'
276
+ - '21'
277
277
  body:
278
278
  encoding: UTF-8
279
279
  string: |
280
- No such container: dev-test
280
+ no such id: dev-test
281
281
  http_version:
282
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
282
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
283
283
  - request:
284
284
  method: get
285
285
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/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:31 GMT
302
+ - Fri, 05 Jun 2015 23:27:07 GMT
303
303
  Content-Length:
304
- - '28'
304
+ - '21'
305
305
  body:
306
306
  encoding: UTF-8
307
307
  string: |
308
- No such container: dev-logs
308
+ no such id: dev-logs
309
309
  http_version:
310
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
310
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
311
311
  - request:
312
312
  method: get
313
313
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/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:31 GMT
330
+ - Fri, 05 Jun 2015 23:27:07 GMT
331
331
  Content-Length:
332
- - '28'
332
+ - '21'
333
333
  body:
334
334
  encoding: UTF-8
335
335
  string: |
336
- No such container: dev-logs
336
+ no such id: dev-logs
337
337
  http_version:
338
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
338
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
339
339
  - request:
340
340
  method: get
341
341
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/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:31 GMT
358
+ - Fri, 05 Jun 2015 23:27:07 GMT
359
359
  Content-Length:
360
- - '28'
360
+ - '21'
361
361
  body:
362
362
  encoding: UTF-8
363
363
  string: |
364
- No such container: dev-logs
364
+ no such id: dev-logs
365
365
  http_version:
366
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
366
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
367
367
  - request:
368
368
  method: get
369
369
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/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:31 GMT
386
+ - Fri, 05 Jun 2015 23:27:07 GMT
387
387
  Content-Length:
388
- - '28'
388
+ - '21'
389
389
  body:
390
390
  encoding: UTF-8
391
391
  string: |
392
- No such container: dev-logs
392
+ no such id: dev-logs
393
393
  http_version:
394
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
394
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
395
395
  - request:
396
396
  method: get
397
397
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/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:31 GMT
414
+ - Fri, 05 Jun 2015 23:27:07 GMT
415
415
  Content-Length:
416
- - '28'
416
+ - '21'
417
417
  body:
418
418
  encoding: UTF-8
419
419
  string: |
420
- No such container: dev-logs
420
+ no such id: dev-logs
421
421
  http_version:
422
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
422
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
423
423
  - request:
424
424
  method: get
425
425
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/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:31 GMT
442
+ - Fri, 05 Jun 2015 23:27:07 GMT
443
443
  Content-Length:
444
- - '28'
444
+ - '21'
445
445
  body:
446
446
  encoding: UTF-8
447
447
  string: |
448
- No such container: dev-logs
448
+ no such id: dev-logs
449
449
  http_version:
450
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
450
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
451
451
  - request:
452
452
  method: get
453
453
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/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:31 GMT
470
+ - Fri, 05 Jun 2015 23:27:07 GMT
471
471
  Content-Length:
472
- - '28'
472
+ - '21'
473
473
  body:
474
474
  encoding: UTF-8
475
475
  string: |
476
- No such container: dev-logs
476
+ no such id: dev-logs
477
477
  http_version:
478
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
478
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
479
479
  - request:
480
480
  method: get
481
481
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/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:31 GMT
498
+ - Fri, 05 Jun 2015 23:27:07 GMT
499
499
  Content-Length:
500
- - '28'
500
+ - '21'
501
501
  body:
502
502
  encoding: UTF-8
503
503
  string: |
504
- No such container: dev-logs
504
+ no such id: dev-logs
505
505
  http_version:
506
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
506
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
507
507
  - request:
508
508
  method: post
509
509
  uri: "<DOCKER_HOST>/v1.16/containers/create?name=dev-logs"
@@ -512,7 +512,7 @@ http_interactions:
512
512
  string: '{"Env":[],"Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","ExposedPorts":{}}'
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
  - application/json
518
518
  response:
@@ -523,15 +523,15 @@ http_interactions:
523
523
  Content-Type:
524
524
  - application/json
525
525
  Date:
526
- - Mon, 20 Apr 2015 23:27:31 GMT
526
+ - Fri, 05 Jun 2015 23:27:07 GMT
527
527
  Content-Length:
528
528
  - '90'
529
529
  body:
530
530
  encoding: UTF-8
531
531
  string: |
532
- {"Id":"5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417","Warnings":null}
532
+ {"Id":"fd4bd953f3fe647385fc84543f5e88b36d2cf20d636197aa8633b7ee031425e2","Warnings":null}
533
533
  http_version:
534
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
534
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
535
535
  - request:
536
536
  method: post
537
537
  uri: "<DOCKER_HOST>/v1.16/containers/create?name=dev-test"
@@ -540,7 +540,7 @@ http_interactions:
540
540
  string: '{"Env":["PROFILE=dev"],"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","ExposedPorts":{"80/tcp":{}}}'
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
  - application/json
546
546
  response:
@@ -551,24 +551,24 @@ http_interactions:
551
551
  Content-Type:
552
552
  - application/json
553
553
  Date:
554
- - Mon, 20 Apr 2015 23:27:31 GMT
554
+ - Fri, 05 Jun 2015 23:27:07 GMT
555
555
  Content-Length:
556
556
  - '90'
557
557
  body:
558
558
  encoding: UTF-8
559
559
  string: |
560
- {"Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Warnings":null}
560
+ {"Id":"b39ac52d54b594ad4ac240379ca913e403dff5a9937237f730d6705a2c38df62","Warnings":null}
561
561
  http_version:
562
- recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
562
+ recorded_at: Fri, 05 Jun 2015 23:27:07 GMT
563
563
  - request:
564
564
  method: post
565
- uri: "<DOCKER_HOST>/v1.16/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/start"
565
+ uri: "<DOCKER_HOST>/v1.16/containers/fd4bd953f3fe647385fc84543f5e88b36d2cf20d636197aa8633b7ee031425e2/start"
566
566
  body:
567
567
  encoding: UTF-8
568
568
  string: '{"Links":[],"ExtraHosts":[],"PortBindings":{},"VolumesFrom":[],"Binds":[]}'
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
  - application/json
574
574
  response:
@@ -577,35 +577,12 @@ http_interactions:
577
577
  message:
578
578
  headers:
579
579
  Date:
580
- - Mon, 20 Apr 2015 23:27:32 GMT
580
+ - Fri, 05 Jun 2015 23:27:07 GMT
581
581
  body:
582
582
  encoding: UTF-8
583
583
  string: ''
584
584
  http_version:
585
- recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
586
- - request:
587
- method: post
588
- uri: "<DOCKER_HOST>/v1.16/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/start"
589
- body:
590
- encoding: UTF-8
591
- string: '{"Links":[],"ExtraHosts":[],"PortBindings":{"80/tcp":[{"HostPort":"4568"}]},"VolumesFrom":[],"Binds":[]}'
592
- headers:
593
- User-Agent:
594
- - Swipely/Docker-API 1.20.0
595
- Content-Type:
596
- - application/json
597
- response:
598
- status:
599
- code: 204
600
- message:
601
- headers:
602
- Date:
603
- - Mon, 20 Apr 2015 23:27:32 GMT
604
- body:
605
- encoding: UTF-8
606
- string: ''
607
- http_version:
608
- recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
585
+ recorded_at: Fri, 05 Jun 2015 23:27:08 GMT
609
586
  - request:
610
587
  method: get
611
588
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -614,7 +591,7 @@ http_interactions:
614
591
  string: ''
615
592
  headers:
616
593
  User-Agent:
617
- - Swipely/Docker-API 1.20.0
594
+ - Swipely/Docker-API 1.21.4
618
595
  Content-Type:
619
596
  - text/plain
620
597
  response:
@@ -625,277 +602,73 @@ http_interactions:
625
602
  Content-Type:
626
603
  - application/json
627
604
  Date:
628
- - Mon, 20 Apr 2015 23:27:32 GMT
605
+ - Fri, 05 Jun 2015 23:27:08 GMT
629
606
  body:
630
607
  encoding: UTF-8
631
608
  string: |
632
- {"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":"5320afe46553","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","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:31.771686548Z","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/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hosts","Id":"5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.178","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b2","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b2","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13057,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:32.258677655Z"},"Volumes":{},"VolumesRW":{}}
609
+ {"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":"fd4bd953f3fe","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","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:27:07.483108725Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/fd4bd953f3fe647385fc84543f5e88b36d2cf20d636197aa8633b7ee031425e2/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/fd4bd953f3fe647385fc84543f5e88b36d2cf20d636197aa8633b7ee031425e2/hosts","Id":"fd4bd953f3fe647385fc84543f5e88b36d2cf20d636197aa8633b7ee031425e2","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/fd4bd953f3fe647385fc84543f5e88b36d2cf20d636197aa8633b7ee031425e2/fd4bd953f3fe647385fc84543f5e88b36d2cf20d636197aa8633b7ee031425e2-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.99","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:163","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:63","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/fd4bd953f3fe647385fc84543f5e88b36d2cf20d636197aa8633b7ee031425e2/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24080,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:07.983712228Z"},"Volumes":{},"VolumesRW":{}}
633
610
  http_version:
634
- recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
611
+ recorded_at: Fri, 05 Jun 2015 23:27:08 GMT
635
612
  - request:
636
- method: get
637
- uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
638
- body:
639
- encoding: US-ASCII
640
- string: ''
641
- headers:
642
- User-Agent:
643
- - Swipely/Docker-API 1.20.0
644
- Content-Type:
645
- - text/plain
646
- response:
647
- status:
648
- code: 200
649
- message:
650
- headers:
651
- Content-Type:
652
- - application/json
653
- Date:
654
- - Mon, 20 Apr 2015 23:27:32 GMT
613
+ method: post
614
+ uri: "<DOCKER_HOST>/v1.16/containers/fd4bd953f3fe647385fc84543f5e88b36d2cf20d636197aa8633b7ee031425e2/exec"
655
615
  body:
656
616
  encoding: UTF-8
657
- string: |
658
- {"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":["PROFILE=dev","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":"960c2e7a4d1c","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","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:31.799583937Z","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":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hosts","Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.179","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b3","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b3","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13069,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:32.387948273Z"},"Volumes":{},"VolumesRW":{}}
659
- http_version:
660
- recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
661
- - request:
662
- method: get
663
- uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
664
- body:
665
- encoding: US-ASCII
666
- string: ''
617
+ string: '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":false,"Cmd":["ls","/bigrig-wait.sh"]}'
667
618
  headers:
668
619
  User-Agent:
669
- - Swipely/Docker-API 1.20.0
670
- Content-Type:
671
- - text/plain
672
- response:
673
- status:
674
- code: 200
675
- message:
676
- headers:
620
+ - Swipely/Docker-API 1.21.4
677
621
  Content-Type:
678
622
  - application/json
679
- Date:
680
- - Mon, 20 Apr 2015 23:27:32 GMT
681
- body:
682
- encoding: UTF-8
683
- string: |
684
- {"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":["PROFILE=dev","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":"960c2e7a4d1c","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","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:31.799583937Z","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":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hosts","Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.179","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b3","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b3","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13069,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:32.387948273Z"},"Volumes":{},"VolumesRW":{}}
685
- http_version:
686
- recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
687
- - request:
688
- method: get
689
- uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
690
- body:
691
- encoding: US-ASCII
692
- string: ''
693
- headers:
694
- User-Agent:
695
- - Swipely/Docker-API 1.20.0
696
- Content-Type:
697
- - text/plain
698
623
  response:
699
624
  status:
700
- code: 200
625
+ code: 201
701
626
  message:
702
627
  headers:
703
628
  Content-Type:
704
629
  - application/json
705
630
  Date:
706
- - Mon, 20 Apr 2015 23:27:32 GMT
707
- body:
708
- encoding: UTF-8
709
- string: |
710
- {"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":["PROFILE=dev","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":"960c2e7a4d1c","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","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:31.799583937Z","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":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hosts","Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.179","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b3","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b3","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13069,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:32.387948273Z"},"Volumes":{},"VolumesRW":{}}
711
- http_version:
712
- recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
713
- - request:
714
- method: get
715
- uri: "<DOCKER_HOST>/v1.16/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/logs?follow=true&stderr=true&stdout=true"
716
- body:
717
- encoding: US-ASCII
718
- string: ''
719
- headers:
720
- User-Agent:
721
- - Swipely/Docker-API 1.20.0
722
- Content-Type:
723
- - text/plain
724
- response:
725
- status:
726
- code: 200
727
- message:
728
- headers:
729
- Date:
730
- - Mon, 20 Apr 2015 23:27:32 GMT
631
+ - Fri, 05 Jun 2015 23:27:08 GMT
731
632
  Content-Length:
732
- - '0'
733
- Content-Type:
734
- - text/plain; charset=utf-8
735
- body:
736
- encoding: UTF-8
737
- string: ''
738
- http_version:
739
- recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
740
- - request:
741
- method: post
742
- uri: "<DOCKER_HOST>/v1.16/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/kill"
743
- body:
744
- encoding: US-ASCII
745
- string: ''
746
- headers:
747
- User-Agent:
748
- - Swipely/Docker-API 1.20.0
749
- Content-Type:
750
- - text/plain
751
- response:
752
- status:
753
- code: 204
754
- message:
755
- headers:
756
- Date:
757
- - Mon, 20 Apr 2015 23:27:32 GMT
758
- body:
759
- encoding: UTF-8
760
- string: ''
761
- http_version:
762
- recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
763
- - request:
764
- method: get
765
- uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
766
- body:
767
- encoding: US-ASCII
768
- string: ''
769
- headers:
770
- User-Agent:
771
- - Swipely/Docker-API 1.20.0
772
- Content-Type:
773
- - text/plain
774
- response:
775
- status:
776
- code: 200
777
- message:
778
- headers:
779
- Content-Type:
780
- - application/json
781
- Date:
782
- - Mon, 20 Apr 2015 23:27:32 GMT
633
+ - '74'
783
634
  body:
784
635
  encoding: UTF-8
785
636
  string: |
786
- {"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":["PROFILE=dev","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":"960c2e7a4d1c","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","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:31.799583937Z","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":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hosts","Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","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/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:27:32.765976774Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:27:32.387948273Z"},"Volumes":{},"VolumesRW":{}}
637
+ {"Id":"42cac94ce261d28ff719322b6f832dee9de0221807a707e4dd6d2309aea49b63"}
787
638
  http_version:
788
- recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
639
+ recorded_at: Fri, 05 Jun 2015 23:27:08 GMT
789
640
  - request:
790
- method: get
791
- uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
792
- body:
793
- encoding: US-ASCII
794
- string: ''
795
- headers:
796
- User-Agent:
797
- - Swipely/Docker-API 1.20.0
798
- Content-Type:
799
- - text/plain
800
- response:
801
- status:
802
- code: 200
803
- message:
804
- headers:
805
- Content-Type:
806
- - application/json
807
- Date:
808
- - Mon, 20 Apr 2015 23:27:32 GMT
641
+ method: post
642
+ uri: "<DOCKER_HOST>/v1.16/containers/b39ac52d54b594ad4ac240379ca913e403dff5a9937237f730d6705a2c38df62/start"
809
643
  body:
810
644
  encoding: UTF-8
811
- string: |
812
- {"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":["PROFILE=dev","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":"960c2e7a4d1c","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","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:31.799583937Z","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":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hosts","Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","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/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:27:32.765976774Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:27:32.387948273Z"},"Volumes":{},"VolumesRW":{}}
813
- http_version:
814
- recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
815
- - request:
816
- method: get
817
- uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
818
- body:
819
- encoding: US-ASCII
820
- string: ''
645
+ string: '{"Links":[],"ExtraHosts":[],"PortBindings":{"80/tcp":[{"HostPort":"4568"}]},"VolumesFrom":[],"Binds":[]}'
821
646
  headers:
822
647
  User-Agent:
823
- - Swipely/Docker-API 1.20.0
824
- Content-Type:
825
- - text/plain
826
- response:
827
- status:
828
- code: 200
829
- message:
830
- headers:
648
+ - Swipely/Docker-API 1.21.4
831
649
  Content-Type:
832
650
  - application/json
833
- Date:
834
- - Mon, 20 Apr 2015 23:27:32 GMT
835
- body:
836
- encoding: UTF-8
837
- string: |
838
- {"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":["PROFILE=dev","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":"960c2e7a4d1c","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","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:31.799583937Z","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":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hosts","Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","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/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:27:32.765976774Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:27:32.387948273Z"},"Volumes":{},"VolumesRW":{}}
839
- http_version:
840
- recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
841
- - request:
842
- method: delete
843
- uri: "<DOCKER_HOST>/v1.16/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1"
844
- body:
845
- encoding: US-ASCII
846
- string: ''
847
- headers:
848
- User-Agent:
849
- - Swipely/Docker-API 1.20.0
850
- Content-Type:
851
- - text/plain
852
651
  response:
853
652
  status:
854
653
  code: 204
855
654
  message:
856
655
  headers:
857
656
  Date:
858
- - Mon, 20 Apr 2015 23:27:33 GMT
657
+ - Fri, 05 Jun 2015 23:27:08 GMT
859
658
  body:
860
659
  encoding: UTF-8
861
660
  string: ''
862
661
  http_version:
863
- recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
662
+ recorded_at: Fri, 05 Jun 2015 23:27:08 GMT
864
663
  - request:
865
664
  method: get
866
- uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
867
- body:
868
- encoding: US-ASCII
869
- string: ''
870
- headers:
871
- User-Agent:
872
- - Swipely/Docker-API 1.20.0
873
- Content-Type:
874
- - text/plain
875
- response:
876
- status:
877
- code: 200
878
- message:
879
- headers:
880
- Content-Type:
881
- - application/json
882
- Date:
883
- - Mon, 20 Apr 2015 23:27:33 GMT
884
- body:
885
- encoding: UTF-8
886
- string: |
887
- {"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":"5320afe46553","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","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:31.771686548Z","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/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hosts","Id":"5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.178","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b2","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b2","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13057,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:32.258677655Z"},"Volumes":{},"VolumesRW":{}}
888
- http_version:
889
- recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
890
- - request:
891
- method: get
892
- uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
665
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
893
666
  body:
894
667
  encoding: US-ASCII
895
668
  string: ''
896
669
  headers:
897
670
  User-Agent:
898
- - Swipely/Docker-API 1.20.0
671
+ - Swipely/Docker-API 1.21.4
899
672
  Content-Type:
900
673
  - text/plain
901
674
  response:
@@ -906,163 +679,39 @@ http_interactions:
906
679
  Content-Type:
907
680
  - application/json
908
681
  Date:
909
- - Mon, 20 Apr 2015 23:27:33 GMT
682
+ - Fri, 05 Jun 2015 23:27:08 GMT
910
683
  body:
911
684
  encoding: UTF-8
912
685
  string: |
913
- {"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":"5320afe46553","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","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:31.771686548Z","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/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hosts","Id":"5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.178","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b2","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b2","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13057,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:32.258677655Z"},"Volumes":{},"VolumesRW":{}}
914
- http_version:
915
- recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
916
- - request:
917
- method: get
918
- uri: "<DOCKER_HOST>/v1.16/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/logs?follow=true&stderr=true&stdout=true"
919
- body:
920
- encoding: US-ASCII
921
- string: ''
922
- headers:
923
- User-Agent:
924
- - Swipely/Docker-API 1.20.0
925
- Content-Type:
926
- - text/plain
927
- response:
928
- status:
929
- code: 200
930
- message:
931
- headers:
932
- Date:
933
- - Mon, 20 Apr 2015 23:27:32 GMT
934
- Content-Type:
935
- - application/octet-stream
936
- body:
937
- encoding: UTF-8
938
- string: !binary |-
939
- AQAAAAAAADBNb24gQXByIDIwIDIzOjI3OjMyIFVUQyAyMDE1IGNvbnRhaW5l
940
- ciAxIHN0ZG91dAoCAAAAAAAAME1vbiBBcHIgMjAgMjM6Mjc6MzIgVVRDIDIw
941
- MTUgY29udGFpbmVyIDEgc3RkZXJyCg==
686
+ {"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":["PROFILE=dev","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":"b39ac52d54b5","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:27:07.491228513Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b39ac52d54b594ad4ac240379ca913e403dff5a9937237f730d6705a2c38df62/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b39ac52d54b594ad4ac240379ca913e403dff5a9937237f730d6705a2c38df62/hosts","Id":"b39ac52d54b594ad4ac240379ca913e403dff5a9937237f730d6705a2c38df62","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/b39ac52d54b594ad4ac240379ca913e403dff5a9937237f730d6705a2c38df62/b39ac52d54b594ad4ac240379ca913e403dff5a9937237f730d6705a2c38df62-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.100","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:164","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:64","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/b39ac52d54b594ad4ac240379ca913e403dff5a9937237f730d6705a2c38df62/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24092,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:08.155895484Z"},"Volumes":{},"VolumesRW":{}}
942
687
  http_version:
943
- recorded_at: Mon, 20 Apr 2015 23:27:33 GMT
688
+ recorded_at: Fri, 05 Jun 2015 23:27:08 GMT
944
689
  - request:
945
690
  method: post
946
- uri: "<DOCKER_HOST>/v1.16/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/kill"
947
- body:
948
- encoding: US-ASCII
949
- string: ''
950
- headers:
951
- User-Agent:
952
- - Swipely/Docker-API 1.20.0
953
- Content-Type:
954
- - text/plain
955
- response:
956
- status:
957
- code: 204
958
- message:
959
- headers:
960
- Date:
961
- - Mon, 20 Apr 2015 23:27:33 GMT
962
- body:
963
- encoding: UTF-8
964
- string: ''
965
- http_version:
966
- recorded_at: Mon, 20 Apr 2015 23:27:33 GMT
967
- - request:
968
- method: get
969
- uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
970
- body:
971
- encoding: US-ASCII
972
- string: ''
973
- headers:
974
- User-Agent:
975
- - Swipely/Docker-API 1.20.0
976
- Content-Type:
977
- - text/plain
978
- response:
979
- status:
980
- code: 200
981
- message:
982
- headers:
983
- Content-Type:
984
- - application/json
985
- Date:
986
- - Mon, 20 Apr 2015 23:27:33 GMT
691
+ uri: "<DOCKER_HOST>/v1.16/containers/b39ac52d54b594ad4ac240379ca913e403dff5a9937237f730d6705a2c38df62/exec"
987
692
  body:
988
693
  encoding: UTF-8
989
- string: |
990
- {"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":"5320afe46553","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","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:31.771686548Z","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/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hosts","Id":"5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:27:33.225677895Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:27:32.258677655Z"},"Volumes":{},"VolumesRW":{}}
991
- http_version:
992
- recorded_at: Mon, 20 Apr 2015 23:27:33 GMT
993
- - request:
994
- method: get
995
- uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
996
- body:
997
- encoding: US-ASCII
998
- string: ''
694
+ string: '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":false,"Cmd":["ls","/bigrig-wait.sh"]}'
999
695
  headers:
1000
696
  User-Agent:
1001
- - Swipely/Docker-API 1.20.0
1002
- Content-Type:
1003
- - text/plain
1004
- response:
1005
- status:
1006
- code: 200
1007
- message:
1008
- headers:
697
+ - Swipely/Docker-API 1.21.4
1009
698
  Content-Type:
1010
699
  - application/json
1011
- Date:
1012
- - Mon, 20 Apr 2015 23:27:33 GMT
1013
- body:
1014
- encoding: UTF-8
1015
- string: |
1016
- {"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":"5320afe46553","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","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:31.771686548Z","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/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hosts","Id":"5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:27:33.225677895Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:27:32.258677655Z"},"Volumes":{},"VolumesRW":{}}
1017
- http_version:
1018
- recorded_at: Mon, 20 Apr 2015 23:27:33 GMT
1019
- - request:
1020
- method: get
1021
- uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
1022
- body:
1023
- encoding: US-ASCII
1024
- string: ''
1025
- headers:
1026
- User-Agent:
1027
- - Swipely/Docker-API 1.20.0
1028
- Content-Type:
1029
- - text/plain
1030
700
  response:
1031
701
  status:
1032
- code: 200
702
+ code: 201
1033
703
  message:
1034
704
  headers:
1035
705
  Content-Type:
1036
706
  - application/json
1037
707
  Date:
1038
- - Mon, 20 Apr 2015 23:27:33 GMT
708
+ - Fri, 05 Jun 2015 23:27:08 GMT
709
+ Content-Length:
710
+ - '74'
1039
711
  body:
1040
712
  encoding: UTF-8
1041
713
  string: |
1042
- {"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":"5320afe46553","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","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:31.771686548Z","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/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/hosts","Id":"5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:27:33.225677895Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:27:32.258677655Z"},"Volumes":{},"VolumesRW":{}}
1043
- http_version:
1044
- recorded_at: Mon, 20 Apr 2015 23:27:33 GMT
1045
- - request:
1046
- method: delete
1047
- uri: "<DOCKER_HOST>/v1.16/containers/5320afe4655330e5696804af2ee1c58d2a4a3cd45993b205e781d1ab8df71417"
1048
- body:
1049
- encoding: US-ASCII
1050
- string: ''
1051
- headers:
1052
- User-Agent:
1053
- - Swipely/Docker-API 1.20.0
1054
- Content-Type:
1055
- - text/plain
1056
- response:
1057
- status:
1058
- code: 204
1059
- message:
1060
- headers:
1061
- Date:
1062
- - Mon, 20 Apr 2015 23:27:33 GMT
1063
- body:
1064
- encoding: UTF-8
1065
- string: ''
714
+ {"Id":"0b92a8b359baa65a00432b1bd2e4454194b55db77a9708d33df43196ffa382c0"}
1066
715
  http_version:
1067
- recorded_at: Mon, 20 Apr 2015 23:27:33 GMT
716
+ recorded_at: Fri, 05 Jun 2015 23:27:08 GMT
1068
717
  recorded_with: VCR 2.9.3