bigrig 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +4 -1
- data/lib/bigrig/docker_adapter.rb +1 -1
- data/lib/bigrig/version.rb +1 -1
- data/spec/bigrig/docker_adapter_spec.rb +1 -1
- data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +46 -46
- data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +51 -51
- data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +8 -8
- data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +4 -4
- data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +8 -8
- data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +10 -10
- data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +12 -12
- data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +10 -10
- data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +8 -8
- data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +24 -24
- data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +17 -17
- data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +4 -4
- data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +2 -2
- data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +6 -6
- data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +44 -44
- data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +697 -252
- data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +16 -16
- data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +32 -32
- data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +10 -10
- data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +8 -8
- data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +27 -27
- data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/sets_the_hostname.yml +24 -24
- data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +28 -28
- data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_env_variables/starts_the_container_with_env_set.yml +28 -28
- data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +33 -33
- data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +8 -8
- data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +10 -10
- data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +13 -13
- data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +16 -16
- data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +25 -25
- data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +53 -52
- data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +58 -58
- data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +57 -57
- data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +105 -105
- data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +52 -52
- data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +74 -74
- data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +52 -52
- data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +56 -56
- data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes/should_pass_volumes_to_the_right_container.yml +56 -56
- data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +105 -105
- data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +52 -52
- data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +212 -67
- data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +54 -54
- data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +14 -14
- data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +67 -179
- data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +34 -34
- data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +83 -111
- data/spec/vcr/bigrig/dev/spec/data/dev_json/tails_the_logs.yml +18 -18
- data/spec/vcr/bigrig/dev/spec/data/scan_json/leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +266 -210
- data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_dependant_containers_when_the_scanned_file_changes.yml +249 -223
- data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_the_container_when_the_scanned_file_changes.yml +211 -353
- data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +17 -17
- data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +11 -11
- data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +11 -11
- data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +11 -11
- data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +9 -9
- data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +13 -13
- data/spec/vcr/bigrig/run/spec/data/wait_for/bigrig_json/waits_for_wait_for.yml +24 -24
- data/spec/vcr/bigrig/run/spec/data/wait_for_broken_json/fails_with_an_error.yml +9 -9
- data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +20 -20
- data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +16 -16
- data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +21 -21
- data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +50 -158
- data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +91 -66
- data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +167 -167
- data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +353 -353
- data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_dependant_containers_when_the_scanned_file_changes.yml +322 -322
- data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_the_container_when_the_scanned_file_changes.yml +325 -327
- data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +21 -21
- data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +40 -40
- data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +40 -40
- data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +40 -40
- data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +40 -40
- data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +40 -40
- data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for/bigrig_json_waits_for_wait_for.yml +60 -60
- data/spec/vcr/bigrig_bin_bigrig_run_spec/data/wait_for_broken_json_fails_with_an_error.yml +60 -60
- data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +661 -216
- data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +662 -217
- metadata +2 -2
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Tue, 23 Jun 2015 00:59:27 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '1887'
|
25
25
|
body:
|
@@ -27,7 +27,7 @@ http_interactions:
|
|
27
27
|
string: |
|
28
28
|
{"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"d6d34d2bfd452f4175eab78597ddd29856f0af494d503b00f4160d5eb3f13f1b","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ENTRYPOINT [/bin/sh -c ruby /code/server.rb]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-10-23T20:00:42.057514693Z","DockerVersion":"1.3.0","Id":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Os":"linux","Parent":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Size":0,"VirtualSize":801041825}
|
29
29
|
http_version:
|
30
|
-
recorded_at:
|
30
|
+
recorded_at: Tue, 23 Jun 2015 00:59:27 GMT
|
31
31
|
- request:
|
32
32
|
method: get
|
33
33
|
uri: "<DOCKER_HOST>/v1.16/containers/volumes/json"
|
@@ -47,7 +47,7 @@ http_interactions:
|
|
47
47
|
Content-Type:
|
48
48
|
- text/plain; charset=utf-8
|
49
49
|
Date:
|
50
|
-
-
|
50
|
+
- Tue, 23 Jun 2015 00:59:27 GMT
|
51
51
|
Content-Length:
|
52
52
|
- '20'
|
53
53
|
body:
|
@@ -55,7 +55,7 @@ http_interactions:
|
|
55
55
|
string: |
|
56
56
|
no such id: volumes
|
57
57
|
http_version:
|
58
|
-
recorded_at:
|
58
|
+
recorded_at: Tue, 23 Jun 2015 00:59:27 GMT
|
59
59
|
- request:
|
60
60
|
method: get
|
61
61
|
uri: "<DOCKER_HOST>/v1.16/containers/volumes/json"
|
@@ -75,7 +75,7 @@ http_interactions:
|
|
75
75
|
Content-Type:
|
76
76
|
- text/plain; charset=utf-8
|
77
77
|
Date:
|
78
|
-
-
|
78
|
+
- Tue, 23 Jun 2015 00:59:27 GMT
|
79
79
|
Content-Length:
|
80
80
|
- '20'
|
81
81
|
body:
|
@@ -83,7 +83,7 @@ http_interactions:
|
|
83
83
|
string: |
|
84
84
|
no such id: volumes
|
85
85
|
http_version:
|
86
|
-
recorded_at:
|
86
|
+
recorded_at: Tue, 23 Jun 2015 00:59:27 GMT
|
87
87
|
- request:
|
88
88
|
method: get
|
89
89
|
uri: "<DOCKER_HOST>/v1.16/containers/volumes/json"
|
@@ -103,7 +103,7 @@ http_interactions:
|
|
103
103
|
Content-Type:
|
104
104
|
- text/plain; charset=utf-8
|
105
105
|
Date:
|
106
|
-
-
|
106
|
+
- Tue, 23 Jun 2015 00:59:28 GMT
|
107
107
|
Content-Length:
|
108
108
|
- '20'
|
109
109
|
body:
|
@@ -111,7 +111,7 @@ http_interactions:
|
|
111
111
|
string: |
|
112
112
|
no such id: volumes
|
113
113
|
http_version:
|
114
|
-
recorded_at:
|
114
|
+
recorded_at: Tue, 23 Jun 2015 00:59:28 GMT
|
115
115
|
- request:
|
116
116
|
method: get
|
117
117
|
uri: "<DOCKER_HOST>/v1.16/containers/volumes/json"
|
@@ -131,7 +131,7 @@ http_interactions:
|
|
131
131
|
Content-Type:
|
132
132
|
- text/plain; charset=utf-8
|
133
133
|
Date:
|
134
|
-
-
|
134
|
+
- Tue, 23 Jun 2015 00:59:28 GMT
|
135
135
|
Content-Length:
|
136
136
|
- '20'
|
137
137
|
body:
|
@@ -139,7 +139,7 @@ http_interactions:
|
|
139
139
|
string: |
|
140
140
|
no such id: volumes
|
141
141
|
http_version:
|
142
|
-
recorded_at:
|
142
|
+
recorded_at: Tue, 23 Jun 2015 00:59:28 GMT
|
143
143
|
- request:
|
144
144
|
method: get
|
145
145
|
uri: "<DOCKER_HOST>/v1.16/containers/volumes/json"
|
@@ -159,7 +159,7 @@ http_interactions:
|
|
159
159
|
Content-Type:
|
160
160
|
- text/plain; charset=utf-8
|
161
161
|
Date:
|
162
|
-
-
|
162
|
+
- Tue, 23 Jun 2015 00:59:28 GMT
|
163
163
|
Content-Length:
|
164
164
|
- '20'
|
165
165
|
body:
|
@@ -167,7 +167,7 @@ http_interactions:
|
|
167
167
|
string: |
|
168
168
|
no such id: volumes
|
169
169
|
http_version:
|
170
|
-
recorded_at:
|
170
|
+
recorded_at: Tue, 23 Jun 2015 00:59:28 GMT
|
171
171
|
- request:
|
172
172
|
method: get
|
173
173
|
uri: "<DOCKER_HOST>/v1.16/containers/volumes/json"
|
@@ -187,7 +187,7 @@ http_interactions:
|
|
187
187
|
Content-Type:
|
188
188
|
- text/plain; charset=utf-8
|
189
189
|
Date:
|
190
|
-
-
|
190
|
+
- Tue, 23 Jun 2015 00:59:28 GMT
|
191
191
|
Content-Length:
|
192
192
|
- '20'
|
193
193
|
body:
|
@@ -195,7 +195,7 @@ http_interactions:
|
|
195
195
|
string: |
|
196
196
|
no such id: volumes
|
197
197
|
http_version:
|
198
|
-
recorded_at:
|
198
|
+
recorded_at: Tue, 23 Jun 2015 00:59:28 GMT
|
199
199
|
- request:
|
200
200
|
method: get
|
201
201
|
uri: "<DOCKER_HOST>/v1.16/containers/volumes/json"
|
@@ -215,7 +215,7 @@ http_interactions:
|
|
215
215
|
Content-Type:
|
216
216
|
- text/plain; charset=utf-8
|
217
217
|
Date:
|
218
|
-
-
|
218
|
+
- Tue, 23 Jun 2015 00:59:28 GMT
|
219
219
|
Content-Length:
|
220
220
|
- '20'
|
221
221
|
body:
|
@@ -223,7 +223,7 @@ http_interactions:
|
|
223
223
|
string: |
|
224
224
|
no such id: volumes
|
225
225
|
http_version:
|
226
|
-
recorded_at:
|
226
|
+
recorded_at: Tue, 23 Jun 2015 00:59:28 GMT
|
227
227
|
- request:
|
228
228
|
method: get
|
229
229
|
uri: "<DOCKER_HOST>/v1.16/containers/volumes/json"
|
@@ -243,7 +243,7 @@ http_interactions:
|
|
243
243
|
Content-Type:
|
244
244
|
- text/plain; charset=utf-8
|
245
245
|
Date:
|
246
|
-
-
|
246
|
+
- Tue, 23 Jun 2015 00:59:28 GMT
|
247
247
|
Content-Length:
|
248
248
|
- '20'
|
249
249
|
body:
|
@@ -251,13 +251,13 @@ http_interactions:
|
|
251
251
|
string: |
|
252
252
|
no such id: volumes
|
253
253
|
http_version:
|
254
|
-
recorded_at:
|
254
|
+
recorded_at: Tue, 23 Jun 2015 00:59:28 GMT
|
255
255
|
- request:
|
256
256
|
method: post
|
257
257
|
uri: "<DOCKER_HOST>/v1.16/containers/create?name=volumes"
|
258
258
|
body:
|
259
259
|
encoding: UTF-8
|
260
|
-
string: '{"Env":[],"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","ExposedPorts":{}}'
|
260
|
+
string: '{"Env":[],"Hostname":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","ExposedPorts":{}}'
|
261
261
|
headers:
|
262
262
|
User-Agent:
|
263
263
|
- Swipely/Docker-API 1.21.4
|
@@ -271,18 +271,18 @@ http_interactions:
|
|
271
271
|
Content-Type:
|
272
272
|
- application/json
|
273
273
|
Date:
|
274
|
-
-
|
274
|
+
- Tue, 23 Jun 2015 00:59:28 GMT
|
275
275
|
Content-Length:
|
276
276
|
- '90'
|
277
277
|
body:
|
278
278
|
encoding: UTF-8
|
279
279
|
string: |
|
280
|
-
{"Id":"
|
280
|
+
{"Id":"62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10","Warnings":null}
|
281
281
|
http_version:
|
282
|
-
recorded_at:
|
282
|
+
recorded_at: Tue, 23 Jun 2015 00:59:28 GMT
|
283
283
|
- request:
|
284
284
|
method: post
|
285
|
-
uri: "<DOCKER_HOST>/v1.16/containers/
|
285
|
+
uri: "<DOCKER_HOST>/v1.16/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/start"
|
286
286
|
body:
|
287
287
|
encoding: UTF-8
|
288
288
|
string: '{"Links":[],"ExtraHosts":[],"PortBindings":{},"VolumesFrom":[],"Binds":["/tmp/test:/test"]}'
|
@@ -297,12 +297,12 @@ http_interactions:
|
|
297
297
|
message:
|
298
298
|
headers:
|
299
299
|
Date:
|
300
|
-
-
|
300
|
+
- Tue, 23 Jun 2015 00:59:28 GMT
|
301
301
|
body:
|
302
302
|
encoding: UTF-8
|
303
303
|
string: ''
|
304
304
|
http_version:
|
305
|
-
recorded_at:
|
305
|
+
recorded_at: Tue, 23 Jun 2015 00:59:28 GMT
|
306
306
|
- request:
|
307
307
|
method: get
|
308
308
|
uri: "<DOCKER_HOST>/v1.16/containers/volumes/json"
|
@@ -322,16 +322,16 @@ http_interactions:
|
|
322
322
|
Content-Type:
|
323
323
|
- application/json
|
324
324
|
Date:
|
325
|
-
-
|
325
|
+
- Tue, 23 Jun 2015 00:59:28 GMT
|
326
326
|
body:
|
327
327
|
encoding: UTF-8
|
328
328
|
string: |
|
329
|
-
{"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":"
|
329
|
+
{"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:28.316782832Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":["/tmp/test:/test"],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/hosts","Id":"62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10-json.log","MountLabel":"","Name":"/volumes","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.92","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:5c","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:5c","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":9987,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T00:59:28.716521525Z"},"Volumes":{"/test":"/mnt/sda1/tmp/test"},"VolumesRW":{"/test":true}}
|
330
330
|
http_version:
|
331
|
-
recorded_at:
|
331
|
+
recorded_at: Tue, 23 Jun 2015 00:59:28 GMT
|
332
332
|
- request:
|
333
333
|
method: post
|
334
|
-
uri: "<DOCKER_HOST>/v1.16/containers/
|
334
|
+
uri: "<DOCKER_HOST>/v1.16/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/exec"
|
335
335
|
body:
|
336
336
|
encoding: UTF-8
|
337
337
|
string: '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":false,"Cmd":["ls","/bigrig-wait.sh"]}'
|
@@ -348,18 +348,18 @@ http_interactions:
|
|
348
348
|
Content-Type:
|
349
349
|
- application/json
|
350
350
|
Date:
|
351
|
-
-
|
351
|
+
- Tue, 23 Jun 2015 00:59:28 GMT
|
352
352
|
Content-Length:
|
353
353
|
- '74'
|
354
354
|
body:
|
355
355
|
encoding: UTF-8
|
356
356
|
string: |
|
357
|
-
{"Id":"
|
357
|
+
{"Id":"9519ccdc078975bf91e7bd68bccea17219e8f5e371ba40a9570fb335a3a73ddf"}
|
358
358
|
http_version:
|
359
|
-
recorded_at:
|
359
|
+
recorded_at: Tue, 23 Jun 2015 00:59:28 GMT
|
360
360
|
- request:
|
361
361
|
method: post
|
362
|
-
uri: "<DOCKER_HOST>/v1.16/exec/
|
362
|
+
uri: "<DOCKER_HOST>/v1.16/exec/9519ccdc078975bf91e7bd68bccea17219e8f5e371ba40a9570fb335a3a73ddf/start"
|
363
363
|
body:
|
364
364
|
encoding: UTF-8
|
365
365
|
string: '{"Tty":false,"Detach":false}'
|
@@ -381,10 +381,10 @@ http_interactions:
|
|
381
381
|
AgAAAAAAAD1sczogY2Fubm90IGFjY2VzcyAvYmlncmlnLXdhaXQuc2g6IE5v
|
382
382
|
IHN1Y2ggZmlsZSBvciBkaXJlY3RvcnkK
|
383
383
|
http_version:
|
384
|
-
recorded_at:
|
384
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
385
385
|
- request:
|
386
386
|
method: get
|
387
|
-
uri: "<DOCKER_HOST>/v1.16/exec/
|
387
|
+
uri: "<DOCKER_HOST>/v1.16/exec/9519ccdc078975bf91e7bd68bccea17219e8f5e371ba40a9570fb335a3a73ddf/json"
|
388
388
|
body:
|
389
389
|
encoding: US-ASCII
|
390
390
|
string: ''
|
@@ -401,14 +401,14 @@ http_interactions:
|
|
401
401
|
Content-Type:
|
402
402
|
- application/json
|
403
403
|
Date:
|
404
|
-
-
|
404
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
405
405
|
body:
|
406
406
|
encoding: UTF-8
|
407
|
-
string: '{"ID":"
|
408
|
-
/code/server.rb"],"Config":{"Hostname":"
|
409
|
-
/code/server.rb"],"NetworkDisabled":false,"MacAddress":"","OnBuild":null,"Labels":{}},"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","NetworkSettings":{"IPAddress":"172.17.
|
407
|
+
string: '{"ID":"9519ccdc078975bf91e7bd68bccea17219e8f5e371ba40a9570fb335a3a73ddf","Running":false,"ExitCode":2,"ProcessConfig":{"privileged":false,"user":"","tty":false,"entrypoint":"ls","arguments":["/bigrig-wait.sh"]},"OpenStdin":false,"OpenStderr":true,"OpenStdout":true,"Container":{"State":{"Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":9987,"ExitCode":0,"Error":"","StartedAt":"2015-06-23T00:59:28.716521525Z","FinishedAt":"0001-01-01T00:00:00Z"},"ID":"62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10","Created":"2015-06-23T00:59:28.316782832Z","Path":"/bin/sh","Args":["-c","ruby
|
408
|
+
/code/server.rb"],"Config":{"Hostname":"HNEWTONMAC3","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"Cpuset":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":{"80/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"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"],"Cmd":null,"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Volumes":null,"WorkingDir":"","Entrypoint":["/bin/sh","-c","ruby
|
409
|
+
/code/server.rb"],"NetworkDisabled":false,"MacAddress":"","OnBuild":null,"Labels":{}},"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","NetworkSettings":{"IPAddress":"172.17.0.92","IPPrefixLen":16,"MacAddress":"02:42:ac:11:00:5c","LinkLocalIPv6Address":"fe80::42:acff:fe11:5c","LinkLocalIPv6PrefixLen":64,"GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"Gateway":"172.17.42.1","IPv6Gateway":"","Bridge":"docker0","PortMapping":null,"Ports":{"80/tcp":null}},"ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/resolv.conf","HostnamePath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/hosts","LogPath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10-json.log","Name":"/volumes","Driver":"aufs","ExecDriver":"native-0.2","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","RestartCount":0,"UpdateDns":false,"Volumes":{"/test":"/mnt/sda1/tmp/test"},"VolumesRW":{"/test":true},"AppliedVolumesFrom":null}}'
|
410
410
|
http_version:
|
411
|
-
recorded_at:
|
411
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
412
412
|
- request:
|
413
413
|
method: get
|
414
414
|
uri: "<DOCKER_HOST>/v1.16/containers/volumes/json"
|
@@ -428,16 +428,16 @@ http_interactions:
|
|
428
428
|
Content-Type:
|
429
429
|
- application/json
|
430
430
|
Date:
|
431
|
-
-
|
431
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
432
432
|
body:
|
433
433
|
encoding: UTF-8
|
434
434
|
string: |
|
435
|
-
{"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":"
|
435
|
+
{"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:28.316782832Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["9519ccdc078975bf91e7bd68bccea17219e8f5e371ba40a9570fb335a3a73ddf"],"HostConfig":{"Binds":["/tmp/test:/test"],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/hosts","Id":"62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10-json.log","MountLabel":"","Name":"/volumes","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.92","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:5c","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:5c","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":9987,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T00:59:28.716521525Z"},"Volumes":{"/test":"/mnt/sda1/tmp/test"},"VolumesRW":{"/test":true}}
|
436
436
|
http_version:
|
437
|
-
recorded_at:
|
437
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
438
438
|
- request:
|
439
439
|
method: get
|
440
|
-
uri: "<DOCKER_HOST>/v1.16/containers/
|
440
|
+
uri: "<DOCKER_HOST>/v1.16/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/json"
|
441
441
|
body:
|
442
442
|
encoding: US-ASCII
|
443
443
|
string: ''
|
@@ -454,13 +454,13 @@ http_interactions:
|
|
454
454
|
Content-Type:
|
455
455
|
- application/json
|
456
456
|
Date:
|
457
|
-
-
|
457
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
458
458
|
body:
|
459
459
|
encoding: UTF-8
|
460
460
|
string: |
|
461
|
-
{"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":"
|
461
|
+
{"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:28.316782832Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["9519ccdc078975bf91e7bd68bccea17219e8f5e371ba40a9570fb335a3a73ddf"],"HostConfig":{"Binds":["/tmp/test:/test"],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/hosts","Id":"62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10-json.log","MountLabel":"","Name":"/volumes","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.92","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:5c","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:5c","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":9987,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T00:59:28.716521525Z"},"Volumes":{"/test":"/mnt/sda1/tmp/test"},"VolumesRW":{"/test":true}}
|
462
462
|
http_version:
|
463
|
-
recorded_at:
|
463
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
464
464
|
- request:
|
465
465
|
method: get
|
466
466
|
uri: "<DOCKER_HOST>/v1.16/containers/volumes/json"
|
@@ -480,16 +480,16 @@ http_interactions:
|
|
480
480
|
Content-Type:
|
481
481
|
- application/json
|
482
482
|
Date:
|
483
|
-
-
|
483
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
484
484
|
body:
|
485
485
|
encoding: UTF-8
|
486
486
|
string: |
|
487
|
-
{"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":"
|
487
|
+
{"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:28.316782832Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["9519ccdc078975bf91e7bd68bccea17219e8f5e371ba40a9570fb335a3a73ddf"],"HostConfig":{"Binds":["/tmp/test:/test"],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/hosts","Id":"62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10-json.log","MountLabel":"","Name":"/volumes","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.92","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:5c","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:5c","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":9987,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T00:59:28.716521525Z"},"Volumes":{"/test":"/mnt/sda1/tmp/test"},"VolumesRW":{"/test":true}}
|
488
488
|
http_version:
|
489
|
-
recorded_at:
|
489
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
490
490
|
- request:
|
491
491
|
method: post
|
492
|
-
uri: "<DOCKER_HOST>/v1.16/containers/
|
492
|
+
uri: "<DOCKER_HOST>/v1.16/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10/kill"
|
493
493
|
body:
|
494
494
|
encoding: US-ASCII
|
495
495
|
string: ''
|
@@ -504,15 +504,15 @@ http_interactions:
|
|
504
504
|
message:
|
505
505
|
headers:
|
506
506
|
Date:
|
507
|
-
-
|
507
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
508
508
|
body:
|
509
509
|
encoding: UTF-8
|
510
510
|
string: ''
|
511
511
|
http_version:
|
512
|
-
recorded_at:
|
512
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
513
513
|
- request:
|
514
514
|
method: delete
|
515
|
-
uri: "<DOCKER_HOST>/v1.16/containers/
|
515
|
+
uri: "<DOCKER_HOST>/v1.16/containers/62094e7e7a766a335415f0e9cf3f2714d798aad5adf359d09c60c11aa68d4b10"
|
516
516
|
body:
|
517
517
|
encoding: US-ASCII
|
518
518
|
string: ''
|
@@ -527,10 +527,10 @@ http_interactions:
|
|
527
527
|
message:
|
528
528
|
headers:
|
529
529
|
Date:
|
530
|
-
-
|
530
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
531
531
|
body:
|
532
532
|
encoding: UTF-8
|
533
533
|
string: ''
|
534
534
|
http_version:
|
535
|
-
recorded_at:
|
535
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
536
536
|
recorded_with: VCR 2.9.3
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '1887'
|
25
25
|
body:
|
@@ -27,7 +27,7 @@ http_interactions:
|
|
27
27
|
string: |
|
28
28
|
{"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"d6d34d2bfd452f4175eab78597ddd29856f0af494d503b00f4160d5eb3f13f1b","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ENTRYPOINT [/bin/sh -c ruby /code/server.rb]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-10-23T20:00:42.057514693Z","DockerVersion":"1.3.0","Id":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Os":"linux","Parent":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Size":0,"VirtualSize":801041825}
|
29
29
|
http_version:
|
30
|
-
recorded_at:
|
30
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
31
31
|
- request:
|
32
32
|
method: get
|
33
33
|
uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
|
@@ -47,7 +47,7 @@ http_interactions:
|
|
47
47
|
Content-Type:
|
48
48
|
- text/plain; charset=utf-8
|
49
49
|
Date:
|
50
|
-
-
|
50
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
51
51
|
Content-Length:
|
52
52
|
- '28'
|
53
53
|
body:
|
@@ -55,7 +55,7 @@ http_interactions:
|
|
55
55
|
string: |
|
56
56
|
no such id: exports_volumes
|
57
57
|
http_version:
|
58
|
-
recorded_at:
|
58
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
59
59
|
- request:
|
60
60
|
method: get
|
61
61
|
uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
|
@@ -75,7 +75,7 @@ http_interactions:
|
|
75
75
|
Content-Type:
|
76
76
|
- text/plain; charset=utf-8
|
77
77
|
Date:
|
78
|
-
-
|
78
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
79
79
|
Content-Length:
|
80
80
|
- '28'
|
81
81
|
body:
|
@@ -83,7 +83,7 @@ http_interactions:
|
|
83
83
|
string: |
|
84
84
|
no such id: exports_volumes
|
85
85
|
http_version:
|
86
|
-
recorded_at:
|
86
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
87
87
|
- request:
|
88
88
|
method: get
|
89
89
|
uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
|
@@ -103,7 +103,7 @@ http_interactions:
|
|
103
103
|
Content-Type:
|
104
104
|
- text/plain; charset=utf-8
|
105
105
|
Date:
|
106
|
-
-
|
106
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
107
107
|
Content-Length:
|
108
108
|
- '28'
|
109
109
|
body:
|
@@ -111,7 +111,7 @@ http_interactions:
|
|
111
111
|
string: |
|
112
112
|
no such id: exports_volumes
|
113
113
|
http_version:
|
114
|
-
recorded_at:
|
114
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
115
115
|
- request:
|
116
116
|
method: get
|
117
117
|
uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
|
@@ -131,7 +131,7 @@ http_interactions:
|
|
131
131
|
Content-Type:
|
132
132
|
- text/plain; charset=utf-8
|
133
133
|
Date:
|
134
|
-
-
|
134
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
135
135
|
Content-Length:
|
136
136
|
- '28'
|
137
137
|
body:
|
@@ -139,7 +139,7 @@ http_interactions:
|
|
139
139
|
string: |
|
140
140
|
no such id: exports_volumes
|
141
141
|
http_version:
|
142
|
-
recorded_at:
|
142
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
143
143
|
- request:
|
144
144
|
method: get
|
145
145
|
uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
|
@@ -159,7 +159,7 @@ http_interactions:
|
|
159
159
|
Content-Type:
|
160
160
|
- text/plain; charset=utf-8
|
161
161
|
Date:
|
162
|
-
-
|
162
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
163
163
|
Content-Length:
|
164
164
|
- '28'
|
165
165
|
body:
|
@@ -167,7 +167,7 @@ http_interactions:
|
|
167
167
|
string: |
|
168
168
|
no such id: exports_volumes
|
169
169
|
http_version:
|
170
|
-
recorded_at:
|
170
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
171
171
|
- request:
|
172
172
|
method: get
|
173
173
|
uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
|
@@ -187,7 +187,7 @@ http_interactions:
|
|
187
187
|
Content-Type:
|
188
188
|
- text/plain; charset=utf-8
|
189
189
|
Date:
|
190
|
-
-
|
190
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
191
191
|
Content-Length:
|
192
192
|
- '28'
|
193
193
|
body:
|
@@ -195,7 +195,7 @@ http_interactions:
|
|
195
195
|
string: |
|
196
196
|
no such id: exports_volumes
|
197
197
|
http_version:
|
198
|
-
recorded_at:
|
198
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
199
199
|
- request:
|
200
200
|
method: get
|
201
201
|
uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
|
@@ -215,7 +215,7 @@ http_interactions:
|
|
215
215
|
Content-Type:
|
216
216
|
- text/plain; charset=utf-8
|
217
217
|
Date:
|
218
|
-
-
|
218
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
219
219
|
Content-Length:
|
220
220
|
- '28'
|
221
221
|
body:
|
@@ -223,7 +223,7 @@ http_interactions:
|
|
223
223
|
string: |
|
224
224
|
no such id: exports_volumes
|
225
225
|
http_version:
|
226
|
-
recorded_at:
|
226
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
227
227
|
- request:
|
228
228
|
method: get
|
229
229
|
uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
|
@@ -243,7 +243,7 @@ http_interactions:
|
|
243
243
|
Content-Type:
|
244
244
|
- text/plain; charset=utf-8
|
245
245
|
Date:
|
246
|
-
-
|
246
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
247
247
|
Content-Length:
|
248
248
|
- '28'
|
249
249
|
body:
|
@@ -251,13 +251,13 @@ http_interactions:
|
|
251
251
|
string: |
|
252
252
|
no such id: exports_volumes
|
253
253
|
http_version:
|
254
|
-
recorded_at:
|
254
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
255
255
|
- request:
|
256
256
|
method: post
|
257
257
|
uri: "<DOCKER_HOST>/v1.16/containers/create?name=exports_volumes"
|
258
258
|
body:
|
259
259
|
encoding: UTF-8
|
260
|
-
string: '{"Env":[],"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","ExposedPorts":{}}'
|
260
|
+
string: '{"Env":[],"Hostname":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","ExposedPorts":{}}'
|
261
261
|
headers:
|
262
262
|
User-Agent:
|
263
263
|
- Swipely/Docker-API 1.21.4
|
@@ -271,18 +271,18 @@ http_interactions:
|
|
271
271
|
Content-Type:
|
272
272
|
- application/json
|
273
273
|
Date:
|
274
|
-
-
|
274
|
+
- Tue, 23 Jun 2015 00:59:29 GMT
|
275
275
|
Content-Length:
|
276
276
|
- '90'
|
277
277
|
body:
|
278
278
|
encoding: UTF-8
|
279
279
|
string: |
|
280
|
-
{"Id":"
|
280
|
+
{"Id":"351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59","Warnings":null}
|
281
281
|
http_version:
|
282
|
-
recorded_at:
|
282
|
+
recorded_at: Tue, 23 Jun 2015 00:59:29 GMT
|
283
283
|
- request:
|
284
284
|
method: post
|
285
|
-
uri: "<DOCKER_HOST>/v1.16/containers/
|
285
|
+
uri: "<DOCKER_HOST>/v1.16/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59/start"
|
286
286
|
body:
|
287
287
|
encoding: UTF-8
|
288
288
|
string: '{"Links":[],"ExtraHosts":[],"PortBindings":{},"VolumesFrom":[],"Binds":[]}'
|
@@ -297,12 +297,12 @@ http_interactions:
|
|
297
297
|
message:
|
298
298
|
headers:
|
299
299
|
Date:
|
300
|
-
-
|
300
|
+
- Tue, 23 Jun 2015 00:59:30 GMT
|
301
301
|
body:
|
302
302
|
encoding: UTF-8
|
303
303
|
string: ''
|
304
304
|
http_version:
|
305
|
-
recorded_at:
|
305
|
+
recorded_at: Tue, 23 Jun 2015 00:59:30 GMT
|
306
306
|
- request:
|
307
307
|
method: get
|
308
308
|
uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
|
@@ -322,16 +322,16 @@ http_interactions:
|
|
322
322
|
Content-Type:
|
323
323
|
- application/json
|
324
324
|
Date:
|
325
|
-
-
|
325
|
+
- Tue, 23 Jun 2015 00:59:30 GMT
|
326
326
|
body:
|
327
327
|
encoding: UTF-8
|
328
328
|
string: |
|
329
|
-
{"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":"
|
329
|
+
{"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:29.864496398Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59/hosts","Id":"351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59-json.log","MountLabel":"","Name":"/exports_volumes","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.93","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:5d","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:5d","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10003,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T00:59:30.327167278Z"},"Volumes":{},"VolumesRW":{}}
|
330
330
|
http_version:
|
331
|
-
recorded_at:
|
331
|
+
recorded_at: Tue, 23 Jun 2015 00:59:30 GMT
|
332
332
|
- request:
|
333
333
|
method: post
|
334
|
-
uri: "<DOCKER_HOST>/v1.16/containers/
|
334
|
+
uri: "<DOCKER_HOST>/v1.16/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59/exec"
|
335
335
|
body:
|
336
336
|
encoding: UTF-8
|
337
337
|
string: '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":false,"Cmd":["ls","/bigrig-wait.sh"]}'
|
@@ -348,18 +348,18 @@ http_interactions:
|
|
348
348
|
Content-Type:
|
349
349
|
- application/json
|
350
350
|
Date:
|
351
|
-
-
|
351
|
+
- Tue, 23 Jun 2015 00:59:30 GMT
|
352
352
|
Content-Length:
|
353
353
|
- '74'
|
354
354
|
body:
|
355
355
|
encoding: UTF-8
|
356
356
|
string: |
|
357
|
-
{"Id":"
|
357
|
+
{"Id":"0bbad9ea4a9f0bd12cf9058a11d6c41f36336a62e2de0ae065d3e40c4b18a037"}
|
358
358
|
http_version:
|
359
|
-
recorded_at:
|
359
|
+
recorded_at: Tue, 23 Jun 2015 00:59:30 GMT
|
360
360
|
- request:
|
361
361
|
method: post
|
362
|
-
uri: "<DOCKER_HOST>/v1.16/exec/
|
362
|
+
uri: "<DOCKER_HOST>/v1.16/exec/0bbad9ea4a9f0bd12cf9058a11d6c41f36336a62e2de0ae065d3e40c4b18a037/start"
|
363
363
|
body:
|
364
364
|
encoding: UTF-8
|
365
365
|
string: '{"Tty":false,"Detach":false}'
|
@@ -381,10 +381,10 @@ http_interactions:
|
|
381
381
|
AgAAAAAAAD1sczogY2Fubm90IGFjY2VzcyAvYmlncmlnLXdhaXQuc2g6IE5v
|
382
382
|
IHN1Y2ggZmlsZSBvciBkaXJlY3RvcnkK
|
383
383
|
http_version:
|
384
|
-
recorded_at:
|
384
|
+
recorded_at: Tue, 23 Jun 2015 00:59:30 GMT
|
385
385
|
- request:
|
386
386
|
method: get
|
387
|
-
uri: "<DOCKER_HOST>/v1.16/exec/
|
387
|
+
uri: "<DOCKER_HOST>/v1.16/exec/0bbad9ea4a9f0bd12cf9058a11d6c41f36336a62e2de0ae065d3e40c4b18a037/json"
|
388
388
|
body:
|
389
389
|
encoding: US-ASCII
|
390
390
|
string: ''
|
@@ -401,14 +401,14 @@ http_interactions:
|
|
401
401
|
Content-Type:
|
402
402
|
- application/json
|
403
403
|
Date:
|
404
|
-
-
|
404
|
+
- Tue, 23 Jun 2015 00:59:30 GMT
|
405
405
|
body:
|
406
406
|
encoding: UTF-8
|
407
|
-
string: '{"ID":"
|
408
|
-
/code/server.rb"],"Config":{"Hostname":"
|
409
|
-
/code/server.rb"],"NetworkDisabled":false,"MacAddress":"","OnBuild":null,"Labels":{}},"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","NetworkSettings":{"IPAddress":"172.17.
|
407
|
+
string: '{"ID":"0bbad9ea4a9f0bd12cf9058a11d6c41f36336a62e2de0ae065d3e40c4b18a037","Running":false,"ExitCode":2,"ProcessConfig":{"privileged":false,"user":"","tty":false,"entrypoint":"ls","arguments":["/bigrig-wait.sh"]},"OpenStdin":false,"OpenStderr":true,"OpenStdout":true,"Container":{"State":{"Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":10003,"ExitCode":0,"Error":"","StartedAt":"2015-06-23T00:59:30.327167278Z","FinishedAt":"0001-01-01T00:00:00Z"},"ID":"351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59","Created":"2015-06-23T00:59:29.864496398Z","Path":"/bin/sh","Args":["-c","ruby
|
408
|
+
/code/server.rb"],"Config":{"Hostname":"HNEWTONMAC3","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"Cpuset":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":{"80/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"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"],"Cmd":null,"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Volumes":null,"WorkingDir":"","Entrypoint":["/bin/sh","-c","ruby
|
409
|
+
/code/server.rb"],"NetworkDisabled":false,"MacAddress":"","OnBuild":null,"Labels":{}},"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","NetworkSettings":{"IPAddress":"172.17.0.93","IPPrefixLen":16,"MacAddress":"02:42:ac:11:00:5d","LinkLocalIPv6Address":"fe80::42:acff:fe11:5d","LinkLocalIPv6PrefixLen":64,"GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"Gateway":"172.17.42.1","IPv6Gateway":"","Bridge":"docker0","PortMapping":null,"Ports":{"80/tcp":null}},"ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59/resolv.conf","HostnamePath":"/mnt/sda1/var/lib/docker/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59/hosts","LogPath":"/mnt/sda1/var/lib/docker/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59-json.log","Name":"/exports_volumes","Driver":"aufs","ExecDriver":"native-0.2","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","RestartCount":0,"UpdateDns":false,"Volumes":{},"VolumesRW":{},"AppliedVolumesFrom":null}}'
|
410
410
|
http_version:
|
411
|
-
recorded_at:
|
411
|
+
recorded_at: Tue, 23 Jun 2015 00:59:30 GMT
|
412
412
|
- request:
|
413
413
|
method: get
|
414
414
|
uri: "<DOCKER_HOST>/v1.16/images/hawknewton/show-env:0.0.1/json"
|
@@ -428,7 +428,7 @@ http_interactions:
|
|
428
428
|
Content-Type:
|
429
429
|
- application/json
|
430
430
|
Date:
|
431
|
-
-
|
431
|
+
- Tue, 23 Jun 2015 00:59:30 GMT
|
432
432
|
Content-Length:
|
433
433
|
- '1887'
|
434
434
|
body:
|
@@ -436,7 +436,7 @@ http_interactions:
|
|
436
436
|
string: |
|
437
437
|
{"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"d6d34d2bfd452f4175eab78597ddd29856f0af494d503b00f4160d5eb3f13f1b","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) ENTRYPOINT [/bin/sh -c ruby /code/server.rb]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"e5474231b7cd","Image":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Labels":null,"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-10-23T20:00:42.057514693Z","DockerVersion":"1.3.0","Id":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Os":"linux","Parent":"4929b61a5fda27a07a26efc94ad61504c0f4aa2fb50471bfa4fd61c656d42131","Size":0,"VirtualSize":801041825}
|
438
438
|
http_version:
|
439
|
-
recorded_at:
|
439
|
+
recorded_at: Tue, 23 Jun 2015 00:59:30 GMT
|
440
440
|
- request:
|
441
441
|
method: get
|
442
442
|
uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
|
@@ -456,7 +456,7 @@ http_interactions:
|
|
456
456
|
Content-Type:
|
457
457
|
- text/plain; charset=utf-8
|
458
458
|
Date:
|
459
|
-
-
|
459
|
+
- Tue, 23 Jun 2015 00:59:30 GMT
|
460
460
|
Content-Length:
|
461
461
|
- '27'
|
462
462
|
body:
|
@@ -464,7 +464,7 @@ http_interactions:
|
|
464
464
|
string: |
|
465
465
|
no such id: mounts_volumes
|
466
466
|
http_version:
|
467
|
-
recorded_at:
|
467
|
+
recorded_at: Tue, 23 Jun 2015 00:59:30 GMT
|
468
468
|
- request:
|
469
469
|
method: get
|
470
470
|
uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
|
@@ -484,7 +484,7 @@ http_interactions:
|
|
484
484
|
Content-Type:
|
485
485
|
- text/plain; charset=utf-8
|
486
486
|
Date:
|
487
|
-
-
|
487
|
+
- Tue, 23 Jun 2015 00:59:30 GMT
|
488
488
|
Content-Length:
|
489
489
|
- '27'
|
490
490
|
body:
|
@@ -492,7 +492,7 @@ http_interactions:
|
|
492
492
|
string: |
|
493
493
|
no such id: mounts_volumes
|
494
494
|
http_version:
|
495
|
-
recorded_at:
|
495
|
+
recorded_at: Tue, 23 Jun 2015 00:59:30 GMT
|
496
496
|
- request:
|
497
497
|
method: get
|
498
498
|
uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
|
@@ -512,7 +512,7 @@ http_interactions:
|
|
512
512
|
Content-Type:
|
513
513
|
- text/plain; charset=utf-8
|
514
514
|
Date:
|
515
|
-
-
|
515
|
+
- Tue, 23 Jun 2015 00:59:30 GMT
|
516
516
|
Content-Length:
|
517
517
|
- '27'
|
518
518
|
body:
|
@@ -520,7 +520,7 @@ http_interactions:
|
|
520
520
|
string: |
|
521
521
|
no such id: mounts_volumes
|
522
522
|
http_version:
|
523
|
-
recorded_at:
|
523
|
+
recorded_at: Tue, 23 Jun 2015 00:59:30 GMT
|
524
524
|
- request:
|
525
525
|
method: get
|
526
526
|
uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
|
@@ -540,7 +540,7 @@ http_interactions:
|
|
540
540
|
Content-Type:
|
541
541
|
- text/plain; charset=utf-8
|
542
542
|
Date:
|
543
|
-
-
|
543
|
+
- Tue, 23 Jun 2015 00:59:30 GMT
|
544
544
|
Content-Length:
|
545
545
|
- '27'
|
546
546
|
body:
|
@@ -548,7 +548,7 @@ http_interactions:
|
|
548
548
|
string: |
|
549
549
|
no such id: mounts_volumes
|
550
550
|
http_version:
|
551
|
-
recorded_at:
|
551
|
+
recorded_at: Tue, 23 Jun 2015 00:59:30 GMT
|
552
552
|
- request:
|
553
553
|
method: get
|
554
554
|
uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
|
@@ -568,7 +568,7 @@ http_interactions:
|
|
568
568
|
Content-Type:
|
569
569
|
- text/plain; charset=utf-8
|
570
570
|
Date:
|
571
|
-
-
|
571
|
+
- Tue, 23 Jun 2015 00:59:30 GMT
|
572
572
|
Content-Length:
|
573
573
|
- '27'
|
574
574
|
body:
|
@@ -576,7 +576,7 @@ http_interactions:
|
|
576
576
|
string: |
|
577
577
|
no such id: mounts_volumes
|
578
578
|
http_version:
|
579
|
-
recorded_at:
|
579
|
+
recorded_at: Tue, 23 Jun 2015 00:59:30 GMT
|
580
580
|
- request:
|
581
581
|
method: get
|
582
582
|
uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
|
@@ -596,7 +596,7 @@ http_interactions:
|
|
596
596
|
Content-Type:
|
597
597
|
- text/plain; charset=utf-8
|
598
598
|
Date:
|
599
|
-
-
|
599
|
+
- Tue, 23 Jun 2015 00:59:30 GMT
|
600
600
|
Content-Length:
|
601
601
|
- '27'
|
602
602
|
body:
|
@@ -604,7 +604,7 @@ http_interactions:
|
|
604
604
|
string: |
|
605
605
|
no such id: mounts_volumes
|
606
606
|
http_version:
|
607
|
-
recorded_at:
|
607
|
+
recorded_at: Tue, 23 Jun 2015 00:59:30 GMT
|
608
608
|
- request:
|
609
609
|
method: get
|
610
610
|
uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
|
@@ -624,7 +624,7 @@ http_interactions:
|
|
624
624
|
Content-Type:
|
625
625
|
- text/plain; charset=utf-8
|
626
626
|
Date:
|
627
|
-
-
|
627
|
+
- Tue, 23 Jun 2015 00:59:30 GMT
|
628
628
|
Content-Length:
|
629
629
|
- '27'
|
630
630
|
body:
|
@@ -632,7 +632,7 @@ http_interactions:
|
|
632
632
|
string: |
|
633
633
|
no such id: mounts_volumes
|
634
634
|
http_version:
|
635
|
-
recorded_at:
|
635
|
+
recorded_at: Tue, 23 Jun 2015 00:59:30 GMT
|
636
636
|
- request:
|
637
637
|
method: get
|
638
638
|
uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
|
@@ -652,7 +652,7 @@ http_interactions:
|
|
652
652
|
Content-Type:
|
653
653
|
- text/plain; charset=utf-8
|
654
654
|
Date:
|
655
|
-
-
|
655
|
+
- Tue, 23 Jun 2015 00:59:30 GMT
|
656
656
|
Content-Length:
|
657
657
|
- '27'
|
658
658
|
body:
|
@@ -660,13 +660,13 @@ http_interactions:
|
|
660
660
|
string: |
|
661
661
|
no such id: mounts_volumes
|
662
662
|
http_version:
|
663
|
-
recorded_at:
|
663
|
+
recorded_at: Tue, 23 Jun 2015 00:59:30 GMT
|
664
664
|
- request:
|
665
665
|
method: post
|
666
666
|
uri: "<DOCKER_HOST>/v1.16/containers/create?name=mounts_volumes"
|
667
667
|
body:
|
668
668
|
encoding: UTF-8
|
669
|
-
string: '{"Env":[],"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","ExposedPorts":{}}'
|
669
|
+
string: '{"Env":[],"Hostname":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","ExposedPorts":{}}'
|
670
670
|
headers:
|
671
671
|
User-Agent:
|
672
672
|
- Swipely/Docker-API 1.21.4
|
@@ -680,18 +680,18 @@ http_interactions:
|
|
680
680
|
Content-Type:
|
681
681
|
- application/json
|
682
682
|
Date:
|
683
|
-
-
|
683
|
+
- Tue, 23 Jun 2015 00:59:31 GMT
|
684
684
|
Content-Length:
|
685
685
|
- '90'
|
686
686
|
body:
|
687
687
|
encoding: UTF-8
|
688
688
|
string: |
|
689
|
-
{"Id":"
|
689
|
+
{"Id":"fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71","Warnings":null}
|
690
690
|
http_version:
|
691
|
-
recorded_at:
|
691
|
+
recorded_at: Tue, 23 Jun 2015 00:59:31 GMT
|
692
692
|
- request:
|
693
693
|
method: post
|
694
|
-
uri: "<DOCKER_HOST>/v1.16/containers/
|
694
|
+
uri: "<DOCKER_HOST>/v1.16/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/start"
|
695
695
|
body:
|
696
696
|
encoding: UTF-8
|
697
697
|
string: '{"Links":[],"ExtraHosts":[],"PortBindings":{},"VolumesFrom":["exports_volumes"],"Binds":[]}'
|
@@ -706,12 +706,12 @@ http_interactions:
|
|
706
706
|
message:
|
707
707
|
headers:
|
708
708
|
Date:
|
709
|
-
-
|
709
|
+
- Tue, 23 Jun 2015 00:59:31 GMT
|
710
710
|
body:
|
711
711
|
encoding: UTF-8
|
712
712
|
string: ''
|
713
713
|
http_version:
|
714
|
-
recorded_at:
|
714
|
+
recorded_at: Tue, 23 Jun 2015 00:59:31 GMT
|
715
715
|
- request:
|
716
716
|
method: get
|
717
717
|
uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
|
@@ -731,16 +731,16 @@ http_interactions:
|
|
731
731
|
Content-Type:
|
732
732
|
- application/json
|
733
733
|
Date:
|
734
|
-
-
|
734
|
+
- Tue, 23 Jun 2015 00:59:31 GMT
|
735
735
|
body:
|
736
736
|
encoding: UTF-8
|
737
737
|
string: |
|
738
|
-
{"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":"
|
738
|
+
{"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:30.969327361Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":["exports_volumes"]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/hosts","Id":"fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71-json.log","MountLabel":"","Name":"/mounts_volumes","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.94","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:5e","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:5e","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10017,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T00:59:31.336262823Z"},"Volumes":{},"VolumesRW":{}}
|
739
739
|
http_version:
|
740
|
-
recorded_at:
|
740
|
+
recorded_at: Tue, 23 Jun 2015 00:59:31 GMT
|
741
741
|
- request:
|
742
742
|
method: post
|
743
|
-
uri: "<DOCKER_HOST>/v1.16/containers/
|
743
|
+
uri: "<DOCKER_HOST>/v1.16/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/exec"
|
744
744
|
body:
|
745
745
|
encoding: UTF-8
|
746
746
|
string: '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":false,"Cmd":["ls","/bigrig-wait.sh"]}'
|
@@ -757,18 +757,18 @@ http_interactions:
|
|
757
757
|
Content-Type:
|
758
758
|
- application/json
|
759
759
|
Date:
|
760
|
-
-
|
760
|
+
- Tue, 23 Jun 2015 00:59:31 GMT
|
761
761
|
Content-Length:
|
762
762
|
- '74'
|
763
763
|
body:
|
764
764
|
encoding: UTF-8
|
765
765
|
string: |
|
766
|
-
{"Id":"
|
766
|
+
{"Id":"f3a23a57704218b680417a4999bc639c40ff9c69f28969d089fe64e3e7824a74"}
|
767
767
|
http_version:
|
768
|
-
recorded_at:
|
768
|
+
recorded_at: Tue, 23 Jun 2015 00:59:31 GMT
|
769
769
|
- request:
|
770
770
|
method: post
|
771
|
-
uri: "<DOCKER_HOST>/v1.16/exec/
|
771
|
+
uri: "<DOCKER_HOST>/v1.16/exec/f3a23a57704218b680417a4999bc639c40ff9c69f28969d089fe64e3e7824a74/start"
|
772
772
|
body:
|
773
773
|
encoding: UTF-8
|
774
774
|
string: '{"Tty":false,"Detach":false}'
|
@@ -790,10 +790,10 @@ http_interactions:
|
|
790
790
|
AgAAAAAAAD1sczogY2Fubm90IGFjY2VzcyAvYmlncmlnLXdhaXQuc2g6IE5v
|
791
791
|
IHN1Y2ggZmlsZSBvciBkaXJlY3RvcnkK
|
792
792
|
http_version:
|
793
|
-
recorded_at:
|
793
|
+
recorded_at: Tue, 23 Jun 2015 00:59:31 GMT
|
794
794
|
- request:
|
795
795
|
method: get
|
796
|
-
uri: "<DOCKER_HOST>/v1.16/exec/
|
796
|
+
uri: "<DOCKER_HOST>/v1.16/exec/f3a23a57704218b680417a4999bc639c40ff9c69f28969d089fe64e3e7824a74/json"
|
797
797
|
body:
|
798
798
|
encoding: US-ASCII
|
799
799
|
string: ''
|
@@ -810,14 +810,14 @@ http_interactions:
|
|
810
810
|
Content-Type:
|
811
811
|
- application/json
|
812
812
|
Date:
|
813
|
-
-
|
813
|
+
- Tue, 23 Jun 2015 00:59:31 GMT
|
814
814
|
body:
|
815
815
|
encoding: UTF-8
|
816
|
-
string: '{"ID":"
|
817
|
-
/code/server.rb"],"Config":{"Hostname":"
|
818
|
-
/code/server.rb"],"NetworkDisabled":false,"MacAddress":"","OnBuild":null,"Labels":{}},"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","NetworkSettings":{"IPAddress":"172.17.
|
816
|
+
string: '{"ID":"f3a23a57704218b680417a4999bc639c40ff9c69f28969d089fe64e3e7824a74","Running":false,"ExitCode":2,"ProcessConfig":{"privileged":false,"user":"","tty":false,"entrypoint":"ls","arguments":["/bigrig-wait.sh"]},"OpenStdin":false,"OpenStderr":true,"OpenStdout":true,"Container":{"State":{"Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":10017,"ExitCode":0,"Error":"","StartedAt":"2015-06-23T00:59:31.336262823Z","FinishedAt":"0001-01-01T00:00:00Z"},"ID":"fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71","Created":"2015-06-23T00:59:30.969327361Z","Path":"/bin/sh","Args":["-c","ruby
|
817
|
+
/code/server.rb"],"Config":{"Hostname":"HNEWTONMAC3","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"Cpuset":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":{"80/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"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"],"Cmd":null,"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Volumes":null,"WorkingDir":"","Entrypoint":["/bin/sh","-c","ruby
|
818
|
+
/code/server.rb"],"NetworkDisabled":false,"MacAddress":"","OnBuild":null,"Labels":{}},"Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","NetworkSettings":{"IPAddress":"172.17.0.94","IPPrefixLen":16,"MacAddress":"02:42:ac:11:00:5e","LinkLocalIPv6Address":"fe80::42:acff:fe11:5e","LinkLocalIPv6PrefixLen":64,"GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"Gateway":"172.17.42.1","IPv6Gateway":"","Bridge":"docker0","PortMapping":null,"Ports":{"80/tcp":null}},"ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/resolv.conf","HostnamePath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/hosts","LogPath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71-json.log","Name":"/mounts_volumes","Driver":"aufs","ExecDriver":"native-0.2","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","RestartCount":0,"UpdateDns":false,"Volumes":{},"VolumesRW":{},"AppliedVolumesFrom":{"exports_volumes":{}}}}'
|
819
819
|
http_version:
|
820
|
-
recorded_at:
|
820
|
+
recorded_at: Tue, 23 Jun 2015 00:59:31 GMT
|
821
821
|
- request:
|
822
822
|
method: get
|
823
823
|
uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
|
@@ -837,16 +837,16 @@ http_interactions:
|
|
837
837
|
Content-Type:
|
838
838
|
- application/json
|
839
839
|
Date:
|
840
|
-
-
|
840
|
+
- Tue, 23 Jun 2015 00:59:31 GMT
|
841
841
|
body:
|
842
842
|
encoding: UTF-8
|
843
843
|
string: |
|
844
|
-
{"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":"
|
844
|
+
{"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:30.969327361Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["f3a23a57704218b680417a4999bc639c40ff9c69f28969d089fe64e3e7824a74"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":["exports_volumes"]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/hosts","Id":"fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71-json.log","MountLabel":"","Name":"/mounts_volumes","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.94","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:5e","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:5e","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10017,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T00:59:31.336262823Z"},"Volumes":{},"VolumesRW":{}}
|
845
845
|
http_version:
|
846
|
-
recorded_at:
|
846
|
+
recorded_at: Tue, 23 Jun 2015 00:59:31 GMT
|
847
847
|
- request:
|
848
848
|
method: get
|
849
|
-
uri: "<DOCKER_HOST>/v1.16/containers/
|
849
|
+
uri: "<DOCKER_HOST>/v1.16/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/json"
|
850
850
|
body:
|
851
851
|
encoding: US-ASCII
|
852
852
|
string: ''
|
@@ -863,13 +863,13 @@ http_interactions:
|
|
863
863
|
Content-Type:
|
864
864
|
- application/json
|
865
865
|
Date:
|
866
|
-
-
|
866
|
+
- Tue, 23 Jun 2015 00:59:31 GMT
|
867
867
|
body:
|
868
868
|
encoding: UTF-8
|
869
869
|
string: |
|
870
|
-
{"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":"
|
870
|
+
{"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:30.969327361Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["f3a23a57704218b680417a4999bc639c40ff9c69f28969d089fe64e3e7824a74"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":["exports_volumes"]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/hosts","Id":"fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71-json.log","MountLabel":"","Name":"/mounts_volumes","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.94","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:5e","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:5e","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10017,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T00:59:31.336262823Z"},"Volumes":{},"VolumesRW":{}}
|
871
871
|
http_version:
|
872
|
-
recorded_at:
|
872
|
+
recorded_at: Tue, 23 Jun 2015 00:59:31 GMT
|
873
873
|
- request:
|
874
874
|
method: get
|
875
875
|
uri: "<DOCKER_HOST>/v1.16/containers/mounts_volumes/json"
|
@@ -889,16 +889,16 @@ http_interactions:
|
|
889
889
|
Content-Type:
|
890
890
|
- application/json
|
891
891
|
Date:
|
892
|
-
-
|
892
|
+
- Tue, 23 Jun 2015 00:59:31 GMT
|
893
893
|
body:
|
894
894
|
encoding: UTF-8
|
895
895
|
string: |
|
896
|
-
{"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":"
|
896
|
+
{"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:30.969327361Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["f3a23a57704218b680417a4999bc639c40ff9c69f28969d089fe64e3e7824a74"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":["exports_volumes"]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/hosts","Id":"fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71-json.log","MountLabel":"","Name":"/mounts_volumes","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.94","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:5e","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:5e","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10017,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T00:59:31.336262823Z"},"Volumes":{},"VolumesRW":{}}
|
897
897
|
http_version:
|
898
|
-
recorded_at:
|
898
|
+
recorded_at: Tue, 23 Jun 2015 00:59:31 GMT
|
899
899
|
- request:
|
900
900
|
method: post
|
901
|
-
uri: "<DOCKER_HOST>/v1.16/containers/
|
901
|
+
uri: "<DOCKER_HOST>/v1.16/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71/kill"
|
902
902
|
body:
|
903
903
|
encoding: US-ASCII
|
904
904
|
string: ''
|
@@ -913,15 +913,15 @@ http_interactions:
|
|
913
913
|
message:
|
914
914
|
headers:
|
915
915
|
Date:
|
916
|
-
-
|
916
|
+
- Tue, 23 Jun 2015 00:59:31 GMT
|
917
917
|
body:
|
918
918
|
encoding: UTF-8
|
919
919
|
string: ''
|
920
920
|
http_version:
|
921
|
-
recorded_at:
|
921
|
+
recorded_at: Tue, 23 Jun 2015 00:59:31 GMT
|
922
922
|
- request:
|
923
923
|
method: delete
|
924
|
-
uri: "<DOCKER_HOST>/v1.16/containers/
|
924
|
+
uri: "<DOCKER_HOST>/v1.16/containers/fb375c66a2c55b0a625951397c95bbd955ffe7acb0b5fba8d3c031e988b26b71"
|
925
925
|
body:
|
926
926
|
encoding: US-ASCII
|
927
927
|
string: ''
|
@@ -936,12 +936,12 @@ http_interactions:
|
|
936
936
|
message:
|
937
937
|
headers:
|
938
938
|
Date:
|
939
|
-
-
|
939
|
+
- Tue, 23 Jun 2015 00:59:32 GMT
|
940
940
|
body:
|
941
941
|
encoding: UTF-8
|
942
942
|
string: ''
|
943
943
|
http_version:
|
944
|
-
recorded_at:
|
944
|
+
recorded_at: Tue, 23 Jun 2015 00:59:31 GMT
|
945
945
|
- request:
|
946
946
|
method: get
|
947
947
|
uri: "<DOCKER_HOST>/v1.16/containers/exports_volumes/json"
|
@@ -961,16 +961,16 @@ http_interactions:
|
|
961
961
|
Content-Type:
|
962
962
|
- application/json
|
963
963
|
Date:
|
964
|
-
-
|
964
|
+
- Tue, 23 Jun 2015 00:59:32 GMT
|
965
965
|
body:
|
966
966
|
encoding: UTF-8
|
967
967
|
string: |
|
968
|
-
{"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":"
|
968
|
+
{"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":"HNEWTONMAC3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","Labels":{},"MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-06-23T00:59:29.864496398Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":["0bbad9ea4a9f0bd12cf9058a11d6c41f36336a62e2de0ae065d3e40c4b18a037"],"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"CgroupParent":"","ContainerIDFile":"","CpuShares":0,"CpusetCpus":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LogConfig":{"Config":null,"Type":"json-file"},"LxcConf":null,"Memory":0,"MemorySwap":0,"NetworkMode":"","PidMode":"","PortBindings":{},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"Ulimits":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59/hosts","Id":"351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","LogPath":"/mnt/sda1/var/lib/docker/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59-json.log","MountLabel":"","Name":"/exports_volumes","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.93","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:5d","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:00:5d","PortMapping":null,"Ports":{"80/tcp":null}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59/resolv.conf","RestartCount":0,"State":{"Dead":false,"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":10003,"Restarting":false,"Running":true,"StartedAt":"2015-06-23T00:59:30.327167278Z"},"Volumes":{},"VolumesRW":{}}
|
969
969
|
http_version:
|
970
|
-
recorded_at:
|
970
|
+
recorded_at: Tue, 23 Jun 2015 00:59:32 GMT
|
971
971
|
- request:
|
972
972
|
method: post
|
973
|
-
uri: "<DOCKER_HOST>/v1.16/containers/
|
973
|
+
uri: "<DOCKER_HOST>/v1.16/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59/kill"
|
974
974
|
body:
|
975
975
|
encoding: US-ASCII
|
976
976
|
string: ''
|
@@ -985,15 +985,15 @@ http_interactions:
|
|
985
985
|
message:
|
986
986
|
headers:
|
987
987
|
Date:
|
988
|
-
-
|
988
|
+
- Tue, 23 Jun 2015 00:59:32 GMT
|
989
989
|
body:
|
990
990
|
encoding: UTF-8
|
991
991
|
string: ''
|
992
992
|
http_version:
|
993
|
-
recorded_at:
|
993
|
+
recorded_at: Tue, 23 Jun 2015 00:59:32 GMT
|
994
994
|
- request:
|
995
995
|
method: delete
|
996
|
-
uri: "<DOCKER_HOST>/v1.16/containers/
|
996
|
+
uri: "<DOCKER_HOST>/v1.16/containers/351f3e37fe38d14556c68df7299cf8390e8a399aedeb7c69fd6e239b18830a59"
|
997
997
|
body:
|
998
998
|
encoding: US-ASCII
|
999
999
|
string: ''
|
@@ -1008,10 +1008,10 @@ http_interactions:
|
|
1008
1008
|
message:
|
1009
1009
|
headers:
|
1010
1010
|
Date:
|
1011
|
-
-
|
1011
|
+
- Tue, 23 Jun 2015 00:59:32 GMT
|
1012
1012
|
body:
|
1013
1013
|
encoding: UTF-8
|
1014
1014
|
string: ''
|
1015
1015
|
http_version:
|
1016
|
-
recorded_at:
|
1016
|
+
recorded_at: Tue, 23 Jun 2015 00:59:32 GMT
|
1017
1017
|
recorded_with: VCR 2.9.3
|