docker-api 1.18.0 → 1.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -7
- data/lib/docker/exec.rb +8 -2
- data/lib/docker/util.rb +11 -1
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +6 -5
- data/spec/docker/exec_spec.rb +29 -61
- data/spec/docker/image_spec.rb +8 -4
- data/spec/docker_spec.rb +4 -3
- data/spec/fixtures/build_from_dir/Dockerfile +1 -1
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +10 -9
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +15 -9
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +15 -9
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +10 -9
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +45 -34
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +31 -30
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +31 -30
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +45 -42
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +66 -35
- data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +37 -35
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +45 -43
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +44 -42
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +24 -22
- data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +15 -14
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +24 -22
- data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +68 -39
- data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +68 -38
- data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages_and_exit_code.yml +183 -0
- data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +26 -25
- data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +68 -38
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +85 -92
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +24 -22
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +24 -22
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +48 -43
- data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +83 -69
- data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +47 -42
- data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +20 -19
- data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +45 -43
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +73 -65
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +29 -27
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_returns_a_status_code_of_0/creates_a_new_container_to_run_the_specified_command.yml +114 -102
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +42 -37
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +49 -44
- data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +47 -42
- data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +20 -19
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +54 -51
- data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +45 -43
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +29 -27
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +29 -27
- data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +35 -33
- data/spec/vcr/Docker_Exec/_json/returns_the_description_as_a_Hash.yml +207 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +68 -38
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +68 -38
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout/stderr_messages_with_exitcode.yml +180 -0
- data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +67 -38
- data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +67 -38
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +67 -87
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +9 -9
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_an_image_and_tags_it.yml +92 -107
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +9 -9
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +11 -9
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +89 -38
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +89 -38
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +421 -51
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_the_image_and_tags_it.yml +422 -140
- data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id_and_sends_Docker_creds.yml +16 -16
- data/spec/vcr/Docker_Image/_create/with_a_block_capturing_create_output/calls_the_block_and_passes_build_output.yml +9 -7
- data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +11 -9
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +11 -9
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +21 -18
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +164 -35
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +21 -23
- data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +15 -15
- data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +887 -840
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +76 -65
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +56 -48
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +63 -61
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +9 -9
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +69 -66
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +19 -17
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +99 -113
- data/spec/vcr/Docker_Image/_push/streams_output_from_push.yml +100 -391
- data/spec/vcr/Docker_Image/_push/when_the_image_was_retrived_by_get/when_no_tag_is_specified/looks_up_the_first_repo_tag.yml +174 -708
- data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +115 -110
- data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +77 -93
- data/spec/vcr/Docker_Image/_refresh_/with_an_explicit_connection/updates_using_the_provided_connection.yml +19 -17
- data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +581 -229
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +52 -50
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +42 -40
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/command_configured_in_image/should_normally_show_result_if_image_has_Cmd_configured.yml +52 -50
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/no_command_configured_in_image/should_raise_an_error_if_no_command_is_specified.yml +16 -15
- data/spec/vcr/Docker_Image/_save/calls_the_class_method.yml +42 -39
- data/spec/vcr/Docker_Image/_save/when_a_filename_is_specified/exports_tarball_of_image_to_specified_file.yml +51 -63
- data/spec/vcr/Docker_Image/_save/when_no_filename_is_specified/returns_raw_binary_data_as_string.yml +51 -63
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +48 -209
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +22 -22
- metadata +8 -8
- data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages.yml +0 -153
- data/spec/vcr/Docker_Exec/_resize/when_exec_instance_has_TTY_enabled/returns_a_200.yml +0 -155
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout_and_stderr_messages.yml +0 -151
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/containers/create
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: '{"Hostname":"","User":"","Memory":0,"MemorySwap":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":null,"Cmd":["date"],"Dns":null,"Image":"debian:wheezy","Volumes":{},"VolumesFrom":""}'
|
8
|
+
string: ! '{"Hostname":"","User":"","Memory":0,"MemorySwap":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":null,"Cmd":["date"],"Dns":null,"Image":"debian:wheezy","Volumes":{},"VolumesFrom":""}'
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.18.0
|
12
12
|
Content-Type:
|
13
13
|
- application/json
|
14
14
|
response:
|
@@ -19,24 +19,25 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Thu, 12 Feb 2015 00:54:28 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '90'
|
25
25
|
body:
|
26
|
-
encoding:
|
27
|
-
string:
|
28
|
-
|
26
|
+
encoding: US-ASCII
|
27
|
+
string: ! '{"Id":"f39b0ff6aeed1f8d046d463c878808b581c19d80620d2d5b8971df221275cf9b","Warnings":null}
|
28
|
+
|
29
|
+
'
|
29
30
|
http_version:
|
30
|
-
recorded_at:
|
31
|
+
recorded_at: Thu, 12 Feb 2015 00:54:28 GMT
|
31
32
|
- request:
|
32
33
|
method: delete
|
33
|
-
uri:
|
34
|
+
uri: <DOCKER_HOST>/v1.16/containers/f39b0ff6aeed1f8d046d463c878808b581c19d80620d2d5b8971df221275cf9b
|
34
35
|
body:
|
35
36
|
encoding: US-ASCII
|
36
37
|
string: ''
|
37
38
|
headers:
|
38
39
|
User-Agent:
|
39
|
-
- Swipely/Docker-API 1.
|
40
|
+
- Swipely/Docker-API 1.18.0
|
40
41
|
Content-Type:
|
41
42
|
- text/plain
|
42
43
|
response:
|
@@ -45,10 +46,10 @@ http_interactions:
|
|
45
46
|
message:
|
46
47
|
headers:
|
47
48
|
Date:
|
48
|
-
-
|
49
|
+
- Thu, 12 Feb 2015 00:54:29 GMT
|
49
50
|
body:
|
50
|
-
encoding:
|
51
|
+
encoding: US-ASCII
|
51
52
|
string: ''
|
52
53
|
http_version:
|
53
|
-
recorded_at:
|
54
|
-
recorded_with: VCR 2.9.
|
54
|
+
recorded_at: Thu, 12 Feb 2015 00:54:29 GMT
|
55
|
+
recorded_with: VCR 2.9.2
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/containers/create
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: '{"Cmd":["ls"],"Image":"debian:wheezy"}'
|
8
|
+
string: ! '{"Cmd":["ls"],"Image":"debian:wheezy"}'
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.18.0
|
12
12
|
Content-Type:
|
13
13
|
- application/json
|
14
14
|
response:
|
@@ -19,24 +19,25 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Thu, 12 Feb 2015 00:54:07 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '90'
|
25
25
|
body:
|
26
|
-
encoding:
|
27
|
-
string:
|
28
|
-
|
26
|
+
encoding: US-ASCII
|
27
|
+
string: ! '{"Id":"0b3fa3757c84d48a63630bc49f66e05d831c57c8bfaa1d4cc86a9cd9f7abbb2a","Warnings":null}
|
28
|
+
|
29
|
+
'
|
29
30
|
http_version:
|
30
|
-
recorded_at:
|
31
|
+
recorded_at: Thu, 12 Feb 2015 00:54:07 GMT
|
31
32
|
- request:
|
32
33
|
method: delete
|
33
|
-
uri:
|
34
|
+
uri: <DOCKER_HOST>/v1.16/containers/0b3fa3757c84d48a63630bc49f66e05d831c57c8bfaa1d4cc86a9cd9f7abbb2a?force=true
|
34
35
|
body:
|
35
36
|
encoding: US-ASCII
|
36
37
|
string: ''
|
37
38
|
headers:
|
38
39
|
User-Agent:
|
39
|
-
- Swipely/Docker-API 1.
|
40
|
+
- Swipely/Docker-API 1.18.0
|
40
41
|
Content-Type:
|
41
42
|
- text/plain
|
42
43
|
response:
|
@@ -45,21 +46,21 @@ http_interactions:
|
|
45
46
|
message:
|
46
47
|
headers:
|
47
48
|
Date:
|
48
|
-
-
|
49
|
+
- Thu, 12 Feb 2015 00:54:08 GMT
|
49
50
|
body:
|
50
|
-
encoding:
|
51
|
+
encoding: US-ASCII
|
51
52
|
string: ''
|
52
53
|
http_version:
|
53
|
-
recorded_at:
|
54
|
+
recorded_at: Thu, 12 Feb 2015 00:54:08 GMT
|
54
55
|
- request:
|
55
56
|
method: get
|
56
|
-
uri:
|
57
|
+
uri: <DOCKER_HOST>/v1.16/containers/json
|
57
58
|
body:
|
58
59
|
encoding: US-ASCII
|
59
60
|
string: ''
|
60
61
|
headers:
|
61
62
|
User-Agent:
|
62
|
-
- Swipely/Docker-API 1.
|
63
|
+
- Swipely/Docker-API 1.18.0
|
63
64
|
Content-Type:
|
64
65
|
- text/plain
|
65
66
|
response:
|
@@ -70,14 +71,15 @@ http_interactions:
|
|
70
71
|
Content-Type:
|
71
72
|
- application/json
|
72
73
|
Date:
|
73
|
-
-
|
74
|
+
- Thu, 12 Feb 2015 00:54:08 GMT
|
74
75
|
Content-Length:
|
75
76
|
- '275'
|
76
77
|
body:
|
77
|
-
encoding:
|
78
|
-
string:
|
79
|
-
|
80
|
-
|
78
|
+
encoding: US-ASCII
|
79
|
+
string: ! '[{"Command":"docker-registry","Created":1423702401,"Id":"7495fa1e6c231934f42eb34525f24a052af2a7a43ae9c85051636428a62a40ba","Image":"registry:latest","Names":["/registry"],"Ports":[{"IP":"0.0.0.0","PrivatePort":5000,"PublicPort":5000,"Type":"tcp"}],"Status":"Up
|
80
|
+
46 seconds"}
|
81
|
+
|
82
|
+
]'
|
81
83
|
http_version:
|
82
|
-
recorded_at:
|
83
|
-
recorded_with: VCR 2.9.
|
84
|
+
recorded_at: Thu, 12 Feb 2015 00:54:08 GMT
|
85
|
+
recorded_with: VCR 2.9.2
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/containers/create
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: '{"Cmd":["sleep","20"],"Image":"debian:wheezy"}'
|
8
|
+
string: ! '{"Cmd":["sleep","20"],"Image":"debian:wheezy"}'
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.18.0
|
12
12
|
Content-Type:
|
13
13
|
- application/json
|
14
14
|
response:
|
@@ -19,24 +19,25 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Thu, 12 Feb 2015 00:53:57 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '90'
|
25
25
|
body:
|
26
|
-
encoding:
|
27
|
-
string:
|
28
|
-
|
26
|
+
encoding: US-ASCII
|
27
|
+
string: ! '{"Id":"5e60e58a03d356d5ca53e08b9a980d46c420c583226c573981da90e9a7823028","Warnings":null}
|
28
|
+
|
29
|
+
'
|
29
30
|
http_version:
|
30
|
-
recorded_at:
|
31
|
+
recorded_at: Thu, 12 Feb 2015 00:53:57 GMT
|
31
32
|
- request:
|
32
33
|
method: post
|
33
|
-
uri:
|
34
|
+
uri: <DOCKER_HOST>/v1.16/containers/5e60e58a03d356d5ca53e08b9a980d46c420c583226c573981da90e9a7823028/start
|
34
35
|
body:
|
35
36
|
encoding: UTF-8
|
36
|
-
string:
|
37
|
+
string: ! '{}'
|
37
38
|
headers:
|
38
39
|
User-Agent:
|
39
|
-
- Swipely/Docker-API 1.
|
40
|
+
- Swipely/Docker-API 1.18.0
|
40
41
|
Content-Type:
|
41
42
|
- application/json
|
42
43
|
response:
|
@@ -45,21 +46,21 @@ http_interactions:
|
|
45
46
|
message:
|
46
47
|
headers:
|
47
48
|
Date:
|
48
|
-
-
|
49
|
+
- Thu, 12 Feb 2015 00:53:57 GMT
|
49
50
|
body:
|
50
|
-
encoding:
|
51
|
+
encoding: US-ASCII
|
51
52
|
string: ''
|
52
53
|
http_version:
|
53
|
-
recorded_at:
|
54
|
+
recorded_at: Thu, 12 Feb 2015 00:53:57 GMT
|
54
55
|
- request:
|
55
56
|
method: post
|
56
|
-
uri:
|
57
|
+
uri: <DOCKER_HOST>/v1.16/containers/5e60e58a03d356d5ca53e08b9a980d46c420c583226c573981da90e9a7823028/exec
|
57
58
|
body:
|
58
59
|
encoding: UTF-8
|
59
|
-
string: '{"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"Tty":false,"Cmd":"date"}'
|
60
|
+
string: ! '{"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"Tty":false,"Cmd":"date"}'
|
60
61
|
headers:
|
61
62
|
User-Agent:
|
62
|
-
- Swipely/Docker-API 1.
|
63
|
+
- Swipely/Docker-API 1.18.0
|
63
64
|
Content-Type:
|
64
65
|
- application/json
|
65
66
|
response:
|
@@ -70,24 +71,25 @@ http_interactions:
|
|
70
71
|
Content-Type:
|
71
72
|
- application/json
|
72
73
|
Date:
|
73
|
-
-
|
74
|
+
- Thu, 12 Feb 2015 00:53:57 GMT
|
74
75
|
Content-Length:
|
75
76
|
- '74'
|
76
77
|
body:
|
77
|
-
encoding:
|
78
|
-
string:
|
79
|
-
|
78
|
+
encoding: US-ASCII
|
79
|
+
string: ! '{"Id":"431874b615c077f95a93a28edb1d5b505d16196e251747b2634e457feecce274"}
|
80
|
+
|
81
|
+
'
|
80
82
|
http_version:
|
81
|
-
recorded_at:
|
83
|
+
recorded_at: Thu, 12 Feb 2015 00:53:57 GMT
|
82
84
|
- request:
|
83
85
|
method: post
|
84
|
-
uri:
|
86
|
+
uri: <DOCKER_HOST>/v1.16/exec/431874b615c077f95a93a28edb1d5b505d16196e251747b2634e457feecce274/start
|
85
87
|
body:
|
86
88
|
encoding: UTF-8
|
87
|
-
string: '{"Tty":false,"Detach":true}'
|
89
|
+
string: ! '{"Tty":false,"Detach":true}'
|
88
90
|
headers:
|
89
91
|
User-Agent:
|
90
|
-
- Swipely/Docker-API 1.
|
92
|
+
- Swipely/Docker-API 1.18.0
|
91
93
|
Content-Type:
|
92
94
|
- application/json
|
93
95
|
response:
|
@@ -96,21 +98,48 @@ http_interactions:
|
|
96
98
|
message:
|
97
99
|
headers:
|
98
100
|
Date:
|
99
|
-
-
|
101
|
+
- Thu, 12 Feb 2015 00:53:57 GMT
|
100
102
|
body:
|
101
|
-
encoding:
|
103
|
+
encoding: US-ASCII
|
102
104
|
string: ''
|
103
105
|
http_version:
|
104
|
-
recorded_at:
|
106
|
+
recorded_at: Thu, 12 Feb 2015 00:53:57 GMT
|
107
|
+
- request:
|
108
|
+
method: get
|
109
|
+
uri: <DOCKER_HOST>/v1.16/exec/431874b615c077f95a93a28edb1d5b505d16196e251747b2634e457feecce274/json
|
110
|
+
body:
|
111
|
+
encoding: US-ASCII
|
112
|
+
string: ''
|
113
|
+
headers:
|
114
|
+
User-Agent:
|
115
|
+
- Swipely/Docker-API 1.18.0
|
116
|
+
Content-Type:
|
117
|
+
- text/plain
|
118
|
+
response:
|
119
|
+
status:
|
120
|
+
code: 200
|
121
|
+
message:
|
122
|
+
headers:
|
123
|
+
Content-Type:
|
124
|
+
- application/json
|
125
|
+
Date:
|
126
|
+
- Thu, 12 Feb 2015 00:53:57 GMT
|
127
|
+
Content-Length:
|
128
|
+
- '1857'
|
129
|
+
body:
|
130
|
+
encoding: US-ASCII
|
131
|
+
string: ! '{"ID":"431874b615c077f95a93a28edb1d5b505d16196e251747b2634e457feecce274","Running":true,"ExitCode":0,"ProcessConfig":{"privileged":false,"user":"","tty":false,"entrypoint":"date","arguments":[]},"OpenStdin":false,"OpenStderr":false,"OpenStdout":false,"Container":{"State":{"Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Pid":9978,"ExitCode":0,"Error":"","StartedAt":"2015-02-12T00:53:57.576157852Z","FinishedAt":"0001-01-01T00:00:00Z"},"ID":"5e60e58a03d356d5ca53e08b9a980d46c420c583226c573981da90e9a7823028","Created":"2015-02-12T00:53:57.205086212Z","Path":"sleep","Args":["20"],"Config":{"Hostname":"5e60e58a03d3","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"Cpuset":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["sleep","20"],"Image":"debian:wheezy","Volumes":null,"WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"MacAddress":"","OnBuild":null},"Image":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","NetworkSettings":{"IPAddress":"172.17.0.65","IPPrefixLen":16,"MacAddress":"02:42:ac:11:00:41","Gateway":"172.17.42.1","Bridge":"docker0","PortMapping":null,"Ports":{}},"ResolvConfPath":"/var/lib/docker/containers/5e60e58a03d356d5ca53e08b9a980d46c420c583226c573981da90e9a7823028/resolv.conf","HostnamePath":"/var/lib/docker/containers/5e60e58a03d356d5ca53e08b9a980d46c420c583226c573981da90e9a7823028/hostname","HostsPath":"/var/lib/docker/containers/5e60e58a03d356d5ca53e08b9a980d46c420c583226c573981da90e9a7823028/hosts","Name":"/sharp_cori","Driver":"devicemapper","ExecDriver":"native-0.2","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","RestartCount":0,"Volumes":{},"VolumesRW":{}}}'
|
132
|
+
http_version:
|
133
|
+
recorded_at: Thu, 12 Feb 2015 00:53:57 GMT
|
105
134
|
- request:
|
106
135
|
method: post
|
107
|
-
uri:
|
136
|
+
uri: <DOCKER_HOST>/v1.16/containers/5e60e58a03d356d5ca53e08b9a980d46c420c583226c573981da90e9a7823028/kill
|
108
137
|
body:
|
109
138
|
encoding: US-ASCII
|
110
139
|
string: ''
|
111
140
|
headers:
|
112
141
|
User-Agent:
|
113
|
-
- Swipely/Docker-API 1.
|
142
|
+
- Swipely/Docker-API 1.18.0
|
114
143
|
Content-Type:
|
115
144
|
- text/plain
|
116
145
|
response:
|
@@ -119,21 +148,21 @@ http_interactions:
|
|
119
148
|
message:
|
120
149
|
headers:
|
121
150
|
Date:
|
122
|
-
-
|
151
|
+
- Thu, 12 Feb 2015 00:53:57 GMT
|
123
152
|
body:
|
124
|
-
encoding:
|
153
|
+
encoding: US-ASCII
|
125
154
|
string: ''
|
126
155
|
http_version:
|
127
|
-
recorded_at:
|
156
|
+
recorded_at: Thu, 12 Feb 2015 00:53:57 GMT
|
128
157
|
- request:
|
129
158
|
method: delete
|
130
|
-
uri:
|
159
|
+
uri: <DOCKER_HOST>/v1.16/containers/5e60e58a03d356d5ca53e08b9a980d46c420c583226c573981da90e9a7823028
|
131
160
|
body:
|
132
161
|
encoding: US-ASCII
|
133
162
|
string: ''
|
134
163
|
headers:
|
135
164
|
User-Agent:
|
136
|
-
- Swipely/Docker-API 1.
|
165
|
+
- Swipely/Docker-API 1.18.0
|
137
166
|
Content-Type:
|
138
167
|
- text/plain
|
139
168
|
response:
|
@@ -142,10 +171,10 @@ http_interactions:
|
|
142
171
|
message:
|
143
172
|
headers:
|
144
173
|
Date:
|
145
|
-
-
|
174
|
+
- Thu, 12 Feb 2015 00:53:58 GMT
|
146
175
|
body:
|
147
|
-
encoding:
|
176
|
+
encoding: US-ASCII
|
148
177
|
string: ''
|
149
178
|
http_version:
|
150
|
-
recorded_at:
|
151
|
-
recorded_with: VCR 2.9.
|
179
|
+
recorded_at: Thu, 12 Feb 2015 00:53:58 GMT
|
180
|
+
recorded_with: VCR 2.9.2
|
data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml
CHANGED
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/containers/create
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: '{"Cmd":["sleep","20"],"Image":"debian:wheezy"}'
|
8
|
+
string: ! '{"Cmd":["sleep","20"],"Image":"debian:wheezy"}'
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.18.0
|
12
12
|
Content-Type:
|
13
13
|
- application/json
|
14
14
|
response:
|
@@ -19,24 +19,25 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Thu, 12 Feb 2015 00:53:58 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '90'
|
25
25
|
body:
|
26
|
-
encoding:
|
27
|
-
string:
|
28
|
-
|
26
|
+
encoding: US-ASCII
|
27
|
+
string: ! '{"Id":"b4fb8b439cf2762aedb1241a518c4bc4bb9ea2ea75e59c1ef0e08b2383bdab2b","Warnings":null}
|
28
|
+
|
29
|
+
'
|
29
30
|
http_version:
|
30
|
-
recorded_at:
|
31
|
+
recorded_at: Thu, 12 Feb 2015 00:53:58 GMT
|
31
32
|
- request:
|
32
33
|
method: post
|
33
|
-
uri:
|
34
|
+
uri: <DOCKER_HOST>/v1.16/containers/b4fb8b439cf2762aedb1241a518c4bc4bb9ea2ea75e59c1ef0e08b2383bdab2b/start
|
34
35
|
body:
|
35
36
|
encoding: UTF-8
|
36
|
-
string:
|
37
|
+
string: ! '{}'
|
37
38
|
headers:
|
38
39
|
User-Agent:
|
39
|
-
- Swipely/Docker-API 1.
|
40
|
+
- Swipely/Docker-API 1.18.0
|
40
41
|
Content-Type:
|
41
42
|
- application/json
|
42
43
|
response:
|
@@ -45,22 +46,22 @@ http_interactions:
|
|
45
46
|
message:
|
46
47
|
headers:
|
47
48
|
Date:
|
48
|
-
-
|
49
|
+
- Thu, 12 Feb 2015 00:53:58 GMT
|
49
50
|
body:
|
50
|
-
encoding:
|
51
|
+
encoding: US-ASCII
|
51
52
|
string: ''
|
52
53
|
http_version:
|
53
|
-
recorded_at:
|
54
|
+
recorded_at: Thu, 12 Feb 2015 00:53:58 GMT
|
54
55
|
- request:
|
55
56
|
method: post
|
56
|
-
uri:
|
57
|
+
uri: <DOCKER_HOST>/v1.16/containers/b4fb8b439cf2762aedb1241a518c4bc4bb9ea2ea75e59c1ef0e08b2383bdab2b/exec
|
57
58
|
body:
|
58
59
|
encoding: UTF-8
|
59
|
-
string: '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":false,"Cmd":["bash","-c","sleep
|
60
|
+
string: ! '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":false,"Cmd":["bash","-c","sleep
|
60
61
|
2; echo hello"]}'
|
61
62
|
headers:
|
62
63
|
User-Agent:
|
63
|
-
- Swipely/Docker-API 1.
|
64
|
+
- Swipely/Docker-API 1.18.0
|
64
65
|
Content-Type:
|
65
66
|
- application/json
|
66
67
|
response:
|
@@ -71,24 +72,25 @@ http_interactions:
|
|
71
72
|
Content-Type:
|
72
73
|
- application/json
|
73
74
|
Date:
|
74
|
-
-
|
75
|
+
- Thu, 12 Feb 2015 00:53:58 GMT
|
75
76
|
Content-Length:
|
76
77
|
- '74'
|
77
78
|
body:
|
78
|
-
encoding:
|
79
|
-
string:
|
80
|
-
|
79
|
+
encoding: US-ASCII
|
80
|
+
string: ! '{"Id":"f64ea9906bbf5d9855359de06be8c33a5ff753b14efec2d846946419b9c78572"}
|
81
|
+
|
82
|
+
'
|
81
83
|
http_version:
|
82
|
-
recorded_at:
|
84
|
+
recorded_at: Thu, 12 Feb 2015 00:53:58 GMT
|
83
85
|
- request:
|
84
86
|
method: post
|
85
|
-
uri:
|
87
|
+
uri: <DOCKER_HOST>/v1.16/exec/f64ea9906bbf5d9855359de06be8c33a5ff753b14efec2d846946419b9c78572/start
|
86
88
|
body:
|
87
89
|
encoding: UTF-8
|
88
|
-
string: '{"Tty":false,"Detach":false}'
|
90
|
+
string: ! '{"Tty":false,"Detach":false}'
|
89
91
|
headers:
|
90
92
|
User-Agent:
|
91
|
-
- Swipely/Docker-API 1.
|
93
|
+
- Swipely/Docker-API 1.18.0
|
92
94
|
Content-Type:
|
93
95
|
- application/json
|
94
96
|
response:
|
@@ -99,20 +101,48 @@ http_interactions:
|
|
99
101
|
Content-Type:
|
100
102
|
- application/vnd.docker.raw-stream
|
101
103
|
body:
|
102
|
-
encoding:
|
104
|
+
encoding: US-ASCII
|
103
105
|
string: !binary |-
|
104
106
|
AQAAAAAAAAZoZWxsbwo=
|
105
107
|
http_version:
|
106
|
-
recorded_at:
|
108
|
+
recorded_at: Thu, 12 Feb 2015 00:54:00 GMT
|
109
|
+
- request:
|
110
|
+
method: get
|
111
|
+
uri: <DOCKER_HOST>/v1.16/exec/f64ea9906bbf5d9855359de06be8c33a5ff753b14efec2d846946419b9c78572/json
|
112
|
+
body:
|
113
|
+
encoding: US-ASCII
|
114
|
+
string: ''
|
115
|
+
headers:
|
116
|
+
User-Agent:
|
117
|
+
- Swipely/Docker-API 1.18.0
|
118
|
+
Content-Type:
|
119
|
+
- text/plain
|
120
|
+
response:
|
121
|
+
status:
|
122
|
+
code: 200
|
123
|
+
message:
|
124
|
+
headers:
|
125
|
+
Content-Type:
|
126
|
+
- application/json
|
127
|
+
Date:
|
128
|
+
- Thu, 12 Feb 2015 00:54:00 GMT
|
129
|
+
Content-Length:
|
130
|
+
- '1894'
|
131
|
+
body:
|
132
|
+
encoding: US-ASCII
|
133
|
+
string: ! '{"ID":"f64ea9906bbf5d9855359de06be8c33a5ff753b14efec2d846946419b9c78572","Running":false,"ExitCode":0,"ProcessConfig":{"privileged":false,"user":"","tty":false,"entrypoint":"bash","arguments":["-c","sleep
|
134
|
+
2; echo hello"]},"OpenStdin":false,"OpenStderr":true,"OpenStdout":true,"Container":{"State":{"Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Pid":10033,"ExitCode":0,"Error":"","StartedAt":"2015-02-12T00:53:58.933303983Z","FinishedAt":"0001-01-01T00:00:00Z"},"ID":"b4fb8b439cf2762aedb1241a518c4bc4bb9ea2ea75e59c1ef0e08b2383bdab2b","Created":"2015-02-12T00:53:58.561995441Z","Path":"sleep","Args":["20"],"Config":{"Hostname":"b4fb8b439cf2","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"Cpuset":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["sleep","20"],"Image":"debian:wheezy","Volumes":null,"WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"MacAddress":"","OnBuild":null},"Image":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","NetworkSettings":{"IPAddress":"172.17.0.66","IPPrefixLen":16,"MacAddress":"02:42:ac:11:00:42","Gateway":"172.17.42.1","Bridge":"docker0","PortMapping":null,"Ports":{}},"ResolvConfPath":"/var/lib/docker/containers/b4fb8b439cf2762aedb1241a518c4bc4bb9ea2ea75e59c1ef0e08b2383bdab2b/resolv.conf","HostnamePath":"/var/lib/docker/containers/b4fb8b439cf2762aedb1241a518c4bc4bb9ea2ea75e59c1ef0e08b2383bdab2b/hostname","HostsPath":"/var/lib/docker/containers/b4fb8b439cf2762aedb1241a518c4bc4bb9ea2ea75e59c1ef0e08b2383bdab2b/hosts","Name":"/compassionate_lalande","Driver":"devicemapper","ExecDriver":"native-0.2","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","RestartCount":0,"Volumes":{},"VolumesRW":{}}}'
|
135
|
+
http_version:
|
136
|
+
recorded_at: Thu, 12 Feb 2015 00:54:00 GMT
|
107
137
|
- request:
|
108
138
|
method: post
|
109
|
-
uri:
|
139
|
+
uri: <DOCKER_HOST>/v1.16/containers/b4fb8b439cf2762aedb1241a518c4bc4bb9ea2ea75e59c1ef0e08b2383bdab2b/kill
|
110
140
|
body:
|
111
141
|
encoding: US-ASCII
|
112
142
|
string: ''
|
113
143
|
headers:
|
114
144
|
User-Agent:
|
115
|
-
- Swipely/Docker-API 1.
|
145
|
+
- Swipely/Docker-API 1.18.0
|
116
146
|
Content-Type:
|
117
147
|
- text/plain
|
118
148
|
response:
|
@@ -121,21 +151,21 @@ http_interactions:
|
|
121
151
|
message:
|
122
152
|
headers:
|
123
153
|
Date:
|
124
|
-
-
|
154
|
+
- Thu, 12 Feb 2015 00:54:01 GMT
|
125
155
|
body:
|
126
|
-
encoding:
|
156
|
+
encoding: US-ASCII
|
127
157
|
string: ''
|
128
158
|
http_version:
|
129
|
-
recorded_at:
|
159
|
+
recorded_at: Thu, 12 Feb 2015 00:54:01 GMT
|
130
160
|
- request:
|
131
161
|
method: delete
|
132
|
-
uri:
|
162
|
+
uri: <DOCKER_HOST>/v1.16/containers/b4fb8b439cf2762aedb1241a518c4bc4bb9ea2ea75e59c1ef0e08b2383bdab2b
|
133
163
|
body:
|
134
164
|
encoding: US-ASCII
|
135
165
|
string: ''
|
136
166
|
headers:
|
137
167
|
User-Agent:
|
138
|
-
- Swipely/Docker-API 1.
|
168
|
+
- Swipely/Docker-API 1.18.0
|
139
169
|
Content-Type:
|
140
170
|
- text/plain
|
141
171
|
response:
|
@@ -144,10 +174,10 @@ http_interactions:
|
|
144
174
|
message:
|
145
175
|
headers:
|
146
176
|
Date:
|
147
|
-
-
|
177
|
+
- Thu, 12 Feb 2015 00:54:01 GMT
|
148
178
|
body:
|
149
|
-
encoding:
|
179
|
+
encoding: US-ASCII
|
150
180
|
string: ''
|
151
181
|
http_version:
|
152
|
-
recorded_at:
|
153
|
-
recorded_with: VCR 2.9.
|
182
|
+
recorded_at: Thu, 12 Feb 2015 00:54:01 GMT
|
183
|
+
recorded_with: VCR 2.9.2
|