bigrig 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile.lock +4 -1
  4. data/lib/bigrig/docker_adapter.rb +1 -1
  5. data/lib/bigrig/version.rb +1 -1
  6. data/spec/bigrig/docker_adapter_spec.rb +1 -1
  7. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +46 -46
  8. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +51 -51
  9. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +8 -8
  10. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +4 -4
  11. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +8 -8
  12. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +10 -10
  13. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +12 -12
  14. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +10 -10
  15. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +8 -8
  16. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +24 -24
  17. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +17 -17
  18. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +4 -4
  19. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +2 -2
  20. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +6 -6
  21. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +44 -44
  22. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +697 -252
  23. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +16 -16
  24. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +32 -32
  25. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +10 -10
  26. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +8 -8
  27. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +27 -27
  28. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/sets_the_hostname.yml +24 -24
  29. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +28 -28
  30. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_env_variables/starts_the_container_with_env_set.yml +28 -28
  31. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +33 -33
  32. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +8 -8
  33. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +10 -10
  34. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +13 -13
  35. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +16 -16
  36. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +25 -25
  37. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +53 -52
  38. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +58 -58
  39. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +57 -57
  40. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +105 -105
  41. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +52 -52
  42. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +74 -74
  43. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +52 -52
  44. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +56 -56
  45. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes/should_pass_volumes_to_the_right_container.yml +56 -56
  46. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +105 -105
  47. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +52 -52
  48. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +212 -67
  49. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +54 -54
  50. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +14 -14
  51. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +67 -179
  52. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +34 -34
  53. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +83 -111
  54. data/spec/vcr/bigrig/dev/spec/data/dev_json/tails_the_logs.yml +18 -18
  55. data/spec/vcr/bigrig/dev/spec/data/scan_json/leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +266 -210
  56. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_dependant_containers_when_the_scanned_file_changes.yml +249 -223
  57. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_the_container_when_the_scanned_file_changes.yml +211 -353
  58. data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +17 -17
  59. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +11 -11
  60. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +11 -11
  61. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +11 -11
  62. data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +9 -9
  63. data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +13 -13
  64. data/spec/vcr/bigrig/run/spec/data/wait_for/bigrig_json/waits_for_wait_for.yml +24 -24
  65. data/spec/vcr/bigrig/run/spec/data/wait_for_broken_json/fails_with_an_error.yml +9 -9
  66. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +20 -20
  67. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +16 -16
  68. data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +21 -21
  69. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +50 -158
  70. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +91 -66
  71. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +167 -167
  72. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +353 -353
  73. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_dependant_containers_when_the_scanned_file_changes.yml +322 -322
  74. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_the_container_when_the_scanned_file_changes.yml +325 -327
  75. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +21 -21
  76. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +40 -40
  77. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +40 -40
  78. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +40 -40
  79. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +40 -40
  80. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +40 -40
  81. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for/bigrig_json_waits_for_wait_for.yml +60 -60
  82. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for_broken_json_fails_with_an_error.yml +60 -60
  83. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +661 -216
  84. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +662 -217
  85. metadata +2 -2
@@ -19,16 +19,16 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Fri, 05 Jun 2015 23:27:04 GMT
22
+ - Tue, 23 Jun 2015 01:01:17 GMT
23
23
  body:
24
24
  encoding: UTF-8
25
25
  string: |
26
- {"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":"1a34650d3814","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:03.753156173Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["154f18fb3dab6fa73f7389d4bae5ce60f12bf398fe30a960055300f2abce783e"],"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/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/hosts","Id":"1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.97","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:161","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:61","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24050,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:04.459717997Z"},"Volumes":{},"VolumesRW":{}}
26
+ {"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":"HNEWTONMAC3","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-23T01:01:16.709319775Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["8c3ffd1a1d665699d9e9903b5efaf30607e041e8984d06e10401ac364c21f9d4"],"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/90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260/hosts","Id":"90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260/90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.123","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:7b","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10674,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T01:01:17.366708009Z"},"Volumes":{},"VolumesRW":{}}
27
27
  http_version:
28
- recorded_at: Fri, 05 Jun 2015 23:27:04 GMT
28
+ recorded_at: Tue, 23 Jun 2015 01:01:17 GMT
29
29
  - request:
30
30
  method: post
31
- uri: "<DOCKER_HOST>/v1.16/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/kill"
31
+ uri: "<DOCKER_HOST>/v1.16/containers/90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260/kill"
32
32
  body:
33
33
  encoding: US-ASCII
34
34
  string: ''
@@ -43,15 +43,15 @@ http_interactions:
43
43
  message:
44
44
  headers:
45
45
  Date:
46
- - Fri, 05 Jun 2015 23:27:05 GMT
46
+ - Tue, 23 Jun 2015 01:01:17 GMT
47
47
  body:
48
48
  encoding: UTF-8
49
49
  string: ''
50
50
  http_version:
51
- recorded_at: Fri, 05 Jun 2015 23:27:05 GMT
51
+ recorded_at: Tue, 23 Jun 2015 01:01:17 GMT
52
52
  - request:
53
53
  method: delete
54
- uri: "<DOCKER_HOST>/v1.16/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db"
54
+ uri: "<DOCKER_HOST>/v1.16/containers/90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260"
55
55
  body:
56
56
  encoding: US-ASCII
57
57
  string: ''
@@ -66,12 +66,12 @@ http_interactions:
66
66
  message:
67
67
  headers:
68
68
  Date:
69
- - Fri, 05 Jun 2015 23:27:05 GMT
69
+ - Tue, 23 Jun 2015 01:01:18 GMT
70
70
  body:
71
71
  encoding: UTF-8
72
72
  string: ''
73
73
  http_version:
74
- recorded_at: Fri, 05 Jun 2015 23:27:05 GMT
74
+ recorded_at: Tue, 23 Jun 2015 01:01:18 GMT
75
75
  - request:
76
76
  method: get
77
77
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -91,16 +91,16 @@ http_interactions:
91
91
  Content-Type:
92
92
  - application/json
93
93
  Date:
94
- - Fri, 05 Jun 2015 23:27:05 GMT
94
+ - Tue, 23 Jun 2015 01:01:18 GMT
95
95
  body:
96
96
  encoding: UTF-8
97
97
  string: |
98
- {"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":"1a75d722e1e5","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:03.762607668Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["15be473dcfb47481918db764ad1909235476faf55305ee70c58ff009cd1cc46d"],"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/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/hosts","Id":"1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.98","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:162","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:62","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24046,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:04.323323967Z"},"Volumes":{},"VolumesRW":{}}
98
+ {"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":"HNEWTONMAC3","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-23T01:01:16.697386544Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["70bb98cef1c5791b08effe8f7a2a6720ce1d30f44a15a5e75820e56c79f87caf"],"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/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e/hosts","Id":"3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.124","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7c","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:7c","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10668,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T01:01:17.216813656Z"},"Volumes":{},"VolumesRW":{}}
99
99
  http_version:
100
- recorded_at: Fri, 05 Jun 2015 23:27:05 GMT
100
+ recorded_at: Tue, 23 Jun 2015 01:01:18 GMT
101
101
  - request:
102
102
  method: post
103
- uri: "<DOCKER_HOST>/v1.16/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/kill"
103
+ uri: "<DOCKER_HOST>/v1.16/containers/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e/kill"
104
104
  body:
105
105
  encoding: US-ASCII
106
106
  string: ''
@@ -115,15 +115,15 @@ http_interactions:
115
115
  message:
116
116
  headers:
117
117
  Date:
118
- - Fri, 05 Jun 2015 23:27:05 GMT
118
+ - Tue, 23 Jun 2015 01:01:18 GMT
119
119
  body:
120
120
  encoding: UTF-8
121
121
  string: ''
122
122
  http_version:
123
- recorded_at: Fri, 05 Jun 2015 23:27:05 GMT
123
+ recorded_at: Tue, 23 Jun 2015 01:01:18 GMT
124
124
  - request:
125
125
  method: delete
126
- uri: "<DOCKER_HOST>/v1.16/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca"
126
+ uri: "<DOCKER_HOST>/v1.16/containers/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e"
127
127
  body:
128
128
  encoding: US-ASCII
129
129
  string: ''
@@ -138,12 +138,12 @@ http_interactions:
138
138
  message:
139
139
  headers:
140
140
  Date:
141
- - Fri, 05 Jun 2015 23:27:05 GMT
141
+ - Tue, 23 Jun 2015 01:01:18 GMT
142
142
  body:
143
143
  encoding: UTF-8
144
144
  string: ''
145
145
  http_version:
146
- recorded_at: Fri, 05 Jun 2015 23:27:05 GMT
146
+ recorded_at: Tue, 23 Jun 2015 01:01:18 GMT
147
147
  - request:
148
148
  method: get
149
149
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -163,7 +163,7 @@ http_interactions:
163
163
  Content-Type:
164
164
  - text/plain; charset=utf-8
165
165
  Date:
166
- - Fri, 05 Jun 2015 23:27:05 GMT
166
+ - Tue, 23 Jun 2015 01:01:18 GMT
167
167
  Content-Length:
168
168
  - '21'
169
169
  body:
@@ -171,7 +171,7 @@ http_interactions:
171
171
  string: |
172
172
  no such id: dev-test
173
173
  http_version:
174
- recorded_at: Fri, 05 Jun 2015 23:27:05 GMT
174
+ recorded_at: Tue, 23 Jun 2015 01:01:18 GMT
175
175
  - request:
176
176
  method: get
177
177
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -191,7 +191,7 @@ http_interactions:
191
191
  Content-Type:
192
192
  - text/plain; charset=utf-8
193
193
  Date:
194
- - Fri, 05 Jun 2015 23:27:05 GMT
194
+ - Tue, 23 Jun 2015 01:01:18 GMT
195
195
  Content-Length:
196
196
  - '21'
197
197
  body:
@@ -199,7 +199,7 @@ http_interactions:
199
199
  string: |
200
200
  no such id: dev-test
201
201
  http_version:
202
- recorded_at: Fri, 05 Jun 2015 23:27:05 GMT
202
+ recorded_at: Tue, 23 Jun 2015 01:01:18 GMT
203
203
  - request:
204
204
  method: get
205
205
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -219,7 +219,7 @@ http_interactions:
219
219
  Content-Type:
220
220
  - text/plain; charset=utf-8
221
221
  Date:
222
- - Fri, 05 Jun 2015 23:27:05 GMT
222
+ - Tue, 23 Jun 2015 01:01:18 GMT
223
223
  Content-Length:
224
224
  - '21'
225
225
  body:
@@ -227,7 +227,7 @@ http_interactions:
227
227
  string: |
228
228
  no such id: dev-test
229
229
  http_version:
230
- recorded_at: Fri, 05 Jun 2015 23:27:05 GMT
230
+ recorded_at: Tue, 23 Jun 2015 01:01:18 GMT
231
231
  - request:
232
232
  method: get
233
233
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -247,7 +247,7 @@ http_interactions:
247
247
  Content-Type:
248
248
  - text/plain; charset=utf-8
249
249
  Date:
250
- - Fri, 05 Jun 2015 23:27:05 GMT
250
+ - Tue, 23 Jun 2015 01:01:18 GMT
251
251
  Content-Length:
252
252
  - '21'
253
253
  body:
@@ -255,7 +255,7 @@ http_interactions:
255
255
  string: |
256
256
  no such id: dev-test
257
257
  http_version:
258
- recorded_at: Fri, 05 Jun 2015 23:27:05 GMT
258
+ recorded_at: Tue, 23 Jun 2015 01:01:18 GMT
259
259
  - request:
260
260
  method: get
261
261
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -275,7 +275,7 @@ http_interactions:
275
275
  Content-Type:
276
276
  - text/plain; charset=utf-8
277
277
  Date:
278
- - Fri, 05 Jun 2015 23:27:05 GMT
278
+ - Tue, 23 Jun 2015 01:01:18 GMT
279
279
  Content-Length:
280
280
  - '21'
281
281
  body:
@@ -283,7 +283,7 @@ http_interactions:
283
283
  string: |
284
284
  no such id: dev-logs
285
285
  http_version:
286
- recorded_at: Fri, 05 Jun 2015 23:27:05 GMT
286
+ recorded_at: Tue, 23 Jun 2015 01:01:18 GMT
287
287
  - request:
288
288
  method: get
289
289
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -303,7 +303,7 @@ http_interactions:
303
303
  Content-Type:
304
304
  - text/plain; charset=utf-8
305
305
  Date:
306
- - Fri, 05 Jun 2015 23:27:05 GMT
306
+ - Tue, 23 Jun 2015 01:01:18 GMT
307
307
  Content-Length:
308
308
  - '21'
309
309
  body:
@@ -311,7 +311,7 @@ http_interactions:
311
311
  string: |
312
312
  no such id: dev-logs
313
313
  http_version:
314
- recorded_at: Fri, 05 Jun 2015 23:27:05 GMT
314
+ recorded_at: Tue, 23 Jun 2015 01:01:18 GMT
315
315
  - request:
316
316
  method: get
317
317
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -331,7 +331,7 @@ http_interactions:
331
331
  Content-Type:
332
332
  - text/plain; charset=utf-8
333
333
  Date:
334
- - Fri, 05 Jun 2015 23:27:05 GMT
334
+ - Tue, 23 Jun 2015 01:01:18 GMT
335
335
  Content-Length:
336
336
  - '21'
337
337
  body:
@@ -339,7 +339,7 @@ http_interactions:
339
339
  string: |
340
340
  no such id: dev-logs
341
341
  http_version:
342
- recorded_at: Fri, 05 Jun 2015 23:27:05 GMT
342
+ recorded_at: Tue, 23 Jun 2015 01:01:18 GMT
343
343
  - request:
344
344
  method: get
345
345
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -359,7 +359,7 @@ http_interactions:
359
359
  Content-Type:
360
360
  - text/plain; charset=utf-8
361
361
  Date:
362
- - Fri, 05 Jun 2015 23:27:05 GMT
362
+ - Tue, 23 Jun 2015 01:01:18 GMT
363
363
  Content-Length:
364
364
  - '21'
365
365
  body:
@@ -367,5 +367,5 @@ http_interactions:
367
367
  string: |
368
368
  no such id: dev-logs
369
369
  http_version:
370
- recorded_at: Fri, 05 Jun 2015 23:27:05 GMT
370
+ recorded_at: Tue, 23 Jun 2015 01:01:18 GMT
371
371
  recorded_with: VCR 2.9.3
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - text/plain; charset=utf-8
21
21
  Date:
22
- - Fri, 05 Jun 2015 23:27:02 GMT
22
+ - Tue, 23 Jun 2015 01:01:14 GMT
23
23
  Content-Length:
24
24
  - '21'
25
25
  body:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  string: |
28
28
  no such id: dev-test
29
29
  http_version:
30
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
30
+ recorded_at: Tue, 23 Jun 2015 01:01:14 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -47,7 +47,7 @@ http_interactions:
47
47
  Content-Type:
48
48
  - text/plain; charset=utf-8
49
49
  Date:
50
- - Fri, 05 Jun 2015 23:27:02 GMT
50
+ - Tue, 23 Jun 2015 01:01:14 GMT
51
51
  Content-Length:
52
52
  - '21'
53
53
  body:
@@ -55,7 +55,7 @@ http_interactions:
55
55
  string: |
56
56
  no such id: dev-test
57
57
  http_version:
58
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
58
+ recorded_at: Tue, 23 Jun 2015 01:01:14 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -75,7 +75,7 @@ http_interactions:
75
75
  Content-Type:
76
76
  - text/plain; charset=utf-8
77
77
  Date:
78
- - Fri, 05 Jun 2015 23:27:02 GMT
78
+ - Tue, 23 Jun 2015 01:01:14 GMT
79
79
  Content-Length:
80
80
  - '21'
81
81
  body:
@@ -83,7 +83,7 @@ http_interactions:
83
83
  string: |
84
84
  no such id: dev-test
85
85
  http_version:
86
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
86
+ recorded_at: Tue, 23 Jun 2015 01:01:14 GMT
87
87
  - request:
88
88
  method: get
89
89
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -103,7 +103,7 @@ http_interactions:
103
103
  Content-Type:
104
104
  - text/plain; charset=utf-8
105
105
  Date:
106
- - Fri, 05 Jun 2015 23:27:02 GMT
106
+ - Tue, 23 Jun 2015 01:01:14 GMT
107
107
  Content-Length:
108
108
  - '21'
109
109
  body:
@@ -111,7 +111,7 @@ http_interactions:
111
111
  string: |
112
112
  no such id: dev-test
113
113
  http_version:
114
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
114
+ recorded_at: Tue, 23 Jun 2015 01:01:14 GMT
115
115
  - request:
116
116
  method: get
117
117
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -131,7 +131,7 @@ http_interactions:
131
131
  Content-Type:
132
132
  - text/plain; charset=utf-8
133
133
  Date:
134
- - Fri, 05 Jun 2015 23:27:02 GMT
134
+ - Tue, 23 Jun 2015 01:01:15 GMT
135
135
  Content-Length:
136
136
  - '21'
137
137
  body:
@@ -139,7 +139,7 @@ http_interactions:
139
139
  string: |
140
140
  no such id: dev-logs
141
141
  http_version:
142
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
142
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
143
143
  - request:
144
144
  method: get
145
145
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -159,7 +159,7 @@ http_interactions:
159
159
  Content-Type:
160
160
  - text/plain; charset=utf-8
161
161
  Date:
162
- - Fri, 05 Jun 2015 23:27:02 GMT
162
+ - Tue, 23 Jun 2015 01:01:15 GMT
163
163
  Content-Length:
164
164
  - '21'
165
165
  body:
@@ -167,7 +167,7 @@ http_interactions:
167
167
  string: |
168
168
  no such id: dev-logs
169
169
  http_version:
170
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
170
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
171
171
  - request:
172
172
  method: get
173
173
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -187,7 +187,7 @@ http_interactions:
187
187
  Content-Type:
188
188
  - text/plain; charset=utf-8
189
189
  Date:
190
- - Fri, 05 Jun 2015 23:27:02 GMT
190
+ - Tue, 23 Jun 2015 01:01:15 GMT
191
191
  Content-Length:
192
192
  - '21'
193
193
  body:
@@ -195,7 +195,7 @@ http_interactions:
195
195
  string: |
196
196
  no such id: dev-logs
197
197
  http_version:
198
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
198
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
199
199
  - request:
200
200
  method: get
201
201
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -215,7 +215,7 @@ http_interactions:
215
215
  Content-Type:
216
216
  - text/plain; charset=utf-8
217
217
  Date:
218
- - Fri, 05 Jun 2015 23:27:02 GMT
218
+ - Tue, 23 Jun 2015 01:01:15 GMT
219
219
  Content-Length:
220
220
  - '21'
221
221
  body:
@@ -223,7 +223,7 @@ http_interactions:
223
223
  string: |
224
224
  no such id: dev-logs
225
225
  http_version:
226
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
226
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
227
227
  - request:
228
228
  method: get
229
229
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -243,7 +243,7 @@ http_interactions:
243
243
  Content-Type:
244
244
  - text/plain; charset=utf-8
245
245
  Date:
246
- - Fri, 05 Jun 2015 23:27:02 GMT
246
+ - Tue, 23 Jun 2015 01:01:15 GMT
247
247
  Content-Length:
248
248
  - '21'
249
249
  body:
@@ -251,7 +251,7 @@ http_interactions:
251
251
  string: |
252
252
  no such id: dev-test
253
253
  http_version:
254
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
254
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
255
255
  - request:
256
256
  method: get
257
257
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -271,7 +271,7 @@ http_interactions:
271
271
  Content-Type:
272
272
  - text/plain; charset=utf-8
273
273
  Date:
274
- - Fri, 05 Jun 2015 23:27:02 GMT
274
+ - Tue, 23 Jun 2015 01:01:15 GMT
275
275
  Content-Length:
276
276
  - '21'
277
277
  body:
@@ -279,7 +279,7 @@ http_interactions:
279
279
  string: |
280
280
  no such id: dev-test
281
281
  http_version:
282
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
282
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
283
283
  - request:
284
284
  method: get
285
285
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -299,7 +299,7 @@ http_interactions:
299
299
  Content-Type:
300
300
  - text/plain; charset=utf-8
301
301
  Date:
302
- - Fri, 05 Jun 2015 23:27:02 GMT
302
+ - Tue, 23 Jun 2015 01:01:15 GMT
303
303
  Content-Length:
304
304
  - '21'
305
305
  body:
@@ -307,7 +307,7 @@ http_interactions:
307
307
  string: |
308
308
  no such id: dev-test
309
309
  http_version:
310
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
310
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
311
311
  - request:
312
312
  method: get
313
313
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -327,7 +327,7 @@ http_interactions:
327
327
  Content-Type:
328
328
  - text/plain; charset=utf-8
329
329
  Date:
330
- - Fri, 05 Jun 2015 23:27:02 GMT
330
+ - Tue, 23 Jun 2015 01:01:15 GMT
331
331
  Content-Length:
332
332
  - '21'
333
333
  body:
@@ -335,7 +335,7 @@ http_interactions:
335
335
  string: |
336
336
  no such id: dev-test
337
337
  http_version:
338
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
338
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
339
339
  - request:
340
340
  method: get
341
341
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -355,7 +355,7 @@ http_interactions:
355
355
  Content-Type:
356
356
  - text/plain; charset=utf-8
357
357
  Date:
358
- - Fri, 05 Jun 2015 23:27:02 GMT
358
+ - Tue, 23 Jun 2015 01:01:15 GMT
359
359
  Content-Length:
360
360
  - '21'
361
361
  body:
@@ -363,7 +363,7 @@ http_interactions:
363
363
  string: |
364
364
  no such id: dev-test
365
365
  http_version:
366
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
366
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
367
367
  - request:
368
368
  method: get
369
369
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -383,7 +383,7 @@ http_interactions:
383
383
  Content-Type:
384
384
  - text/plain; charset=utf-8
385
385
  Date:
386
- - Fri, 05 Jun 2015 23:27:02 GMT
386
+ - Tue, 23 Jun 2015 01:01:15 GMT
387
387
  Content-Length:
388
388
  - '21'
389
389
  body:
@@ -391,7 +391,7 @@ http_interactions:
391
391
  string: |
392
392
  no such id: dev-test
393
393
  http_version:
394
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
394
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
395
395
  - request:
396
396
  method: get
397
397
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -411,7 +411,7 @@ http_interactions:
411
411
  Content-Type:
412
412
  - text/plain; charset=utf-8
413
413
  Date:
414
- - Fri, 05 Jun 2015 23:27:02 GMT
414
+ - Tue, 23 Jun 2015 01:01:15 GMT
415
415
  Content-Length:
416
416
  - '21'
417
417
  body:
@@ -419,7 +419,7 @@ http_interactions:
419
419
  string: |
420
420
  no such id: dev-test
421
421
  http_version:
422
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
422
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
423
423
  - request:
424
424
  method: get
425
425
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -439,7 +439,7 @@ http_interactions:
439
439
  Content-Type:
440
440
  - text/plain; charset=utf-8
441
441
  Date:
442
- - Fri, 05 Jun 2015 23:27:02 GMT
442
+ - Tue, 23 Jun 2015 01:01:15 GMT
443
443
  Content-Length:
444
444
  - '21'
445
445
  body:
@@ -447,7 +447,7 @@ http_interactions:
447
447
  string: |
448
448
  no such id: dev-test
449
449
  http_version:
450
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
450
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
451
451
  - request:
452
452
  method: get
453
453
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -467,7 +467,7 @@ http_interactions:
467
467
  Content-Type:
468
468
  - text/plain; charset=utf-8
469
469
  Date:
470
- - Fri, 05 Jun 2015 23:27:02 GMT
470
+ - Tue, 23 Jun 2015 01:01:15 GMT
471
471
  Content-Length:
472
472
  - '21'
473
473
  body:
@@ -475,7 +475,7 @@ http_interactions:
475
475
  string: |
476
476
  no such id: dev-test
477
477
  http_version:
478
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
478
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
479
479
  - request:
480
480
  method: get
481
481
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -495,7 +495,7 @@ http_interactions:
495
495
  Content-Type:
496
496
  - text/plain; charset=utf-8
497
497
  Date:
498
- - Fri, 05 Jun 2015 23:27:02 GMT
498
+ - Tue, 23 Jun 2015 01:01:15 GMT
499
499
  Content-Length:
500
500
  - '21'
501
501
  body:
@@ -503,7 +503,7 @@ http_interactions:
503
503
  string: |
504
504
  no such id: dev-test
505
505
  http_version:
506
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
506
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
507
507
  - request:
508
508
  method: get
509
509
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -523,7 +523,7 @@ http_interactions:
523
523
  Content-Type:
524
524
  - text/plain; charset=utf-8
525
525
  Date:
526
- - Fri, 05 Jun 2015 23:27:02 GMT
526
+ - Tue, 23 Jun 2015 01:01:15 GMT
527
527
  Content-Length:
528
528
  - '21'
529
529
  body:
@@ -531,7 +531,7 @@ http_interactions:
531
531
  string: |
532
532
  no such id: dev-test
533
533
  http_version:
534
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
534
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
535
535
  - request:
536
536
  method: get
537
537
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -551,7 +551,7 @@ http_interactions:
551
551
  Content-Type:
552
552
  - text/plain; charset=utf-8
553
553
  Date:
554
- - Fri, 05 Jun 2015 23:27:02 GMT
554
+ - Tue, 23 Jun 2015 01:01:15 GMT
555
555
  Content-Length:
556
556
  - '21'
557
557
  body:
@@ -559,7 +559,7 @@ http_interactions:
559
559
  string: |
560
560
  no such id: dev-test
561
561
  http_version:
562
- recorded_at: Fri, 05 Jun 2015 23:27:02 GMT
562
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
563
563
  - request:
564
564
  method: get
565
565
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -579,7 +579,7 @@ http_interactions:
579
579
  Content-Type:
580
580
  - text/plain; charset=utf-8
581
581
  Date:
582
- - Fri, 05 Jun 2015 23:27:03 GMT
582
+ - Tue, 23 Jun 2015 01:01:15 GMT
583
583
  Content-Length:
584
584
  - '21'
585
585
  body:
@@ -587,7 +587,7 @@ http_interactions:
587
587
  string: |
588
588
  no such id: dev-test
589
589
  http_version:
590
- recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
590
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
591
591
  - request:
592
592
  method: get
593
593
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -607,7 +607,7 @@ http_interactions:
607
607
  Content-Type:
608
608
  - text/plain; charset=utf-8
609
609
  Date:
610
- - Fri, 05 Jun 2015 23:27:03 GMT
610
+ - Tue, 23 Jun 2015 01:01:15 GMT
611
611
  Content-Length:
612
612
  - '21'
613
613
  body:
@@ -615,7 +615,7 @@ http_interactions:
615
615
  string: |
616
616
  no such id: dev-test
617
617
  http_version:
618
- recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
618
+ recorded_at: Tue, 23 Jun 2015 01:01:15 GMT
619
619
  - request:
620
620
  method: get
621
621
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -635,7 +635,7 @@ http_interactions:
635
635
  Content-Type:
636
636
  - text/plain; charset=utf-8
637
637
  Date:
638
- - Fri, 05 Jun 2015 23:27:03 GMT
638
+ - Tue, 23 Jun 2015 01:01:16 GMT
639
639
  Content-Length:
640
640
  - '21'
641
641
  body:
@@ -643,7 +643,7 @@ http_interactions:
643
643
  string: |
644
644
  no such id: dev-test
645
645
  http_version:
646
- recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
646
+ recorded_at: Tue, 23 Jun 2015 01:01:16 GMT
647
647
  - request:
648
648
  method: get
649
649
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -663,7 +663,7 @@ http_interactions:
663
663
  Content-Type:
664
664
  - text/plain; charset=utf-8
665
665
  Date:
666
- - Fri, 05 Jun 2015 23:27:03 GMT
666
+ - Tue, 23 Jun 2015 01:01:16 GMT
667
667
  Content-Length:
668
668
  - '21'
669
669
  body:
@@ -671,7 +671,7 @@ http_interactions:
671
671
  string: |
672
672
  no such id: dev-test
673
673
  http_version:
674
- recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
674
+ recorded_at: Tue, 23 Jun 2015 01:01:16 GMT
675
675
  - request:
676
676
  method: get
677
677
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -691,7 +691,7 @@ http_interactions:
691
691
  Content-Type:
692
692
  - text/plain; charset=utf-8
693
693
  Date:
694
- - Fri, 05 Jun 2015 23:27:03 GMT
694
+ - Tue, 23 Jun 2015 01:01:16 GMT
695
695
  Content-Length:
696
696
  - '21'
697
697
  body:
@@ -699,7 +699,7 @@ http_interactions:
699
699
  string: |
700
700
  no such id: dev-test
701
701
  http_version:
702
- recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
702
+ recorded_at: Tue, 23 Jun 2015 01:01:16 GMT
703
703
  - request:
704
704
  method: get
705
705
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -719,7 +719,7 @@ http_interactions:
719
719
  Content-Type:
720
720
  - text/plain; charset=utf-8
721
721
  Date:
722
- - Fri, 05 Jun 2015 23:27:03 GMT
722
+ - Tue, 23 Jun 2015 01:01:16 GMT
723
723
  Content-Length:
724
724
  - '21'
725
725
  body:
@@ -727,7 +727,7 @@ http_interactions:
727
727
  string: |
728
728
  no such id: dev-test
729
729
  http_version:
730
- recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
730
+ recorded_at: Tue, 23 Jun 2015 01:01:16 GMT
731
731
  - request:
732
732
  method: get
733
733
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -747,7 +747,7 @@ http_interactions:
747
747
  Content-Type:
748
748
  - text/plain; charset=utf-8
749
749
  Date:
750
- - Fri, 05 Jun 2015 23:27:03 GMT
750
+ - Tue, 23 Jun 2015 01:01:16 GMT
751
751
  Content-Length:
752
752
  - '21'
753
753
  body:
@@ -755,7 +755,7 @@ http_interactions:
755
755
  string: |
756
756
  no such id: dev-test
757
757
  http_version:
758
- recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
758
+ recorded_at: Tue, 23 Jun 2015 01:01:16 GMT
759
759
  - request:
760
760
  method: get
761
761
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -775,7 +775,7 @@ http_interactions:
775
775
  Content-Type:
776
776
  - text/plain; charset=utf-8
777
777
  Date:
778
- - Fri, 05 Jun 2015 23:27:03 GMT
778
+ - Tue, 23 Jun 2015 01:01:16 GMT
779
779
  Content-Length:
780
780
  - '21'
781
781
  body:
@@ -783,7 +783,7 @@ http_interactions:
783
783
  string: |
784
784
  no such id: dev-test
785
785
  http_version:
786
- recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
786
+ recorded_at: Tue, 23 Jun 2015 01:01:16 GMT
787
787
  - request:
788
788
  method: get
789
789
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -803,7 +803,7 @@ http_interactions:
803
803
  Content-Type:
804
804
  - text/plain; charset=utf-8
805
805
  Date:
806
- - Fri, 05 Jun 2015 23:27:03 GMT
806
+ - Tue, 23 Jun 2015 01:01:16 GMT
807
807
  Content-Length:
808
808
  - '21'
809
809
  body:
@@ -811,7 +811,7 @@ http_interactions:
811
811
  string: |
812
812
  no such id: dev-test
813
813
  http_version:
814
- recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
814
+ recorded_at: Tue, 23 Jun 2015 01:01:16 GMT
815
815
  - request:
816
816
  method: get
817
817
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -831,7 +831,7 @@ http_interactions:
831
831
  Content-Type:
832
832
  - text/plain; charset=utf-8
833
833
  Date:
834
- - Fri, 05 Jun 2015 23:27:03 GMT
834
+ - Tue, 23 Jun 2015 01:01:16 GMT
835
835
  Content-Length:
836
836
  - '21'
837
837
  body:
@@ -839,7 +839,7 @@ http_interactions:
839
839
  string: |
840
840
  no such id: dev-test
841
841
  http_version:
842
- recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
842
+ recorded_at: Tue, 23 Jun 2015 01:01:16 GMT
843
843
  - request:
844
844
  method: get
845
845
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -859,7 +859,7 @@ http_interactions:
859
859
  Content-Type:
860
860
  - text/plain; charset=utf-8
861
861
  Date:
862
- - Fri, 05 Jun 2015 23:27:03 GMT
862
+ - Tue, 23 Jun 2015 01:01:16 GMT
863
863
  Content-Length:
864
864
  - '21'
865
865
  body:
@@ -867,35 +867,7 @@ http_interactions:
867
867
  string: |
868
868
  no such id: dev-test
869
869
  http_version:
870
- recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
871
- - request:
872
- method: get
873
- uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
874
- body:
875
- encoding: US-ASCII
876
- string: ''
877
- headers:
878
- User-Agent:
879
- - Swipely/Docker-API 1.21.4
880
- Content-Type:
881
- - text/plain
882
- response:
883
- status:
884
- code: 404
885
- message:
886
- headers:
887
- Content-Type:
888
- - text/plain; charset=utf-8
889
- Date:
890
- - Fri, 05 Jun 2015 23:27:03 GMT
891
- Content-Length:
892
- - '21'
893
- body:
894
- encoding: UTF-8
895
- string: |
896
- no such id: dev-test
897
- http_version:
898
- recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
870
+ recorded_at: Tue, 23 Jun 2015 01:01:16 GMT
899
871
  - request:
900
872
  method: get
901
873
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -915,16 +887,16 @@ http_interactions:
915
887
  Content-Type:
916
888
  - application/json
917
889
  Date:
918
- - Fri, 05 Jun 2015 23:27:03 GMT
890
+ - Tue, 23 Jun 2015 01:01:16 GMT
919
891
  body:
920
892
  encoding: UTF-8
921
893
  string: |
922
- {"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":"1a34650d3814","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:03.753156173Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"","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":"","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":null,"VolumesRW":null}
894
+ {"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":"HNEWTONMAC3","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-23T01:01:16.709319775Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"","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":"","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":null,"VolumesRW":null}
923
895
  http_version:
924
- recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
896
+ recorded_at: Tue, 23 Jun 2015 01:01:16 GMT
925
897
  - request:
926
898
  method: get
927
- uri: "<DOCKER_HOST>/v1.16/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/json"
899
+ uri: "<DOCKER_HOST>/v1.16/containers/90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260/json"
928
900
  body:
929
901
  encoding: US-ASCII
930
902
  string: ''
@@ -941,13 +913,13 @@ http_interactions:
941
913
  Content-Type:
942
914
  - application/json
943
915
  Date:
944
- - Fri, 05 Jun 2015 23:27:03 GMT
916
+ - Tue, 23 Jun 2015 01:01:16 GMT
945
917
  body:
946
918
  encoding: UTF-8
947
919
  string: |
948
- {"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":"1a34650d3814","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:03.753156173Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"","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":"","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":null,"VolumesRW":null}
920
+ {"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":"HNEWTONMAC3","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-23T01:01:16.709319775Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"","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":"","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":null,"VolumesRW":null}
949
921
  http_version:
950
- recorded_at: Fri, 05 Jun 2015 23:27:03 GMT
922
+ recorded_at: Tue, 23 Jun 2015 01:01:16 GMT
951
923
  - request:
952
924
  method: get
953
925
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -967,16 +939,16 @@ http_interactions:
967
939
  Content-Type:
968
940
  - application/json
969
941
  Date:
970
- - Fri, 05 Jun 2015 23:27:04 GMT
942
+ - Tue, 23 Jun 2015 01:01:16 GMT
971
943
  body:
972
944
  encoding: UTF-8
973
945
  string: |
974
- {"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":"1a34650d3814","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:03.753156173Z","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/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/hosts","Id":"1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.97","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:161","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:61","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24050,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:04.459717997Z"},"Volumes":{},"VolumesRW":{}}
946
+ {"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":"HNEWTONMAC3","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-23T01:01:16.709319775Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"","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":"","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":{},"VolumesRW":{}}
975
947
  http_version:
976
- recorded_at: Fri, 05 Jun 2015 23:27:04 GMT
948
+ recorded_at: Tue, 23 Jun 2015 01:01:16 GMT
977
949
  - request:
978
950
  method: get
979
- uri: "<DOCKER_HOST>/v1.16/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/json"
951
+ uri: "<DOCKER_HOST>/v1.16/containers/90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260/json"
980
952
  body:
981
953
  encoding: US-ASCII
982
954
  string: ''
@@ -993,13 +965,13 @@ http_interactions:
993
965
  Content-Type:
994
966
  - application/json
995
967
  Date:
996
- - Fri, 05 Jun 2015 23:27:04 GMT
968
+ - Tue, 23 Jun 2015 01:01:17 GMT
997
969
  body:
998
970
  encoding: UTF-8
999
971
  string: |
1000
- {"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":"1a34650d3814","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:03.753156173Z","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/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/hosts","Id":"1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.97","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:161","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:61","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1a34650d3814b86aecc72fc037996565b7bd7466b773b151af99a56069e209db/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24050,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:04.459717997Z"},"Volumes":{},"VolumesRW":{}}
972
+ {"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":"HNEWTONMAC3","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-23T01:01:16.709319775Z","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/90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260/hosts","Id":"90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260/90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260-json.log","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.123","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:7b","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/90b2e796069606160b86ef6c05855034a4a8a44e697228bdf88ceb7c87a11260/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10674,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T01:01:17.366708009Z"},"Volumes":{},"VolumesRW":{}}
1001
973
  http_version:
1002
- recorded_at: Fri, 05 Jun 2015 23:27:04 GMT
974
+ recorded_at: Tue, 23 Jun 2015 01:01:17 GMT
1003
975
  - request:
1004
976
  method: get
1005
977
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -1019,16 +991,16 @@ http_interactions:
1019
991
  Content-Type:
1020
992
  - application/json
1021
993
  Date:
1022
- - Fri, 05 Jun 2015 23:27:04 GMT
994
+ - Tue, 23 Jun 2015 01:01:17 GMT
1023
995
  body:
1024
996
  encoding: UTF-8
1025
997
  string: |
1026
- {"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":"1a75d722e1e5","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:03.762607668Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["15be473dcfb47481918db764ad1909235476faf55305ee70c58ff009cd1cc46d"],"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/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/hosts","Id":"1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.98","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:162","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:62","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24046,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:04.323323967Z"},"Volumes":{},"VolumesRW":{}}
998
+ {"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":"HNEWTONMAC3","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-23T01:01:16.697386544Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["70bb98cef1c5791b08effe8f7a2a6720ce1d30f44a15a5e75820e56c79f87caf"],"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/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e/hosts","Id":"3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.124","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7c","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:7c","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10668,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T01:01:17.216813656Z"},"Volumes":{},"VolumesRW":{}}
1027
999
  http_version:
1028
- recorded_at: Fri, 05 Jun 2015 23:27:04 GMT
1000
+ recorded_at: Tue, 23 Jun 2015 01:01:17 GMT
1029
1001
  - request:
1030
1002
  method: get
1031
- uri: "<DOCKER_HOST>/v1.16/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/json"
1003
+ uri: "<DOCKER_HOST>/v1.16/containers/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e/json"
1032
1004
  body:
1033
1005
  encoding: US-ASCII
1034
1006
  string: ''
@@ -1045,11 +1017,11 @@ http_interactions:
1045
1017
  Content-Type:
1046
1018
  - application/json
1047
1019
  Date:
1048
- - Fri, 05 Jun 2015 23:27:04 GMT
1020
+ - Tue, 23 Jun 2015 01:01:17 GMT
1049
1021
  body:
1050
1022
  encoding: UTF-8
1051
1023
  string: |
1052
- {"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":"1a75d722e1e5","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:03.762607668Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["15be473dcfb47481918db764ad1909235476faf55305ee70c58ff009cd1cc46d"],"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/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/hosts","Id":"1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.98","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:162","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:62","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/1a75d722e1e51ef4a2bcf2ddc297a7bf11f5dd43c82a5021e56e0923e89526ca/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":24046,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:27:04.323323967Z"},"Volumes":{},"VolumesRW":{}}
1024
+ {"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":"HNEWTONMAC3","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-23T01:01:16.697386544Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["70bb98cef1c5791b08effe8f7a2a6720ce1d30f44a15a5e75820e56c79f87caf"],"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/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e/hosts","Id":"3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","LogPath":"/mnt/sda1/var/lib/docker/containers/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e-json.log","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.124","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7c","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:7c","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/3a80a783eab19a5ecaeda2c3add1ab06c2e48bf148e57a939aaee5081eb6499e/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10668,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T01:01:17.216813656Z"},"Volumes":{},"VolumesRW":{}}
1053
1025
  http_version:
1054
- recorded_at: Fri, 05 Jun 2015 23:27:04 GMT
1026
+ recorded_at: Tue, 23 Jun 2015 01:01:17 GMT
1055
1027
  recorded_with: VCR 2.9.3