bigrig 0.4.2 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
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: '{"Env":["NAME1=VALUE1","NAME2=VALUE2"],"Image":"hawknewton/show-env","ExposedPorts":{}}'
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
  - application/json
14
14
  response:
@@ -19,24 +19,24 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Mon, 20 Apr 2015 23:28:49 GMT
22
+ - Fri, 05 Jun 2015 23:26:27 GMT
23
23
  Content-Length:
24
24
  - '90'
25
25
  body:
26
26
  encoding: UTF-8
27
27
  string: |
28
- {"Id":"355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e","Warnings":null}
28
+ {"Id":"1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925","Warnings":null}
29
29
  http_version:
30
- recorded_at: Mon, 20 Apr 2015 23:28:48 GMT
30
+ recorded_at: Fri, 05 Jun 2015 23:26:27 GMT
31
31
  - request:
32
32
  method: post
33
- uri: "<DOCKER_HOST>/v1.16/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/start"
33
+ uri: "<DOCKER_HOST>/v1.16/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/start"
34
34
  body:
35
35
  encoding: UTF-8
36
36
  string: '{"Links":null,"ExtraHosts":[],"PortBindings":{},"VolumesFrom":null,"Binds":null}'
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
  - application/json
42
42
  response:
@@ -45,21 +45,21 @@ http_interactions:
45
45
  message:
46
46
  headers:
47
47
  Date:
48
- - Mon, 20 Apr 2015 23:28:49 GMT
48
+ - Fri, 05 Jun 2015 23:26:27 GMT
49
49
  body:
50
50
  encoding: UTF-8
51
51
  string: ''
52
52
  http_version:
53
- recorded_at: Mon, 20 Apr 2015 23:28:49 GMT
53
+ recorded_at: Fri, 05 Jun 2015 23:26:27 GMT
54
54
  - request:
55
55
  method: get
56
- uri: "<DOCKER_HOST>/v1.16/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/json"
56
+ uri: "<DOCKER_HOST>/v1.16/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/json"
57
57
  body:
58
58
  encoding: US-ASCII
59
59
  string: ''
60
60
  headers:
61
61
  User-Agent:
62
- - Swipely/Docker-API 1.20.0
62
+ - Swipely/Docker-API 1.21.4
63
63
  Content-Type:
64
64
  - text/plain
65
65
  response:
@@ -70,22 +70,22 @@ http_interactions:
70
70
  Content-Type:
71
71
  - application/json
72
72
  Date:
73
- - Mon, 20 Apr 2015 23:28:49 GMT
73
+ - Fri, 05 Jun 2015 23:26:28 GMT
74
74
  body:
75
75
  encoding: UTF-8
76
76
  string: |
77
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["NAME1=VALUE1","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"355ed6512f5a","Image":"hawknewton/show-env","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:28:48.974705772Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"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":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/hosts","Id":"355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/with_env","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.205","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7cd","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:cd","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13501,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:28:49.567375861Z"},"Volumes":{},"VolumesRW":{}}
77
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["NAME1=VALUE1","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"1919f6eea047","Image":"hawknewton/show-env","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:26:27.351538058Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"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":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/hosts","Id":"1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925-json.log","MountLabel":"","Name":"/with_env","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.80","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:150","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:50","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23684,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:27.973911Z"},"Volumes":{},"VolumesRW":{}}
78
78
  http_version:
79
- recorded_at: Mon, 20 Apr 2015 23:28:49 GMT
79
+ recorded_at: Fri, 05 Jun 2015 23:26:28 GMT
80
80
  - request:
81
81
  method: get
82
- uri: "<DOCKER_HOST>/v1.16/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/json"
82
+ uri: "<DOCKER_HOST>/v1.16/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/json"
83
83
  body:
84
84
  encoding: US-ASCII
85
85
  string: ''
86
86
  headers:
87
87
  User-Agent:
88
- - Swipely/Docker-API 1.20.0
88
+ - Swipely/Docker-API 1.21.4
89
89
  Content-Type:
90
90
  - text/plain
91
91
  response:
@@ -96,22 +96,22 @@ http_interactions:
96
96
  Content-Type:
97
97
  - application/json
98
98
  Date:
99
- - Mon, 20 Apr 2015 23:28:49 GMT
99
+ - Fri, 05 Jun 2015 23:26:28 GMT
100
100
  body:
101
101
  encoding: UTF-8
102
102
  string: |
103
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["NAME1=VALUE1","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"355ed6512f5a","Image":"hawknewton/show-env","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:28:48.974705772Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"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":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/hosts","Id":"355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/with_env","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.205","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7cd","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:cd","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13501,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:28:49.567375861Z"},"Volumes":{},"VolumesRW":{}}
103
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["NAME1=VALUE1","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"1919f6eea047","Image":"hawknewton/show-env","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:26:27.351538058Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"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":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/hosts","Id":"1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925-json.log","MountLabel":"","Name":"/with_env","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.80","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:150","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:50","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23684,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:27.973911Z"},"Volumes":{},"VolumesRW":{}}
104
104
  http_version:
105
- recorded_at: Mon, 20 Apr 2015 23:28:49 GMT
105
+ recorded_at: Fri, 05 Jun 2015 23:26:28 GMT
106
106
  - request:
107
107
  method: get
108
- uri: "<DOCKER_HOST>/v1.16/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/json"
108
+ uri: "<DOCKER_HOST>/v1.16/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/json"
109
109
  body:
110
110
  encoding: US-ASCII
111
111
  string: ''
112
112
  headers:
113
113
  User-Agent:
114
- - Swipely/Docker-API 1.20.0
114
+ - Swipely/Docker-API 1.21.4
115
115
  Content-Type:
116
116
  - text/plain
117
117
  response:
@@ -122,13 +122,13 @@ http_interactions:
122
122
  Content-Type:
123
123
  - application/json
124
124
  Date:
125
- - Mon, 20 Apr 2015 23:28:49 GMT
125
+ - Fri, 05 Jun 2015 23:26:28 GMT
126
126
  body:
127
127
  encoding: UTF-8
128
128
  string: |
129
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["NAME1=VALUE1","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"355ed6512f5a","Image":"hawknewton/show-env","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:28:48.974705772Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"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":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/hosts","Id":"355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/with_env","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.205","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7cd","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:cd","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13501,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:28:49.567375861Z"},"Volumes":{},"VolumesRW":{}}
129
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["NAME1=VALUE1","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"1919f6eea047","Image":"hawknewton/show-env","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:26:27.351538058Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"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":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/hosts","Id":"1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925-json.log","MountLabel":"","Name":"/with_env","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.80","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:150","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:50","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23684,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:27.973911Z"},"Volumes":{},"VolumesRW":{}}
130
130
  http_version:
131
- recorded_at: Mon, 20 Apr 2015 23:28:49 GMT
131
+ recorded_at: Fri, 05 Jun 2015 23:26:28 GMT
132
132
  - request:
133
133
  method: get
134
134
  uri: "<DOCKER_HOST>/v1.16/containers/with_env/json"
@@ -137,7 +137,7 @@ http_interactions:
137
137
  string: ''
138
138
  headers:
139
139
  User-Agent:
140
- - Swipely/Docker-API 1.20.0
140
+ - Swipely/Docker-API 1.21.4
141
141
  Content-Type:
142
142
  - text/plain
143
143
  response:
@@ -148,22 +148,22 @@ http_interactions:
148
148
  Content-Type:
149
149
  - application/json
150
150
  Date:
151
- - Mon, 20 Apr 2015 23:28:49 GMT
151
+ - Fri, 05 Jun 2015 23:26:28 GMT
152
152
  body:
153
153
  encoding: UTF-8
154
154
  string: |
155
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["NAME1=VALUE1","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"355ed6512f5a","Image":"hawknewton/show-env","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:28:48.974705772Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"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":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/hosts","Id":"355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/with_env","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.205","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7cd","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:cd","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13501,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:28:49.567375861Z"},"Volumes":{},"VolumesRW":{}}
155
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["NAME1=VALUE1","NAME2=VALUE2","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"1919f6eea047","Image":"hawknewton/show-env","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:26:27.351538058Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"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":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/hosts","Id":"1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925-json.log","MountLabel":"","Name":"/with_env","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.80","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:150","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:50","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23684,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:27.973911Z"},"Volumes":{},"VolumesRW":{}}
156
156
  http_version:
157
- recorded_at: Mon, 20 Apr 2015 23:28:49 GMT
157
+ recorded_at: Fri, 05 Jun 2015 23:26:28 GMT
158
158
  - request:
159
159
  method: post
160
- uri: "<DOCKER_HOST>/v1.16/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e/kill"
160
+ uri: "<DOCKER_HOST>/v1.16/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925/kill"
161
161
  body:
162
162
  encoding: US-ASCII
163
163
  string: ''
164
164
  headers:
165
165
  User-Agent:
166
- - Swipely/Docker-API 1.20.0
166
+ - Swipely/Docker-API 1.21.4
167
167
  Content-Type:
168
168
  - text/plain
169
169
  response:
@@ -172,21 +172,21 @@ http_interactions:
172
172
  message:
173
173
  headers:
174
174
  Date:
175
- - Mon, 20 Apr 2015 23:28:49 GMT
175
+ - Fri, 05 Jun 2015 23:26:28 GMT
176
176
  body:
177
177
  encoding: UTF-8
178
178
  string: ''
179
179
  http_version:
180
- recorded_at: Mon, 20 Apr 2015 23:28:49 GMT
180
+ recorded_at: Fri, 05 Jun 2015 23:26:28 GMT
181
181
  - request:
182
182
  method: delete
183
- uri: "<DOCKER_HOST>/v1.16/containers/355ed6512f5a015a1b95d745afdd12fc6a293ff6f8ad6b897740971a722f805e"
183
+ uri: "<DOCKER_HOST>/v1.16/containers/1919f6eea047889c57f2e6af482a30ed6817ab39d456763719c8e5a59f054925"
184
184
  body:
185
185
  encoding: US-ASCII
186
186
  string: ''
187
187
  headers:
188
188
  User-Agent:
189
- - Swipely/Docker-API 1.20.0
189
+ - Swipely/Docker-API 1.21.4
190
190
  Content-Type:
191
191
  - text/plain
192
192
  response:
@@ -195,10 +195,10 @@ http_interactions:
195
195
  message:
196
196
  headers:
197
197
  Date:
198
- - Mon, 20 Apr 2015 23:28:49 GMT
198
+ - Fri, 05 Jun 2015 23:26:28 GMT
199
199
  body:
200
200
  encoding: UTF-8
201
201
  string: ''
202
202
  http_version:
203
- recorded_at: Mon, 20 Apr 2015 23:28:49 GMT
203
+ recorded_at: Fri, 05 Jun 2015 23:26:28 GMT
204
204
  recorded_with: VCR 2.9.3
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: '{"Env":[],"Image":"hawknewton/show-env","ExposedPorts":{"80/tcp":{},"70/tcp":{}}}'
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
  - application/json
14
14
  response:
@@ -19,24 +19,24 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Mon, 20 Apr 2015 23:28:47 GMT
22
+ - Fri, 05 Jun 2015 23:26:26 GMT
23
23
  Content-Length:
24
24
  - '90'
25
25
  body:
26
26
  encoding: UTF-8
27
27
  string: |
28
- {"Id":"14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806","Warnings":null}
28
+ {"Id":"05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4","Warnings":null}
29
29
  http_version:
30
- recorded_at: Mon, 20 Apr 2015 23:28:47 GMT
30
+ recorded_at: Fri, 05 Jun 2015 23:26:26 GMT
31
31
  - request:
32
32
  method: post
33
- uri: "<DOCKER_HOST>/v1.16/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/start"
33
+ uri: "<DOCKER_HOST>/v1.16/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/start"
34
34
  body:
35
35
  encoding: UTF-8
36
- string: '{"Links":null,"ExtraHosts":[],"PortBindings":{"80/tcp":[{"HostPort":"60101"}],"70/tcp":[{}]},"VolumesFrom":null,"Binds":null}'
36
+ string: '{"Links":null,"ExtraHosts":[],"PortBindings":{"80/tcp":[{"HostPort":"52175"}],"70/tcp":[{}]},"VolumesFrom":null,"Binds":null}'
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
  - application/json
42
42
  response:
@@ -45,21 +45,21 @@ http_interactions:
45
45
  message:
46
46
  headers:
47
47
  Date:
48
- - Mon, 20 Apr 2015 23:28:48 GMT
48
+ - Fri, 05 Jun 2015 23:26:26 GMT
49
49
  body:
50
50
  encoding: UTF-8
51
51
  string: ''
52
52
  http_version:
53
- recorded_at: Mon, 20 Apr 2015 23:28:48 GMT
53
+ recorded_at: Fri, 05 Jun 2015 23:26:26 GMT
54
54
  - request:
55
55
  method: get
56
- uri: "<DOCKER_HOST>/v1.16/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/json"
56
+ uri: "<DOCKER_HOST>/v1.16/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/json"
57
57
  body:
58
58
  encoding: US-ASCII
59
59
  string: ''
60
60
  headers:
61
61
  User-Agent:
62
- - Swipely/Docker-API 1.20.0
62
+ - Swipely/Docker-API 1.21.4
63
63
  Content-Type:
64
64
  - text/plain
65
65
  response:
@@ -70,22 +70,22 @@ http_interactions:
70
70
  Content-Type:
71
71
  - application/json
72
72
  Date:
73
- - Mon, 20 Apr 2015 23:28:48 GMT
73
+ - Fri, 05 Jun 2015 23:26:26 GMT
74
74
  body:
75
75
  encoding: UTF-8
76
76
  string: |
77
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"70/tcp":{},"80/tcp":{}},"Hostname":"14d29f76e091","Image":"hawknewton/show-env","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:28:47.838077524Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"70/tcp":[{"HostIp":"","HostPort":""}],"80/tcp":[{"HostIp":"","HostPort":"60101"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/hosts","Id":"14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/with_ports","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.204","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7cc","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:cc","PortMapping":null,"Ports":{"70/tcp":[{"HostIp":"0.0.0.0","HostPort":"49166"}],"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"60101"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13486,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:28:48.437456262Z"},"Volumes":{},"VolumesRW":{}}
77
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"70/tcp":{},"80/tcp":{}},"Hostname":"05334e5dd2ff","Image":"hawknewton/show-env","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:26:26.190216948Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"70/tcp":[{"HostIp":"","HostPort":""}],"80/tcp":[{"HostIp":"","HostPort":"52175"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/hosts","Id":"05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4-json.log","MountLabel":"","Name":"/with_ports","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.79","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:14f","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:4f","PortMapping":null,"Ports":{"70/tcp":[{"HostIp":"0.0.0.0","HostPort":"32772"}],"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"52175"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23668,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:26.854557298Z"},"Volumes":{},"VolumesRW":{}}
78
78
  http_version:
79
- recorded_at: Mon, 20 Apr 2015 23:28:48 GMT
79
+ recorded_at: Fri, 05 Jun 2015 23:26:26 GMT
80
80
  - request:
81
81
  method: get
82
- uri: "<DOCKER_HOST>/v1.16/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/json"
82
+ uri: "<DOCKER_HOST>/v1.16/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/json"
83
83
  body:
84
84
  encoding: US-ASCII
85
85
  string: ''
86
86
  headers:
87
87
  User-Agent:
88
- - Swipely/Docker-API 1.20.0
88
+ - Swipely/Docker-API 1.21.4
89
89
  Content-Type:
90
90
  - text/plain
91
91
  response:
@@ -96,22 +96,22 @@ http_interactions:
96
96
  Content-Type:
97
97
  - application/json
98
98
  Date:
99
- - Mon, 20 Apr 2015 23:28:48 GMT
99
+ - Fri, 05 Jun 2015 23:26:26 GMT
100
100
  body:
101
101
  encoding: UTF-8
102
102
  string: |
103
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"70/tcp":{},"80/tcp":{}},"Hostname":"14d29f76e091","Image":"hawknewton/show-env","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:28:47.838077524Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"70/tcp":[{"HostIp":"","HostPort":""}],"80/tcp":[{"HostIp":"","HostPort":"60101"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/hosts","Id":"14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/with_ports","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.204","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7cc","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:cc","PortMapping":null,"Ports":{"70/tcp":[{"HostIp":"0.0.0.0","HostPort":"49166"}],"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"60101"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13486,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:28:48.437456262Z"},"Volumes":{},"VolumesRW":{}}
103
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"70/tcp":{},"80/tcp":{}},"Hostname":"05334e5dd2ff","Image":"hawknewton/show-env","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:26:26.190216948Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"70/tcp":[{"HostIp":"","HostPort":""}],"80/tcp":[{"HostIp":"","HostPort":"52175"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/hosts","Id":"05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4-json.log","MountLabel":"","Name":"/with_ports","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.79","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:14f","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:4f","PortMapping":null,"Ports":{"70/tcp":[{"HostIp":"0.0.0.0","HostPort":"32772"}],"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"52175"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23668,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:26.854557298Z"},"Volumes":{},"VolumesRW":{}}
104
104
  http_version:
105
- recorded_at: Mon, 20 Apr 2015 23:28:48 GMT
105
+ recorded_at: Fri, 05 Jun 2015 23:26:26 GMT
106
106
  - request:
107
107
  method: get
108
- uri: "<DOCKER_HOST>/v1.16/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/json"
108
+ uri: "<DOCKER_HOST>/v1.16/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/json"
109
109
  body:
110
110
  encoding: US-ASCII
111
111
  string: ''
112
112
  headers:
113
113
  User-Agent:
114
- - Swipely/Docker-API 1.20.0
114
+ - Swipely/Docker-API 1.21.4
115
115
  Content-Type:
116
116
  - text/plain
117
117
  response:
@@ -122,22 +122,22 @@ http_interactions:
122
122
  Content-Type:
123
123
  - application/json
124
124
  Date:
125
- - Mon, 20 Apr 2015 23:28:48 GMT
125
+ - Fri, 05 Jun 2015 23:26:26 GMT
126
126
  body:
127
127
  encoding: UTF-8
128
128
  string: |
129
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"70/tcp":{},"80/tcp":{}},"Hostname":"14d29f76e091","Image":"hawknewton/show-env","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:28:47.838077524Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"70/tcp":[{"HostIp":"","HostPort":""}],"80/tcp":[{"HostIp":"","HostPort":"60101"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/hosts","Id":"14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/with_ports","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.204","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7cc","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:cc","PortMapping":null,"Ports":{"70/tcp":[{"HostIp":"0.0.0.0","HostPort":"49166"}],"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"60101"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13486,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:28:48.437456262Z"},"Volumes":{},"VolumesRW":{}}
129
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"70/tcp":{},"80/tcp":{}},"Hostname":"05334e5dd2ff","Image":"hawknewton/show-env","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:26:26.190216948Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"70/tcp":[{"HostIp":"","HostPort":""}],"80/tcp":[{"HostIp":"","HostPort":"52175"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/hosts","Id":"05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4-json.log","MountLabel":"","Name":"/with_ports","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.79","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:14f","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:4f","PortMapping":null,"Ports":{"70/tcp":[{"HostIp":"0.0.0.0","HostPort":"32772"}],"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"52175"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23668,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:26.854557298Z"},"Volumes":{},"VolumesRW":{}}
130
130
  http_version:
131
- recorded_at: Mon, 20 Apr 2015 23:28:48 GMT
131
+ recorded_at: Fri, 05 Jun 2015 23:26:26 GMT
132
132
  - request:
133
133
  method: get
134
- uri: "<DOCKER_HOST>/v1.16/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/json"
134
+ uri: "<DOCKER_HOST>/v1.16/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/json"
135
135
  body:
136
136
  encoding: US-ASCII
137
137
  string: ''
138
138
  headers:
139
139
  User-Agent:
140
- - Swipely/Docker-API 1.20.0
140
+ - Swipely/Docker-API 1.21.4
141
141
  Content-Type:
142
142
  - text/plain
143
143
  response:
@@ -148,13 +148,13 @@ http_interactions:
148
148
  Content-Type:
149
149
  - application/json
150
150
  Date:
151
- - Mon, 20 Apr 2015 23:28:48 GMT
151
+ - Fri, 05 Jun 2015 23:26:26 GMT
152
152
  body:
153
153
  encoding: UTF-8
154
154
  string: |
155
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"70/tcp":{},"80/tcp":{}},"Hostname":"14d29f76e091","Image":"hawknewton/show-env","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:28:47.838077524Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"70/tcp":[{"HostIp":"","HostPort":""}],"80/tcp":[{"HostIp":"","HostPort":"60101"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/hosts","Id":"14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/with_ports","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.204","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7cc","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:cc","PortMapping":null,"Ports":{"70/tcp":[{"HostIp":"0.0.0.0","HostPort":"49166"}],"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"60101"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13486,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:28:48.437456262Z"},"Volumes":{},"VolumesRW":{}}
155
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"70/tcp":{},"80/tcp":{}},"Hostname":"05334e5dd2ff","Image":"hawknewton/show-env","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:26:26.190216948Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"70/tcp":[{"HostIp":"","HostPort":""}],"80/tcp":[{"HostIp":"","HostPort":"52175"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/hosts","Id":"05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4-json.log","MountLabel":"","Name":"/with_ports","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.79","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:14f","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:4f","PortMapping":null,"Ports":{"70/tcp":[{"HostIp":"0.0.0.0","HostPort":"32772"}],"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"52175"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23668,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:26.854557298Z"},"Volumes":{},"VolumesRW":{}}
156
156
  http_version:
157
- recorded_at: Mon, 20 Apr 2015 23:28:48 GMT
157
+ recorded_at: Fri, 05 Jun 2015 23:26:26 GMT
158
158
  - request:
159
159
  method: get
160
160
  uri: "<DOCKER_HOST>/v1.16/containers/with_ports/json"
@@ -163,7 +163,7 @@ http_interactions:
163
163
  string: ''
164
164
  headers:
165
165
  User-Agent:
166
- - Swipely/Docker-API 1.20.0
166
+ - Swipely/Docker-API 1.21.4
167
167
  Content-Type:
168
168
  - text/plain
169
169
  response:
@@ -174,22 +174,22 @@ http_interactions:
174
174
  Content-Type:
175
175
  - application/json
176
176
  Date:
177
- - Mon, 20 Apr 2015 23:28:48 GMT
177
+ - Fri, 05 Jun 2015 23:26:27 GMT
178
178
  body:
179
179
  encoding: UTF-8
180
180
  string: |
181
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"70/tcp":{},"80/tcp":{}},"Hostname":"14d29f76e091","Image":"hawknewton/show-env","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:28:47.838077524Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"70/tcp":[{"HostIp":"","HostPort":""}],"80/tcp":[{"HostIp":"","HostPort":"60101"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/hosts","Id":"14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/with_ports","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.204","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7cc","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:cc","PortMapping":null,"Ports":{"70/tcp":[{"HostIp":"0.0.0.0","HostPort":"49166"}],"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"60101"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13486,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:28:48.437456262Z"},"Volumes":{},"VolumesRW":{}}
181
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"70/tcp":{},"80/tcp":{}},"Hostname":"05334e5dd2ff","Image":"hawknewton/show-env","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:26:26.190216948Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{"70/tcp":[{"HostIp":"","HostPort":""}],"80/tcp":[{"HostIp":"","HostPort":"52175"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/hosts","Id":"05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4-json.log","MountLabel":"","Name":"/with_ports","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.79","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:14f","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:4f","PortMapping":null,"Ports":{"70/tcp":[{"HostIp":"0.0.0.0","HostPort":"32772"}],"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"52175"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23668,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:26:26.854557298Z"},"Volumes":{},"VolumesRW":{}}
182
182
  http_version:
183
- recorded_at: Mon, 20 Apr 2015 23:28:48 GMT
183
+ recorded_at: Fri, 05 Jun 2015 23:26:27 GMT
184
184
  - request:
185
185
  method: post
186
- uri: "<DOCKER_HOST>/v1.16/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806/kill"
186
+ uri: "<DOCKER_HOST>/v1.16/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4/kill"
187
187
  body:
188
188
  encoding: US-ASCII
189
189
  string: ''
190
190
  headers:
191
191
  User-Agent:
192
- - Swipely/Docker-API 1.20.0
192
+ - Swipely/Docker-API 1.21.4
193
193
  Content-Type:
194
194
  - text/plain
195
195
  response:
@@ -198,21 +198,21 @@ http_interactions:
198
198
  message:
199
199
  headers:
200
200
  Date:
201
- - Mon, 20 Apr 2015 23:28:48 GMT
201
+ - Fri, 05 Jun 2015 23:26:27 GMT
202
202
  body:
203
203
  encoding: UTF-8
204
204
  string: ''
205
205
  http_version:
206
- recorded_at: Mon, 20 Apr 2015 23:28:48 GMT
206
+ recorded_at: Fri, 05 Jun 2015 23:26:27 GMT
207
207
  - request:
208
208
  method: delete
209
- uri: "<DOCKER_HOST>/v1.16/containers/14d29f76e091e5a1de8147fbc49ac0e0705c11f97e68f1ad2e35cefadf771806"
209
+ uri: "<DOCKER_HOST>/v1.16/containers/05334e5dd2ff2ecd796b0944219291d69abd72fda08dab60c7fa75cf0c7764d4"
210
210
  body:
211
211
  encoding: US-ASCII
212
212
  string: ''
213
213
  headers:
214
214
  User-Agent:
215
- - Swipely/Docker-API 1.20.0
215
+ - Swipely/Docker-API 1.21.4
216
216
  Content-Type:
217
217
  - text/plain
218
218
  response:
@@ -221,10 +221,10 @@ http_interactions:
221
221
  message:
222
222
  headers:
223
223
  Date:
224
- - Mon, 20 Apr 2015 23:28:48 GMT
224
+ - Fri, 05 Jun 2015 23:26:27 GMT
225
225
  body:
226
226
  encoding: UTF-8
227
227
  string: ''
228
228
  http_version:
229
- recorded_at: Mon, 20 Apr 2015 23:28:48 GMT
229
+ recorded_at: Fri, 05 Jun 2015 23:26:27 GMT
230
230
  recorded_with: VCR 2.9.3