bigrig 0.4.2 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/Gemfile.lock +24 -26
  4. data/bigrig.gemspec +2 -2
  5. data/lib/bigrig/models/container.rb +2 -2
  6. data/lib/bigrig/runner.rb +2 -10
  7. data/lib/bigrig/version.rb +1 -1
  8. data/lib/bigrig/waiter.rb +20 -0
  9. data/lib/bigrig.rb +1 -0
  10. data/spec/bigrig/actions/run_action_spec.rb +8 -0
  11. data/spec/bigrig/docker_adapter_spec.rb +1 -1
  12. data/spec/bigrig/models/container_spec.rb +0 -18
  13. data/spec/bigrig_spec.rb +20 -6
  14. data/spec/data/wait_for/Dockerfile +4 -0
  15. data/spec/data/wait_for/bigrig-wait.sh +5 -0
  16. data/spec/data/wait_for/bigrig.json +8 -0
  17. data/spec/data/wait_for_broken/Dockerfile +4 -0
  18. data/spec/data/wait_for_broken/bigrig-wait.sh +3 -0
  19. data/spec/data/wait_for_broken/bigrig.json +8 -0
  20. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +65 -65
  21. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +71 -71
  22. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +11 -11
  23. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +5 -5
  24. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +20 -20
  25. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +13 -13
  26. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +20 -20
  27. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +19 -19
  28. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +20 -20
  29. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +29 -29
  30. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +23 -23
  31. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +8 -8
  32. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +3 -3
  33. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +13 -13
  34. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +54 -54
  35. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +1059 -553
  36. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +40 -40
  37. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +44 -44
  38. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +13 -13
  39. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +12 -12
  40. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +35 -35
  41. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +35 -35
  42. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_env_variables/starts_the_container_with_env_set.yml +35 -35
  43. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +41 -41
  44. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +20 -20
  45. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +13 -15
  46. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +17 -17
  47. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +34 -34
  48. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +43 -43
  49. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +222 -26
  50. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +180 -74
  51. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +181 -75
  52. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +351 -139
  53. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +130 -130
  54. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +140 -140
  55. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +175 -69
  56. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +159 -53
  57. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes/should_pass_volumes_to_the_right_container.yml +180 -74
  58. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +351 -139
  59. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +130 -130
  60. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +268 -77
  61. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +180 -74
  62. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +28 -28
  63. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +266 -158
  64. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +78 -158
  65. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +187 -191
  66. data/spec/vcr/bigrig/dev/spec/data/dev_json/tails_the_logs.yml +38 -118
  67. data/spec/vcr/bigrig/dev/spec/data/scan_json/leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +811 -345
  68. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_dependant_containers_when_the_scanned_file_changes.yml +813 -375
  69. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_the_container_when_the_scanned_file_changes.yml +855 -363
  70. data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +23 -23
  71. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +14 -14
  72. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +14 -14
  73. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +17 -17
  74. data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +12 -12
  75. data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +17 -17
  76. data/spec/vcr/bigrig/run/spec/data/wait_for/bigrig_json/waits_for_wait_for.yml +180 -0
  77. data/spec/vcr/bigrig/run/spec/data/wait_for_broken_json/fails_with_an_error.yml +12 -12
  78. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +28 -28
  79. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +21 -21
  80. data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +28 -28
  81. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +135 -486
  82. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +146 -472
  83. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +402 -192
  84. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +980 -396
  85. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_dependant_containers_when_the_scanned_file_changes.yml +916 -388
  86. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_the_container_when_the_scanned_file_changes.yml +919 -391
  87. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +23 -23
  88. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +159 -53
  89. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +159 -53
  90. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +286 -31
  91. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +159 -53
  92. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +159 -53
  93. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for/bigrig_json_waits_for_wait_for.yml +522 -0
  94. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for_broken_json_fails_with_an_error.yml +175 -80
  95. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +1036 -526
  96. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +1024 -514
  97. metadata +17 -12
  98. data/spec/data/wait_for.json +0 -9
  99. data/spec/data/wait_for_broken.json +0 -9
  100. data/spec/vcr/bigrig/run/spec/data/wait_for_json/waits_for_wait_for.yml +0 -180
  101. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for_json_waits_for_wait_for.yml +0 -412
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.20.0
11
+ - Swipely/Docker-API 1.21.4
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -19,12 +19,12 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Mon, 20 Apr 2015 23:27:41 GMT
22
+ - Fri, 05 Jun 2015 23:24:52 GMT
23
23
  body:
24
24
  encoding: UTF-8
25
25
  string: "{\"status\":\"Pulling repository hawknewton/show-env\"}\r\n{\"status\":\"Pulling
26
- image (latest) from hawknewton/show-env\",\"progressDetail\":{},\"id\":\"b9c5be3a918d\"}{\"status\":\"Pulling
27
- image (latest) from hawknewton/show-env, endpoint: https://registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b9c5be3a918d\"}{\"status\":\"Pulling
26
+ image (0.0.1) from hawknewton/show-env\",\"progressDetail\":{},\"id\":\"b9c5be3a918d\"}{\"status\":\"Pulling
27
+ image (0.0.1) from hawknewton/show-env, endpoint: https://registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b9c5be3a918d\"}{\"status\":\"Pulling
28
28
  dependent layers\",\"progressDetail\":{},\"id\":\"b9c5be3a918d\"}{\"status\":\"Download
29
29
  complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
30
30
  complete\",\"progressDetail\":{},\"id\":\"50215b109eda\"}{\"status\":\"Download
@@ -47,7 +47,7 @@ http_interactions:
47
47
  complete\",\"progressDetail\":{},\"id\":\"b9c5be3a918d\"}{\"status\":\"Status:
48
48
  Image is up to date for hawknewton/show-env\"}\r\n"
49
49
  http_version:
50
- recorded_at: Mon, 20 Apr 2015 23:27:43 GMT
50
+ recorded_at: Fri, 05 Jun 2015 23:24:54 GMT
51
51
  - request:
52
52
  method: post
53
53
  uri: "<DOCKER_HOST>/v1.16/containers/create?name=single-test"
@@ -56,7 +56,7 @@ http_interactions:
56
56
  string: '{"Image":"b9c5be3a918d"}'
57
57
  headers:
58
58
  User-Agent:
59
- - Swipely/Docker-API 1.20.0
59
+ - Swipely/Docker-API 1.21.4
60
60
  Content-Type:
61
61
  - application/json
62
62
  response:
@@ -67,24 +67,24 @@ http_interactions:
67
67
  Content-Type:
68
68
  - application/json
69
69
  Date:
70
- - Mon, 20 Apr 2015 23:27:43 GMT
70
+ - Fri, 05 Jun 2015 23:24:54 GMT
71
71
  Content-Length:
72
72
  - '90'
73
73
  body:
74
74
  encoding: UTF-8
75
75
  string: |
76
- {"Id":"e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73","Warnings":null}
76
+ {"Id":"201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44","Warnings":null}
77
77
  http_version:
78
- recorded_at: Mon, 20 Apr 2015 23:27:43 GMT
78
+ recorded_at: Fri, 05 Jun 2015 23:24:54 GMT
79
79
  - request:
80
80
  method: post
81
- uri: "<DOCKER_HOST>/v1.16/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/start"
81
+ uri: "<DOCKER_HOST>/v1.16/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/start"
82
82
  body:
83
83
  encoding: UTF-8
84
84
  string: "{}"
85
85
  headers:
86
86
  User-Agent:
87
- - Swipely/Docker-API 1.20.0
87
+ - Swipely/Docker-API 1.21.4
88
88
  Content-Type:
89
89
  - application/json
90
90
  response:
@@ -93,12 +93,12 @@ http_interactions:
93
93
  message:
94
94
  headers:
95
95
  Date:
96
- - Mon, 20 Apr 2015 23:27:43 GMT
96
+ - Fri, 05 Jun 2015 23:24:55 GMT
97
97
  body:
98
98
  encoding: UTF-8
99
99
  string: ''
100
100
  http_version:
101
- recorded_at: Mon, 20 Apr 2015 23:27:43 GMT
101
+ recorded_at: Fri, 05 Jun 2015 23:24:55 GMT
102
102
  - request:
103
103
  method: get
104
104
  uri: "<DOCKER_HOST>/v1.16/containers/single-test/json"
@@ -107,7 +107,7 @@ http_interactions:
107
107
  string: ''
108
108
  headers:
109
109
  User-Agent:
110
- - Swipely/Docker-API 1.20.0
110
+ - Swipely/Docker-API 1.21.4
111
111
  Content-Type:
112
112
  - text/plain
113
113
  response:
@@ -118,13 +118,13 @@ http_interactions:
118
118
  Content-Type:
119
119
  - application/json
120
120
  Date:
121
- - Mon, 20 Apr 2015 23:27:43 GMT
121
+ - Fri, 05 Jun 2015 23:24:55 GMT
122
122
  body:
123
123
  encoding: UTF-8
124
124
  string: |
125
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e55da81cf434","Image":"b9c5be3a918d","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:43.566377213Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/hosts","Id":"e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/single-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.180","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b4","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b4","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13089,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:43.957773161Z"},"Volumes":{},"VolumesRW":{}}
125
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"201b07e820a3","Image":"b9c5be3a918d","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:24:54.863290712Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/hosts","Id":"201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44-json.log","MountLabel":"","Name":"/single-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.56","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:138","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:38","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23236,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:24:55.22510097Z"},"Volumes":{},"VolumesRW":{}}
126
126
  http_version:
127
- recorded_at: Mon, 20 Apr 2015 23:27:43 GMT
127
+ recorded_at: Fri, 05 Jun 2015 23:24:55 GMT
128
128
  - request:
129
129
  method: get
130
130
  uri: "<DOCKER_HOST>/v1.16/containers/single-test/json"
@@ -133,7 +133,7 @@ http_interactions:
133
133
  string: ''
134
134
  headers:
135
135
  User-Agent:
136
- - Swipely/Docker-API 1.20.0
136
+ - Swipely/Docker-API 1.21.4
137
137
  Content-Type:
138
138
  - text/plain
139
139
  response:
@@ -144,22 +144,22 @@ http_interactions:
144
144
  Content-Type:
145
145
  - application/json
146
146
  Date:
147
- - Mon, 20 Apr 2015 23:27:44 GMT
147
+ - Fri, 05 Jun 2015 23:24:55 GMT
148
148
  body:
149
149
  encoding: UTF-8
150
150
  string: |
151
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e55da81cf434","Image":"b9c5be3a918d","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:43.566377213Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/hosts","Id":"e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/single-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.180","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b4","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b4","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13089,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:43.957773161Z"},"Volumes":{},"VolumesRW":{}}
151
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"201b07e820a3","Image":"b9c5be3a918d","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:24:54.863290712Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/hosts","Id":"201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44-json.log","MountLabel":"","Name":"/single-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.56","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:138","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:38","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":23236,"Restarting":false,"Running":true,"StartedAt":"2015-06-05T23:24:55.22510097Z"},"Volumes":{},"VolumesRW":{}}
152
152
  http_version:
153
- recorded_at: Mon, 20 Apr 2015 23:27:43 GMT
153
+ recorded_at: Fri, 05 Jun 2015 23:24:55 GMT
154
154
  - request:
155
155
  method: post
156
- uri: "<DOCKER_HOST>/v1.16/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/kill"
156
+ uri: "<DOCKER_HOST>/v1.16/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/kill"
157
157
  body:
158
158
  encoding: US-ASCII
159
159
  string: ''
160
160
  headers:
161
161
  User-Agent:
162
- - Swipely/Docker-API 1.20.0
162
+ - Swipely/Docker-API 1.21.4
163
163
  Content-Type:
164
164
  - text/plain
165
165
  response:
@@ -168,12 +168,12 @@ http_interactions:
168
168
  message:
169
169
  headers:
170
170
  Date:
171
- - Mon, 20 Apr 2015 23:27:44 GMT
171
+ - Fri, 05 Jun 2015 23:24:55 GMT
172
172
  body:
173
173
  encoding: UTF-8
174
174
  string: ''
175
175
  http_version:
176
- recorded_at: Mon, 20 Apr 2015 23:27:44 GMT
176
+ recorded_at: Fri, 05 Jun 2015 23:24:55 GMT
177
177
  - request:
178
178
  method: get
179
179
  uri: "<DOCKER_HOST>/v1.16/containers/single-test/json"
@@ -182,7 +182,7 @@ http_interactions:
182
182
  string: ''
183
183
  headers:
184
184
  User-Agent:
185
- - Swipely/Docker-API 1.20.0
185
+ - Swipely/Docker-API 1.21.4
186
186
  Content-Type:
187
187
  - text/plain
188
188
  response:
@@ -193,13 +193,13 @@ http_interactions:
193
193
  Content-Type:
194
194
  - application/json
195
195
  Date:
196
- - Mon, 20 Apr 2015 23:27:44 GMT
196
+ - Fri, 05 Jun 2015 23:24:55 GMT
197
197
  body:
198
198
  encoding: UTF-8
199
199
  string: |
200
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e55da81cf434","Image":"b9c5be3a918d","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:43.566377213Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/hosts","Id":"e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/single-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:27:44.186497219Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:27:43.957773161Z"},"Volumes":{},"VolumesRW":{}}
200
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"201b07e820a3","Image":"b9c5be3a918d","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:24:54.863290712Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/hosts","Id":"201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44-json.log","MountLabel":"","Name":"/single-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:24:55.472519461Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:24:55.22510097Z"},"Volumes":{},"VolumesRW":{}}
201
201
  http_version:
202
- recorded_at: Mon, 20 Apr 2015 23:27:44 GMT
202
+ recorded_at: Fri, 05 Jun 2015 23:24:55 GMT
203
203
  - request:
204
204
  method: get
205
205
  uri: "<DOCKER_HOST>/v1.16/containers/single-test/json"
@@ -208,7 +208,7 @@ http_interactions:
208
208
  string: ''
209
209
  headers:
210
210
  User-Agent:
211
- - Swipely/Docker-API 1.20.0
211
+ - Swipely/Docker-API 1.21.4
212
212
  Content-Type:
213
213
  - text/plain
214
214
  response:
@@ -219,13 +219,13 @@ http_interactions:
219
219
  Content-Type:
220
220
  - application/json
221
221
  Date:
222
- - Mon, 20 Apr 2015 23:27:44 GMT
222
+ - Fri, 05 Jun 2015 23:24:55 GMT
223
223
  body:
224
224
  encoding: UTF-8
225
225
  string: |
226
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e55da81cf434","Image":"b9c5be3a918d","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:43.566377213Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/hosts","Id":"e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/single-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:27:44.186497219Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:27:43.957773161Z"},"Volumes":{},"VolumesRW":{}}
226
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"201b07e820a3","Image":"b9c5be3a918d","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:24:54.863290712Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/hosts","Id":"201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44-json.log","MountLabel":"","Name":"/single-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:24:55.472519461Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:24:55.22510097Z"},"Volumes":{},"VolumesRW":{}}
227
227
  http_version:
228
- recorded_at: Mon, 20 Apr 2015 23:27:44 GMT
228
+ recorded_at: Fri, 05 Jun 2015 23:24:55 GMT
229
229
  - request:
230
230
  method: get
231
231
  uri: "<DOCKER_HOST>/v1.16/containers/single-test/json"
@@ -234,7 +234,7 @@ http_interactions:
234
234
  string: ''
235
235
  headers:
236
236
  User-Agent:
237
- - Swipely/Docker-API 1.20.0
237
+ - Swipely/Docker-API 1.21.4
238
238
  Content-Type:
239
239
  - text/plain
240
240
  response:
@@ -245,22 +245,22 @@ http_interactions:
245
245
  Content-Type:
246
246
  - application/json
247
247
  Date:
248
- - Mon, 20 Apr 2015 23:27:44 GMT
248
+ - Fri, 05 Jun 2015 23:24:55 GMT
249
249
  body:
250
250
  encoding: UTF-8
251
251
  string: |
252
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e55da81cf434","Image":"b9c5be3a918d","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:43.566377213Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/hosts","Id":"e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/single-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":137,"FinishedAt":"2015-04-20T23:27:44.186497219Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-04-20T23:27:43.957773161Z"},"Volumes":{},"VolumesRW":{}}
252
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"201b07e820a3","Image":"b9c5be3a918d","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:24:54.863290712Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":null},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/hosts","Id":"201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44-json.log","MountLabel":"","Name":"/single-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":137,"FinishedAt":"2015-06-05T23:24:55.472519461Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-06-05T23:24:55.22510097Z"},"Volumes":{},"VolumesRW":{}}
253
253
  http_version:
254
- recorded_at: Mon, 20 Apr 2015 23:27:44 GMT
254
+ recorded_at: Fri, 05 Jun 2015 23:24:55 GMT
255
255
  - request:
256
256
  method: delete
257
- uri: "<DOCKER_HOST>/v1.16/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73"
257
+ uri: "<DOCKER_HOST>/v1.16/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44"
258
258
  body:
259
259
  encoding: US-ASCII
260
260
  string: ''
261
261
  headers:
262
262
  User-Agent:
263
- - Swipely/Docker-API 1.20.0
263
+ - Swipely/Docker-API 1.21.4
264
264
  Content-Type:
265
265
  - text/plain
266
266
  response:
@@ -269,21 +269,21 @@ http_interactions:
269
269
  message:
270
270
  headers:
271
271
  Date:
272
- - Mon, 20 Apr 2015 23:27:44 GMT
272
+ - Fri, 05 Jun 2015 23:24:55 GMT
273
273
  body:
274
274
  encoding: UTF-8
275
275
  string: ''
276
276
  http_version:
277
- recorded_at: Mon, 20 Apr 2015 23:27:44 GMT
277
+ recorded_at: Fri, 05 Jun 2015 23:24:55 GMT
278
278
  - request:
279
279
  method: get
280
- uri: "<DOCKER_HOST>/v1.16/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/json"
280
+ uri: "<DOCKER_HOST>/v1.16/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/json"
281
281
  body:
282
282
  encoding: US-ASCII
283
283
  string: ''
284
284
  headers:
285
285
  User-Agent:
286
- - Swipely/Docker-API 1.20.0
286
+ - Swipely/Docker-API 1.21.4
287
287
  Content-Type:
288
288
  - text/plain
289
289
  response:
@@ -294,24 +294,24 @@ http_interactions:
294
294
  Content-Type:
295
295
  - text/plain; charset=utf-8
296
296
  Date:
297
- - Mon, 20 Apr 2015 23:27:44 GMT
297
+ - Fri, 05 Jun 2015 23:24:55 GMT
298
298
  Content-Length:
299
- - '84'
299
+ - '77'
300
300
  body:
301
301
  encoding: UTF-8
302
302
  string: |
303
- No such container: e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73
303
+ no such id: 201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44
304
304
  http_version:
305
- recorded_at: Mon, 20 Apr 2015 23:27:44 GMT
305
+ recorded_at: Fri, 05 Jun 2015 23:24:55 GMT
306
306
  - request:
307
307
  method: get
308
- uri: "<DOCKER_HOST>/v1.16/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/json"
308
+ uri: "<DOCKER_HOST>/v1.16/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/json"
309
309
  body:
310
310
  encoding: US-ASCII
311
311
  string: ''
312
312
  headers:
313
313
  User-Agent:
314
- - Swipely/Docker-API 1.20.0
314
+ - Swipely/Docker-API 1.21.4
315
315
  Content-Type:
316
316
  - text/plain
317
317
  response:
@@ -322,24 +322,24 @@ http_interactions:
322
322
  Content-Type:
323
323
  - text/plain; charset=utf-8
324
324
  Date:
325
- - Mon, 20 Apr 2015 23:27:44 GMT
325
+ - Fri, 05 Jun 2015 23:24:55 GMT
326
326
  Content-Length:
327
- - '84'
327
+ - '77'
328
328
  body:
329
329
  encoding: UTF-8
330
330
  string: |
331
- No such container: e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73
331
+ no such id: 201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44
332
332
  http_version:
333
- recorded_at: Mon, 20 Apr 2015 23:27:44 GMT
333
+ recorded_at: Fri, 05 Jun 2015 23:24:55 GMT
334
334
  - request:
335
335
  method: get
336
- uri: "<DOCKER_HOST>/v1.16/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/json"
336
+ uri: "<DOCKER_HOST>/v1.16/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/json"
337
337
  body:
338
338
  encoding: US-ASCII
339
339
  string: ''
340
340
  headers:
341
341
  User-Agent:
342
- - Swipely/Docker-API 1.20.0
342
+ - Swipely/Docker-API 1.21.4
343
343
  Content-Type:
344
344
  - text/plain
345
345
  response:
@@ -350,24 +350,24 @@ http_interactions:
350
350
  Content-Type:
351
351
  - text/plain; charset=utf-8
352
352
  Date:
353
- - Mon, 20 Apr 2015 23:27:44 GMT
353
+ - Fri, 05 Jun 2015 23:24:55 GMT
354
354
  Content-Length:
355
- - '84'
355
+ - '77'
356
356
  body:
357
357
  encoding: UTF-8
358
358
  string: |
359
- No such container: e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73
359
+ no such id: 201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44
360
360
  http_version:
361
- recorded_at: Mon, 20 Apr 2015 23:27:44 GMT
361
+ recorded_at: Fri, 05 Jun 2015 23:24:55 GMT
362
362
  - request:
363
363
  method: get
364
- uri: "<DOCKER_HOST>/v1.16/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/json"
364
+ uri: "<DOCKER_HOST>/v1.16/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/json"
365
365
  body:
366
366
  encoding: US-ASCII
367
367
  string: ''
368
368
  headers:
369
369
  User-Agent:
370
- - Swipely/Docker-API 1.20.0
370
+ - Swipely/Docker-API 1.21.4
371
371
  Content-Type:
372
372
  - text/plain
373
373
  response:
@@ -378,24 +378,24 @@ http_interactions:
378
378
  Content-Type:
379
379
  - text/plain; charset=utf-8
380
380
  Date:
381
- - Mon, 20 Apr 2015 23:27:44 GMT
381
+ - Fri, 05 Jun 2015 23:24:55 GMT
382
382
  Content-Length:
383
- - '84'
383
+ - '77'
384
384
  body:
385
385
  encoding: UTF-8
386
386
  string: |
387
- No such container: e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73
387
+ no such id: 201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44
388
388
  http_version:
389
- recorded_at: Mon, 20 Apr 2015 23:27:44 GMT
389
+ recorded_at: Fri, 05 Jun 2015 23:24:55 GMT
390
390
  - request:
391
391
  method: post
392
- uri: "<DOCKER_HOST>/v1.16/containers/e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73/kill"
392
+ uri: "<DOCKER_HOST>/v1.16/containers/201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44/kill"
393
393
  body:
394
394
  encoding: US-ASCII
395
395
  string: ''
396
396
  headers:
397
397
  User-Agent:
398
- - Swipely/Docker-API 1.20.0
398
+ - Swipely/Docker-API 1.21.4
399
399
  Content-Type:
400
400
  - text/plain
401
401
  response:
@@ -406,13 +406,13 @@ http_interactions:
406
406
  Content-Type:
407
407
  - text/plain; charset=utf-8
408
408
  Date:
409
- - Mon, 20 Apr 2015 23:27:44 GMT
409
+ - Fri, 05 Jun 2015 23:24:55 GMT
410
410
  Content-Length:
411
- - '84'
411
+ - '77'
412
412
  body:
413
413
  encoding: UTF-8
414
414
  string: |
415
- No such container: e55da81cf4346e004bd4fa7c0dd88d3e2423521c5c506020f081974270f85d73
415
+ no such id: 201b07e820a392d6d2b442234a0536df9a16052eead5c12ca13197bd8f667d44
416
416
  http_version:
417
- recorded_at: Mon, 20 Apr 2015 23:27:44 GMT
417
+ recorded_at: Fri, 05 Jun 2015 23:24:55 GMT
418
418
  recorded_with: VCR 2.9.3
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.20.0
11
+ - Swipely/Docker-API 1.21.4
12
12
  Content-Type:
13
13
  - application/tar
14
14
  Transfer-Encoding:
@@ -23,24 +23,24 @@ http_interactions:
23
23
  Content-Type:
24
24
  - application/json
25
25
  Date:
26
- - Mon, 20 Apr 2015 23:28:14 GMT
26
+ - Fri, 05 Jun 2015 23:25:33 GMT
27
27
  body:
28
28
  encoding: UTF-8
29
29
  string: "{\"stream\":\"Step 0 : FROM hawknewton/true\\n\"}\r\n{\"stream\":\"
30
30
  ---\\u003e 5fbce35eb337\\n\"}\r\n{\"stream\":\"Step 1 : ADD test /\\n\"}\r\n{\"stream\":\"
31
- ---\\u003e 63dba9455078\\n\"}\r\n{\"stream\":\"Removing intermediate container
32
- a5cf731f3356\\n\"}\r\n{\"stream\":\"Successfully built 63dba9455078\\n\"}\r\n"
31
+ ---\\u003e 66a4dbb856d2\\n\"}\r\n{\"stream\":\"Removing intermediate container
32
+ a565a489a4cc\\n\"}\r\n{\"stream\":\"Successfully built 66a4dbb856d2\\n\"}\r\n"
33
33
  http_version:
34
- recorded_at: Mon, 20 Apr 2015 23:28:14 GMT
34
+ recorded_at: Fri, 05 Jun 2015 23:25:34 GMT
35
35
  - request:
36
36
  method: get
37
- uri: "<DOCKER_HOST>/v1.16/images/63dba9455078/json"
37
+ uri: "<DOCKER_HOST>/v1.16/images/66a4dbb856d2/json"
38
38
  body:
39
39
  encoding: US-ASCII
40
40
  string: ''
41
41
  headers:
42
42
  User-Agent:
43
- - Swipely/Docker-API 1.20.0
43
+ - Swipely/Docker-API 1.21.4
44
44
  Content-Type:
45
45
  - text/plain
46
46
  response:
@@ -51,13 +51,13 @@ http_interactions:
51
51
  Content-Type:
52
52
  - application/json
53
53
  Date:
54
- - Mon, 20 Apr 2015 23:28:14 GMT
54
+ - Fri, 05 Jun 2015 23:25:34 GMT
55
55
  Content-Length:
56
- - '1546'
56
+ - '1570'
57
57
  body:
58
58
  encoding: UTF-8
59
59
  string: |
60
- {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"a5cf731f3356358141e3801166e115b890ef1e0dc0e98c4993ed28dbfa82cad3","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ADD file:9384d35a0e7df2ca0bf917725194267b8b673f1fe0d7e79a385c94b8ec6c9d1a in /"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:28:14.270707171Z","DockerVersion":"1.5.0","Id":"63dba9455078220f004224c1b0a5032b46ab36b8b87909ea59a88cf91d4fcdf5","Os":"linux","Parent":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Size":0,"VirtualSize":125}
60
+ {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"a565a489a4cc134748b2fe214400d4720abbeeebcc5a997bffa9077ec98b37ec","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ADD file:35d3259094c7f7980461248416e52f51a8c79055181a287813e044dbd0c1b514 in /"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"5a0d2e5f7af6","Image":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-05T23:25:34.005272618Z","DockerVersion":"1.6.0","Id":"66a4dbb856d2fea6ca20437b61ebae121eb6a5eac6c7f2be80ce4c9d7cbf88e2","Os":"linux","Parent":"5fbce35eb33780adf252ee2f87b7156660fdb5c7ca54a0fb4e262a87447cceeb","Size":0,"VirtualSize":125}
61
61
  http_version:
62
- recorded_at: Mon, 20 Apr 2015 23:28:14 GMT
62
+ recorded_at: Fri, 05 Jun 2015 23:25:34 GMT
63
63
  recorded_with: VCR 2.9.3
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.20.0
11
+ - Swipely/Docker-API 1.21.4
12
12
  Content-Type:
13
13
  - application/tar
14
14
  Transfer-Encoding:
@@ -23,13 +23,13 @@ http_interactions:
23
23
  Content-Type:
24
24
  - application/json
25
25
  Date:
26
- - Mon, 20 Apr 2015 23:28:14 GMT
26
+ - Fri, 05 Jun 2015 23:25:34 GMT
27
27
  body:
28
28
  encoding: UTF-8
29
29
  string: "{\"stream\":\"Step 0 : FROM hawknewton/true\\n\"}\r\n{\"stream\":\"
30
30
  ---\\u003e 5fbce35eb337\\n\"}\r\n{\"stream\":\"Step 1 : ADD test /\\n\"}\r\n{\"stream\":\"
31
- ---\\u003e 26b842674509\\n\"}\r\n{\"stream\":\"Removing intermediate container
32
- 4b0b49e895da\\n\"}\r\n{\"stream\":\"Successfully built 26b842674509\\n\"}\r\n"
31
+ ---\\u003e f1b439797fb7\\n\"}\r\n{\"stream\":\"Removing intermediate container
32
+ 45532013e695\\n\"}\r\n{\"stream\":\"Successfully built f1b439797fb7\\n\"}\r\n"
33
33
  http_version:
34
- recorded_at: Mon, 20 Apr 2015 23:28:14 GMT
34
+ recorded_at: Fri, 05 Jun 2015 23:25:34 GMT
35
35
  recorded_with: VCR 2.9.3