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
data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.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","
|
8
|
+
string: ! '{"Cmd":["sleep","300"],"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:46 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '90'
|
25
25
|
body:
|
26
|
-
encoding:
|
27
|
-
string:
|
28
|
-
|
26
|
+
encoding: US-ASCII
|
27
|
+
string: ! '{"Id":"739470827bdfbd68746cc81414b90b49ffd1a15ff3501aab71a602e1058c2c09","Warnings":null}
|
28
|
+
|
29
|
+
'
|
29
30
|
http_version:
|
30
|
-
recorded_at:
|
31
|
+
recorded_at: Thu, 12 Feb 2015 00:54:46 GMT
|
31
32
|
- request:
|
32
33
|
method: post
|
33
|
-
uri:
|
34
|
+
uri: <DOCKER_HOST>/v1.16/containers/739470827bdfbd68746cc81414b90b49ffd1a15ff3501aab71a602e1058c2c09/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:54:46 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:46 GMT
|
54
55
|
- request:
|
55
56
|
method: post
|
56
|
-
uri:
|
57
|
+
uri: <DOCKER_HOST>/v1.16/containers/739470827bdfbd68746cc81414b90b49ffd1a15ff3501aab71a602e1058c2c09/exec
|
57
58
|
body:
|
58
59
|
encoding: UTF-8
|
59
|
-
string: '{"Cmd":["date"]}'
|
60
|
+
string: ! '{"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:54:46 GMT
|
74
75
|
Content-Length:
|
75
76
|
- '74'
|
76
77
|
body:
|
77
|
-
encoding:
|
78
|
-
string:
|
79
|
-
|
78
|
+
encoding: US-ASCII
|
79
|
+
string: ! '{"Id":"c5667b7d2922368bde8eea9c07108d171e90aee1bd2447b31fd98ce636f38100"}
|
80
|
+
|
81
|
+
'
|
80
82
|
http_version:
|
81
|
-
recorded_at:
|
83
|
+
recorded_at: Thu, 12 Feb 2015 00:54:46 GMT
|
82
84
|
- request:
|
83
85
|
method: post
|
84
|
-
uri:
|
86
|
+
uri: <DOCKER_HOST>/v1.16/exec/c5667b7d2922368bde8eea9c07108d171e90aee1bd2447b31fd98ce636f38100/start
|
85
87
|
body:
|
86
88
|
encoding: UTF-8
|
87
|
-
string: '{"Tty":false,"Detach":false}'
|
89
|
+
string: ! '{"Tty":false,"Detach":false}'
|
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:
|
@@ -98,19 +100,46 @@ http_interactions:
|
|
98
100
|
Content-Type:
|
99
101
|
- application/vnd.docker.raw-stream
|
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:54:46 GMT
|
107
|
+
- request:
|
108
|
+
method: get
|
109
|
+
uri: <DOCKER_HOST>/v1.16/exec/c5667b7d2922368bde8eea9c07108d171e90aee1bd2447b31fd98ce636f38100/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:54:46 GMT
|
127
|
+
Content-Length:
|
128
|
+
- '1864'
|
129
|
+
body:
|
130
|
+
encoding: US-ASCII
|
131
|
+
string: ! '{"ID":"c5667b7d2922368bde8eea9c07108d171e90aee1bd2447b31fd98ce636f38100","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":11328,"ExitCode":0,"Error":"","StartedAt":"2015-02-12T00:54:46.650127243Z","FinishedAt":"0001-01-01T00:00:00Z"},"ID":"739470827bdfbd68746cc81414b90b49ffd1a15ff3501aab71a602e1058c2c09","Created":"2015-02-12T00:54:46.287146699Z","Path":"sleep","Args":["300"],"Config":{"Hostname":"739470827bdf","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","300"],"Image":"debian:wheezy","Volumes":null,"WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"MacAddress":"","OnBuild":null},"Image":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","NetworkSettings":{"IPAddress":"172.17.0.87","IPPrefixLen":16,"MacAddress":"02:42:ac:11:00:57","Gateway":"172.17.42.1","Bridge":"docker0","PortMapping":null,"Ports":{}},"ResolvConfPath":"/var/lib/docker/containers/739470827bdfbd68746cc81414b90b49ffd1a15ff3501aab71a602e1058c2c09/resolv.conf","HostnamePath":"/var/lib/docker/containers/739470827bdfbd68746cc81414b90b49ffd1a15ff3501aab71a602e1058c2c09/hostname","HostsPath":"/var/lib/docker/containers/739470827bdfbd68746cc81414b90b49ffd1a15ff3501aab71a602e1058c2c09/hosts","Name":"/lonely_goodall","Driver":"devicemapper","ExecDriver":"native-0.2","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","RestartCount":0,"Volumes":{},"VolumesRW":{}}}'
|
132
|
+
http_version:
|
133
|
+
recorded_at: Thu, 12 Feb 2015 00:54:46 GMT
|
105
134
|
- request:
|
106
135
|
method: post
|
107
|
-
uri:
|
136
|
+
uri: <DOCKER_HOST>/v1.16/containers/739470827bdfbd68746cc81414b90b49ffd1a15ff3501aab71a602e1058c2c09/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:54:46 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:54:46 GMT
|
128
157
|
- request:
|
129
158
|
method: delete
|
130
|
-
uri:
|
159
|
+
uri: <DOCKER_HOST>/v1.16/containers/739470827bdfbd68746cc81414b90b49ffd1a15ff3501aab71a602e1058c2c09
|
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:54:47 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:54:47 GMT
|
180
|
+
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","
|
8
|
+
string: ! '{"Cmd":["sleep","300"],"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:45 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '90'
|
25
25
|
body:
|
26
|
-
encoding:
|
27
|
-
string:
|
28
|
-
|
26
|
+
encoding: US-ASCII
|
27
|
+
string: ! '{"Id":"5996e51bdf1d20dc1306d16ace5b0d9cad615d7128a12f9d0cb70169412b4b2d","Warnings":null}
|
28
|
+
|
29
|
+
'
|
29
30
|
http_version:
|
30
|
-
recorded_at:
|
31
|
+
recorded_at: Thu, 12 Feb 2015 00:54:45 GMT
|
31
32
|
- request:
|
32
33
|
method: post
|
33
|
-
uri:
|
34
|
+
uri: <DOCKER_HOST>/v1.16/containers/5996e51bdf1d20dc1306d16ace5b0d9cad615d7128a12f9d0cb70169412b4b2d/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:54:45 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:45 GMT
|
54
55
|
- request:
|
55
56
|
method: post
|
56
|
-
uri:
|
57
|
+
uri: <DOCKER_HOST>/v1.16/containers/5996e51bdf1d20dc1306d16ace5b0d9cad615d7128a12f9d0cb70169412b4b2d/exec
|
57
58
|
body:
|
58
59
|
encoding: UTF-8
|
59
|
-
string: '{"Cmd":["date"]}'
|
60
|
+
string: ! '{"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:54:45 GMT
|
74
75
|
Content-Length:
|
75
76
|
- '74'
|
76
77
|
body:
|
77
|
-
encoding:
|
78
|
-
string:
|
79
|
-
|
78
|
+
encoding: US-ASCII
|
79
|
+
string: ! '{"Id":"838cbac83a79b08a7cdd50dbc8a5ad3fa2f0d7322d0975e349e577624d60e8b2"}
|
80
|
+
|
81
|
+
'
|
80
82
|
http_version:
|
81
|
-
recorded_at:
|
83
|
+
recorded_at: Thu, 12 Feb 2015 00:54:45 GMT
|
82
84
|
- request:
|
83
85
|
method: post
|
84
|
-
uri:
|
86
|
+
uri: <DOCKER_HOST>/v1.16/exec/838cbac83a79b08a7cdd50dbc8a5ad3fa2f0d7322d0975e349e577624d60e8b2/start
|
85
87
|
body:
|
86
88
|
encoding: UTF-8
|
87
|
-
string: '{"Tty":false,"Detach":false}'
|
89
|
+
string: ! '{"Tty":false,"Detach":false}'
|
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:
|
@@ -98,19 +100,46 @@ http_interactions:
|
|
98
100
|
Content-Type:
|
99
101
|
- application/vnd.docker.raw-stream
|
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:54:45 GMT
|
107
|
+
- request:
|
108
|
+
method: get
|
109
|
+
uri: <DOCKER_HOST>/v1.16/exec/838cbac83a79b08a7cdd50dbc8a5ad3fa2f0d7322d0975e349e577624d60e8b2/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:54:45 GMT
|
127
|
+
Content-Length:
|
128
|
+
- '1866'
|
129
|
+
body:
|
130
|
+
encoding: US-ASCII
|
131
|
+
string: ! '{"ID":"838cbac83a79b08a7cdd50dbc8a5ad3fa2f0d7322d0975e349e577624d60e8b2","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":11268,"ExitCode":0,"Error":"","StartedAt":"2015-02-12T00:54:45.275932037Z","FinishedAt":"0001-01-01T00:00:00Z"},"ID":"5996e51bdf1d20dc1306d16ace5b0d9cad615d7128a12f9d0cb70169412b4b2d","Created":"2015-02-12T00:54:44.901466512Z","Path":"sleep","Args":["300"],"Config":{"Hostname":"5996e51bdf1d","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","300"],"Image":"debian:wheezy","Volumes":null,"WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"MacAddress":"","OnBuild":null},"Image":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","NetworkSettings":{"IPAddress":"172.17.0.86","IPPrefixLen":16,"MacAddress":"02:42:ac:11:00:56","Gateway":"172.17.42.1","Bridge":"docker0","PortMapping":null,"Ports":{}},"ResolvConfPath":"/var/lib/docker/containers/5996e51bdf1d20dc1306d16ace5b0d9cad615d7128a12f9d0cb70169412b4b2d/resolv.conf","HostnamePath":"/var/lib/docker/containers/5996e51bdf1d20dc1306d16ace5b0d9cad615d7128a12f9d0cb70169412b4b2d/hostname","HostsPath":"/var/lib/docker/containers/5996e51bdf1d20dc1306d16ace5b0d9cad615d7128a12f9d0cb70169412b4b2d/hosts","Name":"/elegant_shockley","Driver":"devicemapper","ExecDriver":"native-0.2","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","RestartCount":0,"Volumes":{},"VolumesRW":{}}}'
|
132
|
+
http_version:
|
133
|
+
recorded_at: Thu, 12 Feb 2015 00:54:45 GMT
|
105
134
|
- request:
|
106
135
|
method: post
|
107
|
-
uri:
|
136
|
+
uri: <DOCKER_HOST>/v1.16/containers/5996e51bdf1d20dc1306d16ace5b0d9cad615d7128a12f9d0cb70169412b4b2d/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:54:45 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:54:45 GMT
|
128
157
|
- request:
|
129
158
|
method: delete
|
130
|
-
uri:
|
159
|
+
uri: <DOCKER_HOST>/v1.16/containers/5996e51bdf1d20dc1306d16ace5b0d9cad615d7128a12f9d0cb70169412b4b2d
|
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:54:46 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:54:46 GMT
|
180
|
+
recorded_with: VCR 2.9.2
|
@@ -2,17 +2,15 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/images/create?fromImage=debian%3Awheezy
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
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
|
- text/plain
|
14
|
-
X-Registry-Auth:
|
15
|
-
- eyJ1c2VybmFtZSI6InRkdWZmaWVsZCIsInBhc3N3b3JkIjoiaTlCZj5KZ3ZmYmpZL3NKV01jVTkiLCJlbWFpbCI6ImdpdGh1YkB0b21kdWZmaWVsZC5jb20ifQ==
|
16
14
|
response:
|
17
15
|
status:
|
18
16
|
code: 200
|
@@ -21,25 +19,25 @@ http_interactions:
|
|
21
19
|
Content-Type:
|
22
20
|
- application/json
|
23
21
|
Date:
|
24
|
-
-
|
22
|
+
- Thu, 12 Feb 2015 00:56:01 GMT
|
25
23
|
body:
|
26
|
-
encoding:
|
27
|
-
string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
|
24
|
+
encoding: US-ASCII
|
25
|
+
string: ! "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
|
28
26
|
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
29
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
30
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
27
|
+
exists\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Already
|
28
|
+
exists\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Status:
|
31
29
|
Image is up to date for debian:wheezy\"}\r\n"
|
32
30
|
http_version:
|
33
|
-
recorded_at:
|
31
|
+
recorded_at: Thu, 12 Feb 2015 00:56:01 GMT
|
34
32
|
- request:
|
35
33
|
method: get
|
36
|
-
uri:
|
34
|
+
uri: <DOCKER_HOST>/v1.16/images/json?all=true
|
37
35
|
body:
|
38
36
|
encoding: US-ASCII
|
39
37
|
string: ''
|
40
38
|
headers:
|
41
39
|
User-Agent:
|
42
|
-
- Swipely/Docker-API 1.
|
40
|
+
- Swipely/Docker-API 1.18.0
|
43
41
|
Content-Type:
|
44
42
|
- text/plain
|
45
43
|
response:
|
@@ -50,82 +48,64 @@ http_interactions:
|
|
50
48
|
Content-Type:
|
51
49
|
- application/json
|
52
50
|
Date:
|
53
|
-
-
|
51
|
+
- Thu, 12 Feb 2015 00:56:01 GMT
|
54
52
|
body:
|
55
|
-
encoding:
|
56
|
-
string:
|
57
|
-
|
58
|
-
,{"Created":
|
59
|
-
|
60
|
-
,{"Created":
|
61
|
-
|
62
|
-
,{"Created":
|
63
|
-
|
64
|
-
,{"Created":
|
65
|
-
|
66
|
-
,{"Created":
|
67
|
-
|
68
|
-
,{"Created":
|
69
|
-
|
70
|
-
,{"Created":
|
71
|
-
|
72
|
-
,{"Created":
|
73
|
-
|
74
|
-
,{"Created":
|
75
|
-
|
76
|
-
,{"Created":
|
77
|
-
|
78
|
-
,{"Created":
|
79
|
-
|
80
|
-
,{"Created":
|
81
|
-
|
82
|
-
,{"Created":
|
83
|
-
|
84
|
-
,{"Created":
|
85
|
-
|
86
|
-
,{"Created":
|
87
|
-
|
88
|
-
,{"Created":
|
89
|
-
|
90
|
-
,{"Created":
|
91
|
-
|
92
|
-
,{"Created":
|
93
|
-
|
94
|
-
,{"Created":
|
95
|
-
|
96
|
-
,{"Created":
|
97
|
-
|
98
|
-
,{"Created":
|
99
|
-
|
100
|
-
,{"Created":
|
101
|
-
|
102
|
-
,{"Created":
|
103
|
-
|
104
|
-
,{"Created":
|
105
|
-
|
106
|
-
,{"Created":1414108439,"Id":"5506de2b643be1e6febbf3b8a240760c6843244c41e12aa2f60ccbb7153d17f5","ParentId":"22093c35d77bb609b9257ffb2640845ec05018e3d96cb939f68d0e19127f1723","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":199257566}
|
107
|
-
,{"Created":1414108438,"Id":"22093c35d77bb609b9257ffb2640845ec05018e3d96cb939f68d0e19127f1723","ParentId":"3680052c0f5cf8ecb86ddf4d6ed331c89cdb691554572a80ec04724cf6ee9436","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":6557772,"VirtualSize":199257566}
|
108
|
-
,{"Created":1414108414,"Id":"3680052c0f5cf8ecb86ddf4d6ed331c89cdb691554572a80ec04724cf6ee9436","ParentId":"e791be0477f28fd52f7609aed81733427d4cc0da620962d072e18ebcb32720a4","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1895,"VirtualSize":192699794}
|
109
|
-
,{"Created":1414108413,"Id":"e791be0477f28fd52f7609aed81733427d4cc0da620962d072e18ebcb32720a4","ParentId":"ccb62158e97068cc05b2f0927a8acde14c64d0d363cc448238357fe221a39699","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":192697899}
|
110
|
-
,{"Created":1414108412,"Id":"ccb62158e97068cc05b2f0927a8acde14c64d0d363cc448238357fe221a39699","ParentId":"d497ad3926c8997e1e0de74cdd5285489bb2c4acd6db15292e04bbab07047cd0","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":194791,"VirtualSize":192697899}
|
111
|
-
,{"Created":1413872056,"Id":"d497ad3926c8997e1e0de74cdd5285489bb2c4acd6db15292e04bbab07047cd0","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":192503108,"VirtualSize":192503108}
|
112
|
-
,{"Created":1412204406,"Id":"f6d75c7fe58a905c14381100921562877d06a759acc70fbda6d3863796e0f003","ParentId":"b083996910428bc46e25ad7c7c0d5dd84c8ced88fe0cceeafe01787d9abd8848","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":6614587,"VirtualSize":425509943}
|
113
|
-
,{"Created":1412204399,"Id":"b083996910428bc46e25ad7c7c0d5dd84c8ced88fe0cceeafe01787d9abd8848","ParentId":"c07f578f0911d8a712ae9e6909f8778fae749d0dabf65542aba8428c553388ac","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":10478,"VirtualSize":418895356}
|
114
|
-
,{"Created":1412204376,"Id":"c07f578f0911d8a712ae9e6909f8778fae749d0dabf65542aba8428c553388ac","ParentId":"195eb90b534950d334188c3627f860fbdf898e224d8a0a11ec54ff453175e081","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":234168708,"VirtualSize":418884878}
|
115
|
-
,{"Created":1412196370,"Id":"0dfaa2625e19b0925a9e0fc7ea2c2a7f4fd0d31ec1e9838d08bf1310965ffc75","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":5454693,"VirtualSize":5454693}
|
116
|
-
,{"Created":1412196370,"Id":"d415c60e5ea32875e4ddc7f7578bfaac3d59fb16e1334e705398b10ee91af801","ParentId":"0dfaa2625e19b0925a9e0fc7ea2c2a7f4fd0d31ec1e9838d08bf1310965ffc75","RepoTags":["busybox:ubuntu-12.04"],"Size":0,"VirtualSize":5454693}
|
117
|
-
,{"Created":1412196368,"Id":"e433a6c5b276a31aa38bf6eaba9cd1cfd69ea33f706ed72b3f20bafde5cd8644","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2433303,"VirtualSize":2433303}
|
118
|
-
,{"Created":1412196368,"Id":"e72ac664f4f0c6a061ac4ef332557a70d69b0c624b6add35f1c181ff7fff2287","ParentId":"e433a6c5b276a31aa38bf6eaba9cd1cfd69ea33f706ed72b3f20bafde5cd8644","RepoTags":["busybox:buildroot-2014.02","busybox:latest"],"Size":0,"VirtualSize":2433303}
|
119
|
-
,{"Created":1412196367,"Id":"4b2909447dbef01f71ca476725c2dbb3af12de41aa2d7491d62c66678ede2294","ParentId":"ad8766e8635d2ae9ddd77d32b8f0fa091fb88fffed77b3a8a240bdcdc6f5aa05","RepoTags":["busybox:buildroot-2013.08.1"],"Size":0,"VirtualSize":2489301}
|
53
|
+
encoding: US-ASCII
|
54
|
+
string: ! '[{"Created":1423702467,"Id":"c5bc00616537c7ba0f051c7212c2a8777bb50e7e195cc8768090f9075e402f31","ParentId":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":85120773}
|
55
|
+
|
56
|
+
,{"Created":1423521618,"Id":"a47c4817ef07f98471d0182715891eb87d1b015a6c9a977b1ea766a666e96f49","ParentId":"e41eb64a720e4098e29814b767a769fd2bd19222e0885d8f252c3c64318f51d8","RepoTags":["tianon/true:latest"],"Size":0,"VirtualSize":125}
|
57
|
+
|
58
|
+
,{"Created":1423521618,"Id":"e41eb64a720e4098e29814b767a769fd2bd19222e0885d8f252c3c64318f51d8","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":125,"VirtualSize":125}
|
59
|
+
|
60
|
+
,{"Created":1422480050,"Id":"c55308716b3671d8a238a6c1245a60f66d76a3e1404b7b8b6e5fe0e65bae4943","ParentId":"214c09aed08bbf283bfb334b5a0526fa7e66ccaf667a5feee66d75af6a69bc6f","RepoTags":["registry:latest"],"Size":0,"VirtualSize":418558798}
|
61
|
+
|
62
|
+
,{"Created":1422480043,"Id":"214c09aed08bbf283bfb334b5a0526fa7e66ccaf667a5feee66d75af6a69bc6f","ParentId":"f054bc98768fef8ed7f20eb2a8184d0979fb63701ca85032f35d1f56bd1434dd","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":418558798}
|
63
|
+
|
64
|
+
,{"Created":1422480037,"Id":"f054bc98768fef8ed7f20eb2a8184d0979fb63701ca85032f35d1f56bd1434dd","ParentId":"63ad05f3af00bc944f4c42291c1120e9e568e2565a55f155e345ad0169c836cf","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":418558798}
|
65
|
+
|
66
|
+
,{"Created":1422480031,"Id":"63ad05f3af00bc944f4c42291c1120e9e568e2565a55f155e345ad0169c836cf","ParentId":"ecc59b06f5b7442bac27e1c269148f3a94fd4c07840a63e6171b1126c501e50c","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":418558798}
|
67
|
+
|
68
|
+
,{"Created":1422480025,"Id":"ecc59b06f5b7442bac27e1c269148f3a94fd4c07840a63e6171b1126c501e50c","ParentId":"8ec695ba9240c3b7096d9d661d02e4d5d879e69f82f4dd73342b6bfedb0999f8","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":50796,"VirtualSize":418558798}
|
69
|
+
|
70
|
+
,{"Created":1422480017,"Id":"8ec695ba9240c3b7096d9d661d02e4d5d879e69f82f4dd73342b6bfedb0999f8","ParentId":"eaebc036889a728ef665ae9be29dfd4a09183ff0aa2d56ace208038cd690956c","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":25397473,"VirtualSize":418508002}
|
71
|
+
|
72
|
+
,{"Created":1422479889,"Id":"eaebc036889a728ef665ae9be29dfd4a09183ff0aa2d56ace208038cd690956c","ParentId":"0e7a483810f64e4d2f4fc679d8c10d3914a975d18a2a152d26bd6655feb0af8f","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":11550557,"VirtualSize":393110529}
|
73
|
+
|
74
|
+
,{"Created":1422479878,"Id":"0e7a483810f64e4d2f4fc679d8c10d3914a975d18a2a152d26bd6655feb0af8f","ParentId":"ed34dec80489996f5b45476abc7260356dcdbf30900016041d833d6d3555d8cc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":381559972}
|
75
|
+
|
76
|
+
,{"Created":1422479871,"Id":"ed34dec80489996f5b45476abc7260356dcdbf30900016041d833d6d3555d8cc","ParentId":"30e25c7b70dfe8f4f9268f613a793dfc454545c824329741c0d393c9969c9d82","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2428766,"VirtualSize":381559899}
|
77
|
+
|
78
|
+
,{"Created":1422479860,"Id":"30e25c7b70dfe8f4f9268f613a793dfc454545c824329741c0d393c9969c9d82","ParentId":"5ba9dab47459d81c0037ca3836a368a4f8ce5050505ce89720e1fb8839ea048a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":186447657,"VirtualSize":379131133}
|
79
|
+
|
80
|
+
,{"Created":1422470238,"Id":"5ba9dab47459d81c0037ca3836a368a4f8ce5050505ce89720e1fb8839ea048a","ParentId":"51a9c7c1f8bb2fa19bcd09789a34e63f35abb80044bc10196e304f6634cc582c","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":192683476}
|
81
|
+
|
82
|
+
,{"Created":1422470229,"Id":"51a9c7c1f8bb2fa19bcd09789a34e63f35abb80044bc10196e304f6634cc582c","ParentId":"5f92234dcf1e0ed2a2a4d9d4cbf13ae7ba911c52b8edcd1bcb0c755c85032ac3","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1895,"VirtualSize":192683476}
|
83
|
+
|
84
|
+
,{"Created":1422470220,"Id":"5f92234dcf1e0ed2a2a4d9d4cbf13ae7ba911c52b8edcd1bcb0c755c85032ac3","ParentId":"27d47432a69bca5f2700e4dff7de0388ed65f9d3fb1ec645e2bc24c223dc1cc3","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":194533,"VirtualSize":192681581}
|
85
|
+
|
86
|
+
,{"Created":1422470199,"Id":"27d47432a69bca5f2700e4dff7de0388ed65f9d3fb1ec645e2bc24c223dc1cc3","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":192487048,"VirtualSize":192487048}
|
87
|
+
|
88
|
+
,{"Created":1422379591,"Id":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","ParentId":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","RepoTags":["debian:wheezy"],"Size":0,"VirtualSize":85120773}
|
89
|
+
|
90
|
+
,{"Created":1422379584,"Id":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":85120773,"VirtualSize":85120773}
|
91
|
+
|
92
|
+
,{"Created":1420064641,"Id":"492dad4279bae5bb73648efe9bf467b2cfa8bab1d593595226e3e7a95d9f6c35","ParentId":"2982ec56c8d910121e7594ca7890b062f6d37fadf7575f6a6f3adbabbafac9f5","RepoTags":["busybox:ubuntu-12.04"],"Size":0,"VirtualSize":5454693}
|
93
|
+
|
94
|
+
,{"Created":1420064640,"Id":"2982ec56c8d910121e7594ca7890b062f6d37fadf7575f6a6f3adbabbafac9f5","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":5454693,"VirtualSize":5454693}
|
95
|
+
|
96
|
+
,{"Created":1420064636,"Id":"4986bf8c15363d1c5d15512d5266f8777bfba4974ac56e3270e7760f6f0a8125","ParentId":"ea13149945cb6b1e746bf28032f02e9b5a793523481a0a18645fc77ad53c4ea2","RepoTags":["busybox:buildroot-2014.02","busybox:latest"],"Size":0,"VirtualSize":2433303}
|
97
|
+
|
98
|
+
,{"Created":1420064636,"Id":"ea13149945cb6b1e746bf28032f02e9b5a793523481a0a18645fc77ad53c4ea2","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2433303,"VirtualSize":2433303}
|
99
|
+
|
100
|
+
,{"Created":1420064634,"Id":"2aed48a4e41d3931167146e9b7492aa5639e7f6478be9eac584726ecec6824ed","ParentId":"618b1fc306b06d11e192812ede4c685dcbf886d2a0189e9a552c550fd7663df0","RepoTags":["busybox:buildroot-2013.08.1"],"Size":0,"VirtualSize":2489301}
|
101
|
+
|
102
|
+
,{"Created":1420064633,"Id":"618b1fc306b06d11e192812ede4c685dcbf886d2a0189e9a552c550fd7663df0","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2489301,"VirtualSize":2489301}
|
103
|
+
|
120
104
|
,{"Created":1412196367,"Id":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
|
121
|
-
|
122
|
-
,{"Created":1403128415,"Id":"195eb90b534950d334188c3627f860fbdf898e224d8a0a11ec54ff453175e081","ParentId":"209ea56fda6dc2fb013e4d1e40cb678b2af91d1b54a71529f7df0bd867adc961","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":4411741,"VirtualSize":184716170}
|
123
|
-
,{"Created":1403128408,"Id":"209ea56fda6dc2fb013e4d1e40cb678b2af91d1b54a71529f7df0bd867adc961","ParentId":"0f4aac48388f5d65a725ccf8e7caada42f136026c566528a5ee9b02467dac90a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":74007417,"VirtualSize":180304429}
|
124
|
-
,{"Created":1403128396,"Id":"fae16849ebe23b48f2bedcc08aaabd45408c62b531ffd8d3088592043d5e7364","ParentId":"f127542f0b6191e99bb015b672f5cf48fa79d974784ac8090b11aeac184eaaff","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":189999,"VirtualSize":106295125}
|
125
|
-
,{"Created":1403128396,"Id":"0f4aac48388f5d65a725ccf8e7caada42f136026c566528a5ee9b02467dac90a","ParentId":"fae16849ebe23b48f2bedcc08aaabd45408c62b531ffd8d3088592043d5e7364","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1887,"VirtualSize":106297012}
|
126
|
-
,{"Created":1403128393,"Id":"f127542f0b6191e99bb015b672f5cf48fa79d974784ac8090b11aeac184eaaff","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":106105126,"VirtualSize":106105126}
|
105
|
+
|
127
106
|
,{"Created":1371157430,"Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","ParentId":"","RepoTags":["scratch:latest"],"Size":0,"VirtualSize":0}
|
128
|
-
|
107
|
+
|
108
|
+
]'
|
129
109
|
http_version:
|
130
|
-
recorded_at:
|
131
|
-
recorded_with: VCR 2.9.
|
110
|
+
recorded_at: Thu, 12 Feb 2015 00:56:01 GMT
|
111
|
+
recorded_with: VCR 2.9.2
|