bigrig 0.2.1 → 0.2.2

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 (86) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile.lock +3 -1
  4. data/bigrig.gemspec +1 -0
  5. data/lib/bigrig/dependency_graph.rb +3 -1
  6. data/lib/bigrig/version.rb +1 -1
  7. data/spec/bigrig/dependency_graph_spec.rb +10 -4
  8. data/spec/bigrig_spec.rb +44 -34
  9. data/spec/data/scan.json +2 -1
  10. data/spec/spec_helper.rb +1 -13
  11. data/spec/support/wait_for.rb +35 -0
  12. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +46 -46
  13. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +49 -49
  14. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +8 -8
  15. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +4 -4
  16. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +8 -8
  17. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +9 -9
  18. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +12 -12
  19. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +12 -12
  20. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +8 -8
  21. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +22 -22
  22. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +17 -17
  23. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +4 -4
  24. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +2 -2
  25. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +6 -6
  26. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +36 -36
  27. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +453 -77
  28. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +16 -16
  29. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +32 -32
  30. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +10 -10
  31. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +8 -8
  32. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +28 -28
  33. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +27 -27
  34. 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 +27 -27
  35. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +32 -32
  36. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +8 -8
  37. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +11 -11
  38. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +13 -13
  39. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +16 -16
  40. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +25 -25
  41. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +20 -20
  42. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +40 -40
  43. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +41 -41
  44. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +73 -73
  45. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +52 -52
  46. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +74 -74
  47. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +36 -36
  48. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +38 -38
  49. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes/should_pass_volumes_to_the_right_container.yml +40 -40
  50. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +73 -73
  51. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +52 -52
  52. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +35 -35
  53. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +38 -38
  54. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +14 -14
  55. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +427 -37
  56. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +32 -32
  57. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +472 -76
  58. data/spec/vcr/bigrig/dev/spec/data/dev_json/tails_the_logs.yml +16 -16
  59. data/spec/vcr/bigrig/dev/spec/data/scan_json/leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +1544 -86
  60. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_dependant_containers_when_the_scanned_file_changes.yml +1725 -69
  61. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_the_container_when_the_scanned_file_changes.yml +1536 -96
  62. data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +17 -17
  63. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +11 -11
  64. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +11 -11
  65. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +11 -11
  66. data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +9 -9
  67. data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +13 -13
  68. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +20 -20
  69. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +15 -15
  70. data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +21 -21
  71. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +105 -305
  72. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +109 -307
  73. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +116 -116
  74. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +385 -382
  75. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_dependant_containers_when_the_scanned_file_changes.yml +357 -354
  76. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_the_container_when_the_scanned_file_changes.yml +358 -1091
  77. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +21 -21
  78. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +24 -24
  79. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +24 -24
  80. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +17 -17
  81. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +24 -24
  82. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +24 -24
  83. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +439 -63
  84. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +430 -54
  85. data/spec/waitfor_spec.rb +10 -0
  86. metadata +18 -2
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: "<DOCKER_HOST>/v1.16/containers/b4dec6f5eacaf42395098e0a68f276990e53a02d0aba3c00bdf7c26779fe50ef/json"
5
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -13,22 +13,24 @@ http_interactions:
13
13
  - text/plain
14
14
  response:
15
15
  status:
16
- code: 200
16
+ code: 404
17
17
  message:
18
18
  headers:
19
19
  Content-Type:
20
- - application/json
20
+ - text/plain; charset=utf-8
21
21
  Date:
22
- - Mon, 06 Apr 2015 21:59:45 GMT
22
+ - Mon, 20 Apr 2015 23:29:17 GMT
23
+ Content-Length:
24
+ - '28'
23
25
  body:
24
26
  encoding: UTF-8
25
27
  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":"b4dec6f5eaca","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-06T21:59:44.100054525Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b4dec6f5eacaf42395098e0a68f276990e53a02d0aba3c00bdf7c26779fe50ef/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b4dec6f5eacaf42395098e0a68f276990e53a02d0aba3c00bdf7c26779fe50ef/hosts","Id":"b4dec6f5eacaf42395098e0a68f276990e53a02d0aba3c00bdf7c26779fe50ef","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.228","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:1e4","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:e4","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/b4dec6f5eacaf42395098e0a68f276990e53a02d0aba3c00bdf7c26779fe50ef/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":7717,"Restarting":false,"Running":true,"StartedAt":"2015-04-06T21:59:44.894395358Z"},"Volumes":{},"VolumesRW":{}}
28
+ No such container: dev-test
27
29
  http_version:
28
- recorded_at: Mon, 06 Apr 2015 21:59:43 GMT
30
+ recorded_at: Mon, 20 Apr 2015 23:29:16 GMT
29
31
  - request:
30
32
  method: get
31
- uri: "<DOCKER_HOST>/v1.16/containers/b39442e7ac139e03ffff0c976e7e14c5b97e629ea83f09216d79cb99ccb84603/json"
33
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
32
34
  body:
33
35
  encoding: US-ASCII
34
36
  string: ''
@@ -39,19 +41,21 @@ http_interactions:
39
41
  - text/plain
40
42
  response:
41
43
  status:
42
- code: 200
44
+ code: 404
43
45
  message:
44
46
  headers:
45
47
  Content-Type:
46
- - application/json
48
+ - text/plain; charset=utf-8
47
49
  Date:
48
- - Mon, 06 Apr 2015 21:59:45 GMT
50
+ - Mon, 20 Apr 2015 23:29:17 GMT
51
+ Content-Length:
52
+ - '28'
49
53
  body:
50
54
  encoding: UTF-8
51
55
  string: |
52
- {"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":"b39442e7ac13","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-06T21:59:44.10735081Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/b39442e7ac139e03ffff0c976e7e14c5b97e629ea83f09216d79cb99ccb84603/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/b39442e7ac139e03ffff0c976e7e14c5b97e629ea83f09216d79cb99ccb84603/hosts","Id":"b39442e7ac139e03ffff0c976e7e14c5b97e629ea83f09216d79cb99ccb84603","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.1.227","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:1e3","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:01:e3","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/b39442e7ac139e03ffff0c976e7e14c5b97e629ea83f09216d79cb99ccb84603/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":7703,"Restarting":false,"Running":true,"StartedAt":"2015-04-06T21:59:44.744531052Z"},"Volumes":{},"VolumesRW":{}}
56
+ No such container: dev-test
53
57
  http_version:
54
- recorded_at: Mon, 06 Apr 2015 21:59:43 GMT
58
+ recorded_at: Mon, 20 Apr 2015 23:29:16 GMT
55
59
  - request:
56
60
  method: get
57
61
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -71,7 +75,7 @@ http_interactions:
71
75
  Content-Type:
72
76
  - text/plain; charset=utf-8
73
77
  Date:
74
- - Thu, 09 Apr 2015 19:01:29 GMT
78
+ - Mon, 20 Apr 2015 23:29:17 GMT
75
79
  Content-Length:
76
80
  - '28'
77
81
  body:
@@ -79,7 +83,7 @@ http_interactions:
79
83
  string: |
80
84
  No such container: dev-test
81
85
  http_version:
82
- recorded_at: Thu, 09 Apr 2015 19:01:31 GMT
86
+ recorded_at: Mon, 20 Apr 2015 23:29:16 GMT
83
87
  - request:
84
88
  method: get
85
89
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -99,7 +103,7 @@ http_interactions:
99
103
  Content-Type:
100
104
  - text/plain; charset=utf-8
101
105
  Date:
102
- - Thu, 09 Apr 2015 19:01:29 GMT
106
+ - Mon, 20 Apr 2015 23:29:17 GMT
103
107
  Content-Length:
104
108
  - '28'
105
109
  body:
@@ -107,10 +111,10 @@ http_interactions:
107
111
  string: |
108
112
  No such container: dev-test
109
113
  http_version:
110
- recorded_at: Thu, 09 Apr 2015 19:01:31 GMT
114
+ recorded_at: Mon, 20 Apr 2015 23:29:16 GMT
111
115
  - request:
112
116
  method: get
113
- uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
117
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
114
118
  body:
115
119
  encoding: US-ASCII
116
120
  string: ''
@@ -127,18 +131,18 @@ http_interactions:
127
131
  Content-Type:
128
132
  - text/plain; charset=utf-8
129
133
  Date:
130
- - Thu, 09 Apr 2015 19:01:29 GMT
134
+ - Mon, 20 Apr 2015 23:29:17 GMT
131
135
  Content-Length:
132
136
  - '28'
133
137
  body:
134
138
  encoding: UTF-8
135
139
  string: |
136
- No such container: dev-test
140
+ No such container: dev-logs
137
141
  http_version:
138
- recorded_at: Thu, 09 Apr 2015 19:01:31 GMT
142
+ recorded_at: Mon, 20 Apr 2015 23:29:16 GMT
139
143
  - request:
140
144
  method: get
141
- uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
145
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
142
146
  body:
143
147
  encoding: US-ASCII
144
148
  string: ''
@@ -155,15 +159,15 @@ http_interactions:
155
159
  Content-Type:
156
160
  - text/plain; charset=utf-8
157
161
  Date:
158
- - Thu, 09 Apr 2015 19:01:29 GMT
162
+ - Mon, 20 Apr 2015 23:29:17 GMT
159
163
  Content-Length:
160
164
  - '28'
161
165
  body:
162
166
  encoding: UTF-8
163
167
  string: |
164
- No such container: dev-test
168
+ No such container: dev-logs
165
169
  http_version:
166
- recorded_at: Thu, 09 Apr 2015 19:01:32 GMT
170
+ recorded_at: Mon, 20 Apr 2015 23:29:16 GMT
167
171
  - request:
168
172
  method: get
169
173
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -183,7 +187,7 @@ http_interactions:
183
187
  Content-Type:
184
188
  - text/plain; charset=utf-8
185
189
  Date:
186
- - Thu, 09 Apr 2015 19:01:29 GMT
190
+ - Mon, 20 Apr 2015 23:29:17 GMT
187
191
  Content-Length:
188
192
  - '28'
189
193
  body:
@@ -191,7 +195,7 @@ http_interactions:
191
195
  string: |
192
196
  No such container: dev-logs
193
197
  http_version:
194
- recorded_at: Thu, 09 Apr 2015 19:01:32 GMT
198
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
195
199
  - request:
196
200
  method: get
197
201
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -211,7 +215,7 @@ http_interactions:
211
215
  Content-Type:
212
216
  - text/plain; charset=utf-8
213
217
  Date:
214
- - Thu, 09 Apr 2015 19:01:29 GMT
218
+ - Mon, 20 Apr 2015 23:29:17 GMT
215
219
  Content-Length:
216
220
  - '28'
217
221
  body:
@@ -219,10 +223,10 @@ http_interactions:
219
223
  string: |
220
224
  No such container: dev-logs
221
225
  http_version:
222
- recorded_at: Thu, 09 Apr 2015 19:01:32 GMT
226
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
223
227
  - request:
224
228
  method: get
225
- uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
229
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
226
230
  body:
227
231
  encoding: US-ASCII
228
232
  string: ''
@@ -239,18 +243,18 @@ http_interactions:
239
243
  Content-Type:
240
244
  - text/plain; charset=utf-8
241
245
  Date:
242
- - Thu, 09 Apr 2015 19:01:29 GMT
246
+ - Mon, 20 Apr 2015 23:29:17 GMT
243
247
  Content-Length:
244
248
  - '28'
245
249
  body:
246
250
  encoding: UTF-8
247
251
  string: |
248
- No such container: dev-logs
252
+ No such container: dev-test
249
253
  http_version:
250
- recorded_at: Thu, 09 Apr 2015 19:01:32 GMT
254
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
251
255
  - request:
252
256
  method: get
253
- uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
257
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
254
258
  body:
255
259
  encoding: US-ASCII
256
260
  string: ''
@@ -267,15 +271,183 @@ http_interactions:
267
271
  Content-Type:
268
272
  - text/plain; charset=utf-8
269
273
  Date:
270
- - Thu, 09 Apr 2015 19:01:29 GMT
274
+ - Mon, 20 Apr 2015 23:29:17 GMT
271
275
  Content-Length:
272
276
  - '28'
273
277
  body:
274
278
  encoding: UTF-8
275
279
  string: |
276
- No such container: dev-logs
280
+ No such container: dev-test
281
+ http_version:
282
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
283
+ - request:
284
+ method: get
285
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
286
+ body:
287
+ encoding: US-ASCII
288
+ string: ''
289
+ headers:
290
+ User-Agent:
291
+ - Swipely/Docker-API 1.20.0
292
+ Content-Type:
293
+ - text/plain
294
+ response:
295
+ status:
296
+ code: 404
297
+ message:
298
+ headers:
299
+ Content-Type:
300
+ - text/plain; charset=utf-8
301
+ Date:
302
+ - Mon, 20 Apr 2015 23:29:17 GMT
303
+ Content-Length:
304
+ - '28'
305
+ body:
306
+ encoding: UTF-8
307
+ string: |
308
+ No such container: dev-test
309
+ http_version:
310
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
311
+ - request:
312
+ method: get
313
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
314
+ body:
315
+ encoding: US-ASCII
316
+ string: ''
317
+ headers:
318
+ User-Agent:
319
+ - Swipely/Docker-API 1.20.0
320
+ Content-Type:
321
+ - text/plain
322
+ response:
323
+ status:
324
+ code: 404
325
+ message:
326
+ headers:
327
+ Content-Type:
328
+ - text/plain; charset=utf-8
329
+ Date:
330
+ - Mon, 20 Apr 2015 23:29:17 GMT
331
+ Content-Length:
332
+ - '28'
333
+ body:
334
+ encoding: UTF-8
335
+ string: |
336
+ No such container: dev-test
337
+ http_version:
338
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
339
+ - request:
340
+ method: get
341
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
342
+ body:
343
+ encoding: US-ASCII
344
+ string: ''
345
+ headers:
346
+ User-Agent:
347
+ - Swipely/Docker-API 1.20.0
348
+ Content-Type:
349
+ - text/plain
350
+ response:
351
+ status:
352
+ code: 404
353
+ message:
354
+ headers:
355
+ Content-Type:
356
+ - text/plain; charset=utf-8
357
+ Date:
358
+ - Mon, 20 Apr 2015 23:29:17 GMT
359
+ Content-Length:
360
+ - '28'
361
+ body:
362
+ encoding: UTF-8
363
+ string: |
364
+ No such container: dev-test
365
+ http_version:
366
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
367
+ - request:
368
+ method: get
369
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
370
+ body:
371
+ encoding: US-ASCII
372
+ string: ''
373
+ headers:
374
+ User-Agent:
375
+ - Swipely/Docker-API 1.20.0
376
+ Content-Type:
377
+ - text/plain
378
+ response:
379
+ status:
380
+ code: 404
381
+ message:
382
+ headers:
383
+ Content-Type:
384
+ - text/plain; charset=utf-8
385
+ Date:
386
+ - Mon, 20 Apr 2015 23:29:17 GMT
387
+ Content-Length:
388
+ - '28'
389
+ body:
390
+ encoding: UTF-8
391
+ string: |
392
+ No such container: dev-test
393
+ http_version:
394
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
395
+ - request:
396
+ method: get
397
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
398
+ body:
399
+ encoding: US-ASCII
400
+ string: ''
401
+ headers:
402
+ User-Agent:
403
+ - Swipely/Docker-API 1.20.0
404
+ Content-Type:
405
+ - text/plain
406
+ response:
407
+ status:
408
+ code: 404
409
+ message:
410
+ headers:
411
+ Content-Type:
412
+ - text/plain; charset=utf-8
413
+ Date:
414
+ - Mon, 20 Apr 2015 23:29:17 GMT
415
+ Content-Length:
416
+ - '28'
417
+ body:
418
+ encoding: UTF-8
419
+ string: |
420
+ No such container: dev-test
421
+ http_version:
422
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
423
+ - request:
424
+ method: get
425
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
426
+ body:
427
+ encoding: US-ASCII
428
+ string: ''
429
+ headers:
430
+ User-Agent:
431
+ - Swipely/Docker-API 1.20.0
432
+ Content-Type:
433
+ - text/plain
434
+ response:
435
+ status:
436
+ code: 404
437
+ message:
438
+ headers:
439
+ Content-Type:
440
+ - text/plain; charset=utf-8
441
+ Date:
442
+ - Mon, 20 Apr 2015 23:29:17 GMT
443
+ Content-Length:
444
+ - '28'
445
+ body:
446
+ encoding: UTF-8
447
+ string: |
448
+ No such container: dev-test
277
449
  http_version:
278
- recorded_at: Thu, 09 Apr 2015 19:01:32 GMT
450
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
279
451
  - request:
280
452
  method: get
281
453
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -295,7 +467,7 @@ http_interactions:
295
467
  Content-Type:
296
468
  - text/plain; charset=utf-8
297
469
  Date:
298
- - Thu, 09 Apr 2015 19:01:29 GMT
470
+ - Mon, 20 Apr 2015 23:29:17 GMT
299
471
  Content-Length:
300
472
  - '28'
301
473
  body:
@@ -303,7 +475,7 @@ http_interactions:
303
475
  string: |
304
476
  No such container: dev-test
305
477
  http_version:
306
- recorded_at: Thu, 09 Apr 2015 19:01:32 GMT
478
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
307
479
  - request:
308
480
  method: get
309
481
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -323,7 +495,7 @@ http_interactions:
323
495
  Content-Type:
324
496
  - text/plain; charset=utf-8
325
497
  Date:
326
- - Thu, 09 Apr 2015 19:01:29 GMT
498
+ - Mon, 20 Apr 2015 23:29:17 GMT
327
499
  Content-Length:
328
500
  - '28'
329
501
  body:
@@ -331,7 +503,7 @@ http_interactions:
331
503
  string: |
332
504
  No such container: dev-test
333
505
  http_version:
334
- recorded_at: Thu, 09 Apr 2015 19:01:32 GMT
506
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
335
507
  - request:
336
508
  method: get
337
509
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -351,7 +523,7 @@ http_interactions:
351
523
  Content-Type:
352
524
  - text/plain; charset=utf-8
353
525
  Date:
354
- - Thu, 09 Apr 2015 19:01:29 GMT
526
+ - Mon, 20 Apr 2015 23:29:17 GMT
355
527
  Content-Length:
356
528
  - '28'
357
529
  body:
@@ -359,7 +531,7 @@ http_interactions:
359
531
  string: |
360
532
  No such container: dev-test
361
533
  http_version:
362
- recorded_at: Thu, 09 Apr 2015 19:01:32 GMT
534
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
363
535
  - request:
364
536
  method: get
365
537
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -379,7 +551,7 @@ http_interactions:
379
551
  Content-Type:
380
552
  - text/plain; charset=utf-8
381
553
  Date:
382
- - Thu, 09 Apr 2015 19:01:29 GMT
554
+ - Mon, 20 Apr 2015 23:29:17 GMT
383
555
  Content-Length:
384
556
  - '28'
385
557
  body:
@@ -387,7 +559,7 @@ http_interactions:
387
559
  string: |
388
560
  No such container: dev-test
389
561
  http_version:
390
- recorded_at: Thu, 09 Apr 2015 19:01:32 GMT
562
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
391
563
  - request:
392
564
  method: get
393
565
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -407,7 +579,7 @@ http_interactions:
407
579
  Content-Type:
408
580
  - text/plain; charset=utf-8
409
581
  Date:
410
- - Thu, 09 Apr 2015 19:01:30 GMT
582
+ - Mon, 20 Apr 2015 23:29:17 GMT
411
583
  Content-Length:
412
584
  - '28'
413
585
  body:
@@ -415,7 +587,7 @@ http_interactions:
415
587
  string: |
416
588
  No such container: dev-test
417
589
  http_version:
418
- recorded_at: Thu, 09 Apr 2015 19:01:32 GMT
590
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
419
591
  - request:
420
592
  method: get
421
593
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -435,7 +607,7 @@ http_interactions:
435
607
  Content-Type:
436
608
  - text/plain; charset=utf-8
437
609
  Date:
438
- - Thu, 09 Apr 2015 19:01:30 GMT
610
+ - Mon, 20 Apr 2015 23:29:18 GMT
439
611
  Content-Length:
440
612
  - '28'
441
613
  body:
@@ -443,7 +615,7 @@ http_interactions:
443
615
  string: |
444
616
  No such container: dev-test
445
617
  http_version:
446
- recorded_at: Thu, 09 Apr 2015 19:01:32 GMT
618
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
447
619
  - request:
448
620
  method: get
449
621
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -463,7 +635,7 @@ http_interactions:
463
635
  Content-Type:
464
636
  - text/plain; charset=utf-8
465
637
  Date:
466
- - Thu, 09 Apr 2015 19:01:30 GMT
638
+ - Mon, 20 Apr 2015 23:29:18 GMT
467
639
  Content-Length:
468
640
  - '28'
469
641
  body:
@@ -471,7 +643,7 @@ http_interactions:
471
643
  string: |
472
644
  No such container: dev-test
473
645
  http_version:
474
- recorded_at: Thu, 09 Apr 2015 19:01:32 GMT
646
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
475
647
  - request:
476
648
  method: get
477
649
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -491,7 +663,7 @@ http_interactions:
491
663
  Content-Type:
492
664
  - text/plain; charset=utf-8
493
665
  Date:
494
- - Thu, 09 Apr 2015 19:01:30 GMT
666
+ - Mon, 20 Apr 2015 23:29:18 GMT
495
667
  Content-Length:
496
668
  - '28'
497
669
  body:
@@ -499,7 +671,231 @@ http_interactions:
499
671
  string: |
500
672
  No such container: dev-test
501
673
  http_version:
502
- recorded_at: Thu, 09 Apr 2015 19:01:32 GMT
674
+ recorded_at: Mon, 20 Apr 2015 23:29:17 GMT
675
+ - request:
676
+ method: get
677
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
678
+ body:
679
+ encoding: US-ASCII
680
+ string: ''
681
+ headers:
682
+ User-Agent:
683
+ - Swipely/Docker-API 1.20.0
684
+ Content-Type:
685
+ - text/plain
686
+ response:
687
+ status:
688
+ code: 404
689
+ message:
690
+ headers:
691
+ Content-Type:
692
+ - text/plain; charset=utf-8
693
+ Date:
694
+ - Mon, 20 Apr 2015 23:29:18 GMT
695
+ Content-Length:
696
+ - '28'
697
+ body:
698
+ encoding: UTF-8
699
+ string: |
700
+ No such container: dev-test
701
+ http_version:
702
+ recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
703
+ - request:
704
+ method: get
705
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
706
+ body:
707
+ encoding: US-ASCII
708
+ string: ''
709
+ headers:
710
+ User-Agent:
711
+ - Swipely/Docker-API 1.20.0
712
+ Content-Type:
713
+ - text/plain
714
+ response:
715
+ status:
716
+ code: 404
717
+ message:
718
+ headers:
719
+ Content-Type:
720
+ - text/plain; charset=utf-8
721
+ Date:
722
+ - Mon, 20 Apr 2015 23:29:18 GMT
723
+ Content-Length:
724
+ - '28'
725
+ body:
726
+ encoding: UTF-8
727
+ string: |
728
+ No such container: dev-test
729
+ http_version:
730
+ recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
731
+ - request:
732
+ method: get
733
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
734
+ body:
735
+ encoding: US-ASCII
736
+ string: ''
737
+ headers:
738
+ User-Agent:
739
+ - Swipely/Docker-API 1.20.0
740
+ Content-Type:
741
+ - text/plain
742
+ response:
743
+ status:
744
+ code: 404
745
+ message:
746
+ headers:
747
+ Content-Type:
748
+ - text/plain; charset=utf-8
749
+ Date:
750
+ - Mon, 20 Apr 2015 23:29:18 GMT
751
+ Content-Length:
752
+ - '28'
753
+ body:
754
+ encoding: UTF-8
755
+ string: |
756
+ No such container: dev-test
757
+ http_version:
758
+ recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
759
+ - request:
760
+ method: get
761
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
762
+ body:
763
+ encoding: US-ASCII
764
+ string: ''
765
+ headers:
766
+ User-Agent:
767
+ - Swipely/Docker-API 1.20.0
768
+ Content-Type:
769
+ - text/plain
770
+ response:
771
+ status:
772
+ code: 404
773
+ message:
774
+ headers:
775
+ Content-Type:
776
+ - text/plain; charset=utf-8
777
+ Date:
778
+ - Mon, 20 Apr 2015 23:29:18 GMT
779
+ Content-Length:
780
+ - '28'
781
+ body:
782
+ encoding: UTF-8
783
+ string: |
784
+ No such container: dev-test
785
+ http_version:
786
+ recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
787
+ - request:
788
+ method: get
789
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
790
+ body:
791
+ encoding: US-ASCII
792
+ string: ''
793
+ headers:
794
+ User-Agent:
795
+ - Swipely/Docker-API 1.20.0
796
+ Content-Type:
797
+ - text/plain
798
+ response:
799
+ status:
800
+ code: 404
801
+ message:
802
+ headers:
803
+ Content-Type:
804
+ - text/plain; charset=utf-8
805
+ Date:
806
+ - Mon, 20 Apr 2015 23:29:18 GMT
807
+ Content-Length:
808
+ - '28'
809
+ body:
810
+ encoding: UTF-8
811
+ string: |
812
+ No such container: dev-test
813
+ http_version:
814
+ recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
815
+ - request:
816
+ method: get
817
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
818
+ body:
819
+ encoding: US-ASCII
820
+ string: ''
821
+ headers:
822
+ User-Agent:
823
+ - Swipely/Docker-API 1.20.0
824
+ Content-Type:
825
+ - text/plain
826
+ response:
827
+ status:
828
+ code: 404
829
+ message:
830
+ headers:
831
+ Content-Type:
832
+ - text/plain; charset=utf-8
833
+ Date:
834
+ - Mon, 20 Apr 2015 23:29:18 GMT
835
+ Content-Length:
836
+ - '28'
837
+ body:
838
+ encoding: UTF-8
839
+ string: |
840
+ No such container: dev-test
841
+ http_version:
842
+ recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
843
+ - request:
844
+ method: get
845
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
846
+ body:
847
+ encoding: US-ASCII
848
+ string: ''
849
+ headers:
850
+ User-Agent:
851
+ - Swipely/Docker-API 1.20.0
852
+ Content-Type:
853
+ - text/plain
854
+ response:
855
+ status:
856
+ code: 404
857
+ message:
858
+ headers:
859
+ Content-Type:
860
+ - text/plain; charset=utf-8
861
+ Date:
862
+ - Mon, 20 Apr 2015 23:29:18 GMT
863
+ Content-Length:
864
+ - '28'
865
+ body:
866
+ encoding: UTF-8
867
+ string: |
868
+ No such container: dev-test
869
+ http_version:
870
+ recorded_at: Mon, 20 Apr 2015 23:29:18 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.20.0
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
+ - Mon, 20 Apr 2015 23:29:18 GMT
891
+ Content-Length:
892
+ - '28'
893
+ body:
894
+ encoding: UTF-8
895
+ string: |
896
+ No such container: dev-test
897
+ http_version:
898
+ recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
503
899
  - request:
504
900
  method: get
505
901
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -519,18 +915,18 @@ http_interactions:
519
915
  Content-Type:
520
916
  - application/json
521
917
  Date:
522
- - Thu, 09 Apr 2015 19:01:30 GMT
918
+ - Mon, 20 Apr 2015 23:29:18 GMT
523
919
  Content-Length:
524
- - '1998'
920
+ - '1994'
525
921
  body:
526
922
  encoding: UTF-8
527
923
  string: |
528
- {"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":"8c8f05ab2cba","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:30.831107426Z","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":"","HostsPath":"","Id":"8c8f05ab2cbaa3938cfbe14b1e946dea3d97cc49fec3608ef5b0b9ebc71e63a0","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"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}
924
+ {"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":"eaf0dbdc05d6","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:29:18.695152011Z","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":"","HostsPath":"","Id":"eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"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":{}}
529
925
  http_version:
530
- recorded_at: Thu, 09 Apr 2015 19:01:33 GMT
926
+ recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
531
927
  - request:
532
928
  method: get
533
- uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
929
+ uri: "<DOCKER_HOST>/v1.16/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/json"
534
930
  body:
535
931
  encoding: US-ASCII
536
932
  string: ''
@@ -547,15 +943,15 @@ http_interactions:
547
943
  Content-Type:
548
944
  - application/json
549
945
  Date:
550
- - Thu, 09 Apr 2015 19:01:30 GMT
946
+ - Mon, 20 Apr 2015 23:29:18 GMT
551
947
  Content-Length:
552
- - '1793'
948
+ - '1994'
553
949
  body:
554
950
  encoding: UTF-8
555
951
  string: |
556
- {"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":"2a6539a04bde","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:30.840319693Z","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":"","HostsPath":"","Id":"2a6539a04bde9c941c5b537b8447784e8cbf2e0962b6b6583c5885df52d2706a","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"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}
952
+ {"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":"eaf0dbdc05d6","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:29:18.695152011Z","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":"","HostsPath":"","Id":"eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"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":{}}
557
953
  http_version:
558
- recorded_at: Thu, 09 Apr 2015 19:01:33 GMT
954
+ recorded_at: Mon, 20 Apr 2015 23:29:18 GMT
559
955
  - request:
560
956
  method: get
561
957
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -575,16 +971,16 @@ http_interactions:
575
971
  Content-Type:
576
972
  - application/json
577
973
  Date:
578
- - Thu, 09 Apr 2015 19:01:32 GMT
974
+ - Mon, 20 Apr 2015 23:29:19 GMT
579
975
  body:
580
976
  encoding: UTF-8
581
977
  string: |
582
- {"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":"8c8f05ab2cba","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:30.831107426Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/8c8f05ab2cbaa3938cfbe14b1e946dea3d97cc49fec3608ef5b0b9ebc71e63a0/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/8c8f05ab2cbaa3938cfbe14b1e946dea3d97cc49fec3608ef5b0b9ebc71e63a0/hosts","Id":"8c8f05ab2cbaa3938cfbe14b1e946dea3d97cc49fec3608ef5b0b9ebc71e63a0","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.3.168","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:3a8","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:03:a8","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/8c8f05ab2cbaa3938cfbe14b1e946dea3d97cc49fec3608ef5b0b9ebc71e63a0/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":29687,"Restarting":false,"Running":true,"StartedAt":"2015-04-09T19:01:31.380020656Z"},"Volumes":{},"VolumesRW":{}}
978
+ {"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":"eaf0dbdc05d6","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:29:18.695152011Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/hosts","Id":"eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.222","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7de","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:de","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13753,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:29:19.448710651Z"},"Volumes":{},"VolumesRW":{}}
583
979
  http_version:
584
- recorded_at: Thu, 09 Apr 2015 19:01:35 GMT
980
+ recorded_at: Mon, 20 Apr 2015 23:29:19 GMT
585
981
  - request:
586
982
  method: get
587
- uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
983
+ uri: "<DOCKER_HOST>/v1.16/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/json"
588
984
  body:
589
985
  encoding: US-ASCII
590
986
  string: ''
@@ -601,16 +997,16 @@ http_interactions:
601
997
  Content-Type:
602
998
  - application/json
603
999
  Date:
604
- - Thu, 09 Apr 2015 19:01:32 GMT
1000
+ - Mon, 20 Apr 2015 23:29:19 GMT
605
1001
  body:
606
1002
  encoding: UTF-8
607
1003
  string: |
608
- {"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":"2a6539a04bde","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:30.840319693Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/2a6539a04bde9c941c5b537b8447784e8cbf2e0962b6b6583c5885df52d2706a/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/2a6539a04bde9c941c5b537b8447784e8cbf2e0962b6b6583c5885df52d2706a/hosts","Id":"2a6539a04bde9c941c5b537b8447784e8cbf2e0962b6b6583c5885df52d2706a","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.3.167","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:3a7","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:03:a7","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/2a6539a04bde9c941c5b537b8447784e8cbf2e0962b6b6583c5885df52d2706a/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":29676,"Restarting":false,"Running":true,"StartedAt":"2015-04-09T19:01:31.270036409Z"},"Volumes":{},"VolumesRW":{}}
1004
+ {"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":"eaf0dbdc05d6","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:29:18.695152011Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/hosts","Id":"eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.222","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7de","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:de","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/eaf0dbdc05d62113ed253116180964e41705b92d0fbf57ea6b9a21021b93e51b/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13753,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:29:19.448710651Z"},"Volumes":{},"VolumesRW":{}}
609
1005
  http_version:
610
- recorded_at: Thu, 09 Apr 2015 19:01:35 GMT
1006
+ recorded_at: Mon, 20 Apr 2015 23:29:19 GMT
611
1007
  - request:
612
1008
  method: get
613
- uri: "<DOCKER_HOST>/v1.16/containers/8c8f05ab2cbaa3938cfbe14b1e946dea3d97cc49fec3608ef5b0b9ebc71e63a0/json"
1009
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
614
1010
  body:
615
1011
  encoding: US-ASCII
616
1012
  string: ''
@@ -627,16 +1023,16 @@ http_interactions:
627
1023
  Content-Type:
628
1024
  - application/json
629
1025
  Date:
630
- - Thu, 09 Apr 2015 19:01:32 GMT
1026
+ - Mon, 20 Apr 2015 23:29:19 GMT
631
1027
  body:
632
1028
  encoding: UTF-8
633
1029
  string: |
634
- {"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":"8c8f05ab2cba","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:30.831107426Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/8c8f05ab2cbaa3938cfbe14b1e946dea3d97cc49fec3608ef5b0b9ebc71e63a0/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/8c8f05ab2cbaa3938cfbe14b1e946dea3d97cc49fec3608ef5b0b9ebc71e63a0/hosts","Id":"8c8f05ab2cbaa3938cfbe14b1e946dea3d97cc49fec3608ef5b0b9ebc71e63a0","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.3.168","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:3a8","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:03:a8","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/8c8f05ab2cbaa3938cfbe14b1e946dea3d97cc49fec3608ef5b0b9ebc71e63a0/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":29687,"Restarting":false,"Running":true,"StartedAt":"2015-04-09T19:01:31.380020656Z"},"Volumes":{},"VolumesRW":{}}
1030
+ {"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":"070748b6fd6a","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:29:18.702786221Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875/hosts","Id":"070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.223","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7df","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:df","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13748,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:29:19.448648962Z"},"Volumes":{},"VolumesRW":{}}
635
1031
  http_version:
636
- recorded_at: Thu, 09 Apr 2015 19:01:35 GMT
1032
+ recorded_at: Mon, 20 Apr 2015 23:29:19 GMT
637
1033
  - request:
638
1034
  method: get
639
- uri: "<DOCKER_HOST>/v1.16/containers/2a6539a04bde9c941c5b537b8447784e8cbf2e0962b6b6583c5885df52d2706a/json"
1035
+ uri: "<DOCKER_HOST>/v1.16/containers/070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875/json"
640
1036
  body:
641
1037
  encoding: US-ASCII
642
1038
  string: ''
@@ -653,11 +1049,11 @@ http_interactions:
653
1049
  Content-Type:
654
1050
  - application/json
655
1051
  Date:
656
- - Thu, 09 Apr 2015 19:01:32 GMT
1052
+ - Mon, 20 Apr 2015 23:29:19 GMT
657
1053
  body:
658
1054
  encoding: UTF-8
659
1055
  string: |
660
- {"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":"2a6539a04bde","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:30.840319693Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/2a6539a04bde9c941c5b537b8447784e8cbf2e0962b6b6583c5885df52d2706a/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/2a6539a04bde9c941c5b537b8447784e8cbf2e0962b6b6583c5885df52d2706a/hosts","Id":"2a6539a04bde9c941c5b537b8447784e8cbf2e0962b6b6583c5885df52d2706a","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.3.167","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:3a7","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:03:a7","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/2a6539a04bde9c941c5b537b8447784e8cbf2e0962b6b6583c5885df52d2706a/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":29676,"Restarting":false,"Running":true,"StartedAt":"2015-04-09T19:01:31.270036409Z"},"Volumes":{},"VolumesRW":{}}
1056
+ {"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":"070748b6fd6a","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:29:18.702786221Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875/hosts","Id":"070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875","Image":"bf0f8a45f956aa470ab3c916c83925fdcffce23d37b1a9e33998561ce54ca030","MountLabel":"","Name":"/dev-logs","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.223","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7df","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:df","PortMapping":null,"Ports":{}},"Path":"/run.sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/070748b6fd6aac0c1877478bec2aba8545efe83901a17884c22a8e2b7d920875/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13748,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:29:19.448648962Z"},"Volumes":{},"VolumesRW":{}}
661
1057
  http_version:
662
- recorded_at: Thu, 09 Apr 2015 19:01:35 GMT
1058
+ recorded_at: Mon, 20 Apr 2015 23:29:19 GMT
663
1059
  recorded_with: VCR 2.9.3