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: get
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/images/search?term=sshd
|
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
14
|
response:
|
@@ -19,222 +19,61 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Thu, 12 Feb 2015 00:56:02 GMT
|
23
23
|
body:
|
24
|
-
encoding:
|
25
|
-
string:
|
26
|
-
|
27
|
-
,{"description":"Centos6 based image with sshd and openjdk, used as a base for your custom mw images.","is_official":false,"is_trusted":true,"name":"pantinor/fuse","star_count":2}
|
28
|
-
,{"description":"Ubuntu 13.10 with openssh based on the stackbrew/ubuntu:13.10 image.","is_official":false,"is_trusted":false,"name":"stephens/sshd","star_count":2}
|
29
|
-
,{"description":"Docker container with supervisord, httpd, sshd, crond, rsyslogd on CentOS","is_official":false,"is_trusted":true,"name":"kawanamiyuu/docker-centos-supervisord","star_count":2}
|
30
|
-
,{"description":"This is an image which runs a SSH deamon under supervision of runit.","is_official":false,"is_trusted":false,"name":"skxskx/sshd","star_count":1}
|
31
|
-
,{"description":"Apache image managed with circus. Config parameters with envtpl. apache, proftpd and sshd managed by circus.","is_official":false,"is_trusted":true,"name":"apsl/lamp","star_count":1}
|
32
|
-
,{"description":"A vagrant ready debian with installed nodejs, mongodb ","is_official":false,"is_trusted":false,"name":"farhadix/debian-nodejs-mongodb-sshd","star_count":1}
|
33
|
-
,{"description":"Docker image to spawn a compute node running slurmd (+munge), diamond (metric-gathering), sshd, supervisord, syslog-ng","is_official":false,"is_trusted":true,"name":"qnib/compute","star_count":1}
|
34
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"iliyan/docker-nginx-sshd","star_count":1}
|
35
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"craigske/sshd-server","star_count":1}
|
24
|
+
encoding: US-ASCII
|
25
|
+
string: ! '[{"description":"","is_official":false,"is_trusted":true,"name":"moul/sshd","star_count":1}
|
26
|
+
|
36
27
|
,{"description":"Fedora docker file for ssh service which managed by supervisor","is_official":false,"is_trusted":true,"name":"kumarpraveen/fedora-sshd","star_count":1}
|
37
|
-
|
28
|
+
|
38
29
|
,{"description":"Dockerized SSH service, built on top of official Ubuntu images.","is_official":false,"is_trusted":true,"name":"rastasheep/ubuntu-sshd","star_count":1}
|
39
|
-
|
40
|
-
,{"description":"
|
41
|
-
|
42
|
-
,{"description":"
|
43
|
-
|
44
|
-
|
45
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"
|
46
|
-
|
47
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"mogproject/sshd-supervisor","star_count":0}
|
48
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"jschueths/sshd","star_count":0}
|
49
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"mckoss/sshd","star_count":0}
|
50
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"takashi209/sshd","star_count":0}
|
51
|
-
,{"description":"Base image with sshd service","is_official":false,"is_trusted":false,"name":"llun/sshd","star_count":0}
|
52
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"jdauphant/jenkins-slave-sshd","star_count":0}
|
53
|
-
,{"description":"DOCKER SSH SERVICE","is_official":false,"is_trusted":true,"name":"jiaozhu/docker-sshd","star_count":0}
|
54
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"eternnoir/ubuntu-14.04-sshd","star_count":0}
|
55
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"kiyohara/docker-sshd","star_count":0}
|
56
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"viliusl/ubuntu-sshd-nginx","star_count":0}
|
57
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"kiyohara/docker-python-sshd","star_count":0}
|
58
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"andrefernandes/docker-sshd","star_count":0}
|
59
|
-
,{"description":"CentOS with sshd","is_official":false,"is_trusted":false,"name":"mkrishnamurthy/sshd","star_count":0}
|
60
|
-
,{"description":"Centos 6.4 (64bit) with sshd","is_official":false,"is_trusted":false,"name":"jonhadfield/sshd","star_count":0}
|
61
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"gedex/ubuntu-sshd","star_count":0}
|
62
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"jcheng/docker-sshd","star_count":0}
|
63
|
-
,{"description":"Runs a SSHd server in daemon mode","is_official":false,"is_trusted":false,"name":"zefhemel/sshd","star_count":0}
|
64
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"webdizz/centos-java8-sshd","star_count":0}
|
65
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"kiyohara/docker-ruby-sshd","star_count":0}
|
66
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"brandonmartin/docker-ubuntu-runit-sshd","star_count":0}
|
67
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"dongweiming/sshd","star_count":0}
|
68
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"toyplot/sshd","star_count":0}
|
69
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"fclaeys/sshd","star_count":0}
|
70
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"webdizz/centos-java8-sshd-chef","star_count":0}
|
71
|
-
,{"description":"Base + sshd + proxy + static ip addr.","is_official":false,"is_trusted":false,"name":"simoman/sshd","star_count":0}
|
72
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"oss17888/sshd","star_count":0}
|
73
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"tekknolagi/sshd","star_count":0}
|
74
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"gridiron/sshd","star_count":0}
|
75
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"digoal/sshd","star_count":0}
|
76
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"i686/sshd","star_count":0}
|
77
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"sthulb/sshd","star_count":0}
|
78
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"xiaoyuan234/sshd","star_count":0}
|
79
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"emiller/sshd","star_count":0}
|
80
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"kpelykh/sshd","star_count":0}
|
81
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"blissdev/sshd","star_count":0}
|
82
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"hyone/sshd","star_count":0}
|
83
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"jamtur01/sshd","star_count":0}
|
84
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"sandialabs/sshd","star_count":0}
|
85
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"colorscode/sshd","star_count":0}
|
86
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"woosung225/sshd","star_count":0}
|
87
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"pmerrell/sshd","star_count":0}
|
88
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"dneff/sshd","star_count":0}
|
89
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"vgauthier/sshd","star_count":0}
|
90
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"uzero/sshd","star_count":0}
|
91
|
-
,{"description":"sshd daemon supervised by DJB daemontools - run cmd :\r\ndocker run -d -p 22 toorop/daemontools-sshd /usr/bin/svscanboot - \r\n\r\nDefault root password : demo - \r\n\r\nSSHD logs location : /var/log/sshd\r\n\r\n","is_official":false,"is_trusted":false,"name":"toorop/daemontools-sshd","star_count":0}
|
92
|
-
,{"description":"Education purpose","is_official":false,"is_trusted":false,"name":"ovekli/sshd","star_count":0}
|
93
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"jurajpelikan/sshd","star_count":0}
|
94
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"nicolasg/sshd","star_count":0}
|
95
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"yokoih/sshd","star_count":0}
|
96
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"shparker0624/sshd","star_count":0}
|
97
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"jameschao/sshd","star_count":0}
|
98
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"dragon9783/sshd","star_count":0}
|
99
|
-
,{"description":"sshd daemon \u0026 Nginx supervised by DJB daemontools - run cmd : docker run -d -p 22 -p 80 toorop/daemontools-sshd-nginx /usr/bin/svscanboot - Default root password : demo - SSHD logs location : /var/log/sshd","is_official":false,"is_trusted":false,"name":"toorop/daemontools-sshd-nginx","star_count":0}
|
100
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"slowbluecamera/sshd","star_count":0}
|
101
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"sayaleehande/sshd","star_count":0}
|
102
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"razasayed/sshd","star_count":0}
|
103
|
-
,{"description":"centos image with openssh installed and vagrant user with keys ","is_official":false,"is_trusted":false,"name":"phiroict/centos-sshd","star_count":0}
|
104
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"fahmpress/sshd","star_count":0}
|
105
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"yiyuandao/sshd","star_count":0}
|
106
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"hippoom/sshd","star_count":0}
|
107
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"fruitsandwich/sshd","star_count":0}
|
108
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"lijin/sshd","star_count":0}
|
109
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"arminc/sshd","star_count":0}
|
110
|
-
,{"description":"OpenSSH daemon,built on top of official CentOS6 images. Fix the ssh login problem with root's password is 'secret' ","is_official":false,"is_trusted":false,"name":"perlbox/sshd","star_count":0}
|
111
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"skardan/sshd","star_count":0}
|
112
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"souche/sshd","star_count":0}
|
113
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"thanhn2001/sshd","star_count":0}
|
114
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"tgkurt/sshd","star_count":0}
|
115
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"tjordanchat/sshd","star_count":0}
|
116
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"mammal/sshd","star_count":0}
|
117
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"acockrell37/sshd","star_count":0}
|
118
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"yuyat/sshd","star_count":0}
|
119
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"gldamao/sshd","star_count":0}
|
120
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"yestxh/sshd","star_count":0}
|
121
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"kallin/sshd","star_count":0}
|
122
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"yoshiso/sshd","star_count":0}
|
123
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"rblomberg/sshd","star_count":0}
|
124
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"marcosvm/sshd","star_count":0}
|
125
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"apetersen/sshd","star_count":0}
|
126
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"hyao/sshd","star_count":0}
|
127
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"daguz/sshd","star_count":0}
|
128
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"malbin/sshd","star_count":0}
|
129
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"ks2mirror/sshd","star_count":0}
|
130
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"shuvoovuhs/sshd","star_count":0}
|
131
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"superbenk/sshd","star_count":0}
|
132
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"michedlp/sshd","star_count":0}
|
133
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"mesterkent/sshd","star_count":0}
|
134
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"bonesvoll/sshd","star_count":0}
|
135
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"amdra/sshd","star_count":0}
|
136
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"csnate/sshd","star_count":0}
|
137
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"milkbikis/sshd","star_count":0}
|
138
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"pdana/sshd","star_count":0}
|
139
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"abrahamoshel/sshd","star_count":0}
|
140
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"marcoshack/sshd","star_count":0}
|
141
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"junhochoi/sshd","star_count":0}
|
142
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"perrygeorget/sshd","star_count":0}
|
143
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"edyu/sshd","star_count":0}
|
144
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"gburton/sshd","star_count":0}
|
145
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"bentis/sshd","star_count":0}
|
146
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"8bitbrad/sshd","star_count":0}
|
147
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"wilde/sshd","star_count":0}
|
148
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"njal26/sshd","star_count":0}
|
149
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"yulong/sshd","star_count":0}
|
150
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"jiahut/sshd","star_count":0}
|
151
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"cursolv00/sshd","star_count":0}
|
152
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"vmtrooper/sshd","star_count":0}
|
153
|
-
,{"description":"training image of an ssh daemon","is_official":false,"is_trusted":false,"name":"thomd/sshd","star_count":0}
|
154
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"j4pe/sshd","star_count":0}
|
155
|
-
,{"description":"Image source was Ubuntu 12.10. Installed openssh-server and reset root password. ","is_official":false,"is_trusted":false,"name":"trebortech/sshd","star_count":0}
|
156
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"steshaw/sshd","star_count":0}
|
157
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"ckrintz/sshd","star_count":0}
|
158
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"haorui215/sshd","star_count":0}
|
159
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"kevinschmidt/sshd","star_count":0}
|
160
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"litiblue/sshd","star_count":0}
|
161
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"jufo/sshd","star_count":0}
|
162
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"kobrinartem/sshd","star_count":0}
|
163
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"quifor/sshd","star_count":0}
|
164
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"xiaokaceng/sshd","star_count":0}
|
165
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"morimorihoge/precise-sshd","star_count":0}
|
166
|
-
,{"description":"Ubuntu 12.04\nNodeJS 0.10.18\nsshd","is_official":false,"is_trusted":false,"name":"realyze/ubuntu-node-sshd","star_count":0}
|
167
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"armbuild/moul-sshd","star_count":0}
|
168
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"moul/armhf-sshd","star_count":0}
|
169
|
-
,{"description":"Ubuntu 14.06 \u0026 openssh-server","is_official":false,"is_trusted":false,"name":"akyshr/ubuntu-sshd","star_count":0}
|
170
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"ilimit/sshd-test","star_count":0}
|
171
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"johnfuller/sshd","star_count":0}
|
172
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"cespare/sshd","star_count":0}
|
173
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"wangfeib12/centos6.5-sshd","star_count":0}
|
174
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"eembsen/centos-sshd","star_count":0}
|
175
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"templefoxx/ubuntu-sshd","star_count":0}
|
176
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"varmenise/docker-sshd","star_count":0}
|
177
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"amochtar/mesos-sshd","star_count":0}
|
178
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"rayang2004/sshd","star_count":0}
|
179
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"progrium/sshd-example","star_count":0}
|
180
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"aneeth/ubuntu-sshd","star_count":0}
|
181
|
-
,{"description":"shell honeypot\n\nroot/mypass","is_official":false,"is_trusted":false,"name":"robwc/ubuntu-sshd","star_count":0}
|
182
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"speg03/sshd-centos_localbuild","star_count":0}
|
183
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/sshd-ping","star_count":0}
|
184
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"zilin/docker-sshd","star_count":0}
|
185
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"msinger/openfoam-sshd","star_count":0}
|
186
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"hirotaka/ubuntu-ja-sshd","star_count":0}
|
187
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/sshd-ping2","star_count":0}
|
188
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"mengzechao/ubuntu-sshd","star_count":0}
|
189
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"arif/ubuntu-sshd","star_count":0}
|
190
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"bkkoos/nginx-sshd","star_count":0}
|
191
|
-
,{"description":"Provides access to pharo-core command line interface","is_official":false,"is_trusted":false,"name":"pshouse/sshd-pharo-core","star_count":0}
|
192
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"lorieri/daemontools-sshd-nginx","star_count":0}
|
193
|
-
,{"description":"Debian sid image with sysvinit + sshd, rsyslog, cron daemons.","is_official":false,"is_trusted":true,"name":"minimum2scp/baseimage","star_count":0}
|
194
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"blurblah/sshd","star_count":0}
|
195
|
-
,{"description":"Debian sid image with systemd + sshd, rsyslog, cron daemons","is_official":false,"is_trusted":true,"name":"minimum2scp/systemd","star_count":0}
|
196
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/mongodb-sshd","star_count":0}
|
197
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"sirlantis/supervisord-sshd-nodejs","star_count":0}
|
198
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"johnshen/oink-centos65-sshd","star_count":0}
|
199
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"zfllj/fedora-20-sshd","star_count":0}
|
200
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"5agms43sgo2z/jessie-with-sshd","star_count":0}
|
201
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"mikewr/u1210-sshd-postgres","star_count":0}
|
202
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"bkkoos/phpfpm-nginx-sshd","star_count":0}
|
203
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"toorop/daemontools-sshd-nginx-php-fpm","star_count":0}
|
204
|
-
,{"description":"hardened ssh (sshd) jump host and dev environment","is_official":false,"is_trusted":true,"name":"jumanjiman/wormhole","star_count":0}
|
205
|
-
,{"description":"A CentOS base image with SSHd, Puppet and minor command-line tools.","is_official":false,"is_trusted":true,"name":"internavenue/centos-base","star_count":0}
|
206
|
-
,{"description":"Ubuntu base image with supervisor (cron, logrotate, sshd, syslog-ng)","is_official":false,"is_trusted":true,"name":"eg5846/supervisor-docker","star_count":0}
|
207
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"harada4atsushi/sshd_centos6","star_count":0}
|
208
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"joshuahargrove/sshd_docker","star_count":0}
|
209
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"ppko/sshd_ubuntu","star_count":0}
|
210
|
-
,{"description":"Ubuntu misp image with supervisor (cron, logrotate, sshd, syslog-ng, postfix, redis-server, apache2, resque)","is_official":false,"is_trusted":true,"name":"eg5846/misp-docker","star_count":0}
|
211
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"artiq/sshdemo","star_count":0}
|
212
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"wushiqinlou/sshdserver","star_count":0}
|
213
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"marcesher/sshdtest","star_count":0}
|
214
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"pantinor/centos_sshd","star_count":0}
|
215
|
-
,{"description":"With this image you can run OTRS with ITSM extension. It includes MySQL server and SSHd","is_official":false,"is_trusted":true,"name":"tommyblue/otrs","star_count":0}
|
216
|
-
,{"description":"debian based image with supervisord and sshd","is_official":false,"is_trusted":true,"name":"ishakuta/debian-supervisor","star_count":0}
|
217
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"apl330/sshdx","star_count":0}
|
218
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"emiller/sshdnpw","star_count":0}
|
219
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"olivera/sshd_v0","star_count":0}
|
220
|
-
,{"description":"Add vim and sshd from ubuntu14.04:latest","is_official":false,"is_trusted":false,"name":"krystism/ubuntu_sshd","star_count":0}
|
221
|
-
,{"description":"SSHD daemon supervised by DJB daemontools\nRUN: sudo docker run -d -p 22 -t mfuller/damontools_sshd /usr/bin/svscan /service\nLogin: USER(with sudo)=admin PASSWORD=password\nSSHD logs : /var/log/sshd\n","is_official":false,"is_trusted":false,"name":"mfuller/daemontools_sshd","star_count":0}
|
222
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"trobz/sshd","star_count":0}
|
223
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"docku/sshd","star_count":0}
|
224
|
-
,{"description":"Ubuntu 12.04 with SSHd and ubuntu user (check logs for initial password).","is_official":false,"is_trusted":true,"name":"jimt/sshd","star_count":0}
|
225
|
-
,{"description":"Run haproxy with sshd","is_official":false,"is_trusted":true,"name":"llamashoes/haproxy-sshd","star_count":0}
|
30
|
+
|
31
|
+
,{"description":"sshd on Fedora 20","is_official":false,"is_trusted":true,"name":"qlkao/sshd","star_count":0}
|
32
|
+
|
33
|
+
,{"description":"Ubuntu 12.04 with SSHd and ubuntu user (check logs for initial
|
34
|
+
password).","is_official":false,"is_trusted":true,"name":"jimt/sshd","star_count":0}
|
35
|
+
|
36
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"ariarijp/sshd","star_count":0}
|
37
|
+
|
226
38
|
,{"description":"","is_official":false,"is_trusted":true,"name":"mogproject/sshd","star_count":0}
|
227
|
-
|
39
|
+
|
228
40
|
,{"description":"","is_official":false,"is_trusted":true,"name":"larrycai/ubuntu-sshd","star_count":0}
|
229
|
-
|
230
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"
|
41
|
+
|
42
|
+
,{"description":"Run haproxy with sshd","is_official":false,"is_trusted":true,"name":"llamashoes/haproxy-sshd","star_count":0}
|
43
|
+
|
44
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"titanous/sshd","star_count":0}
|
45
|
+
|
231
46
|
,{"description":"","is_official":false,"is_trusted":true,"name":"speg03/sshd-centos","star_count":0}
|
47
|
+
|
48
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"nishik20/sshd","star_count":0}
|
49
|
+
|
50
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"jdauphant/jenkins-slave-sshd","star_count":0}
|
51
|
+
|
52
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"instedd/cdx-sync-sshd","star_count":0}
|
53
|
+
|
232
54
|
,{"description":"","is_official":false,"is_trusted":true,"name":"danhixon/sshd","star_count":0}
|
55
|
+
|
233
56
|
,{"description":"A ssh server with password: admin","is_official":false,"is_trusted":true,"name":"wnameless/sshd","star_count":0}
|
57
|
+
|
234
58
|
,{"description":"","is_official":false,"is_trusted":true,"name":"typester/sshd","star_count":0}
|
59
|
+
|
235
60
|
,{"description":"","is_official":false,"is_trusted":true,"name":"eyenx/ubuntu-sshd","star_count":0}
|
61
|
+
|
62
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"eyenx/archlinux-sshd","star_count":0}
|
63
|
+
|
236
64
|
,{"description":"","is_official":false,"is_trusted":true,"name":"monokrome/sshd","star_count":0}
|
237
|
-
|
65
|
+
|
66
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"mogproject/sshd-supervisor","star_count":0}
|
67
|
+
|
68
|
+
,{"description":"Spoke container for etcd.","is_official":false,"is_trusted":true,"name":"radial/sshd","star_count":0}
|
69
|
+
|
70
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"eyenx/debian-sshd","star_count":0}
|
71
|
+
|
72
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"docku/sshd","star_count":0}
|
73
|
+
|
74
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"trobz/sshd","star_count":0}
|
75
|
+
|
76
|
+
]'
|
238
77
|
http_version:
|
239
|
-
recorded_at:
|
240
|
-
recorded_with: VCR 2.9.
|
78
|
+
recorded_at: Thu, 12 Feb 2015 00:56:02 GMT
|
79
|
+
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/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
14
|
response:
|
@@ -19,25 +19,25 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Thu, 12 Feb 2015 00:55:48 GMT
|
23
23
|
body:
|
24
|
-
encoding:
|
25
|
-
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
|
26
26
|
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
27
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
28
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
27
|
+
exists\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Already
|
28
|
+
exists\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Status:
|
29
29
|
Image is up to date for debian:wheezy\"}\r\n"
|
30
30
|
http_version:
|
31
|
-
recorded_at:
|
31
|
+
recorded_at: Thu, 12 Feb 2015 00:55:48 GMT
|
32
32
|
- request:
|
33
33
|
method: post
|
34
|
-
uri:
|
34
|
+
uri: <DOCKER_HOST>/v1.16/images/c90d655b99b2/tag?force=true&repo=teh
|
35
35
|
body:
|
36
36
|
encoding: US-ASCII
|
37
37
|
string: ''
|
38
38
|
headers:
|
39
39
|
User-Agent:
|
40
|
-
- Swipely/Docker-API 1.
|
40
|
+
- Swipely/Docker-API 1.18.0
|
41
41
|
Content-Type:
|
42
42
|
- text/plain
|
43
43
|
response:
|
@@ -46,25 +46,25 @@ http_interactions:
|
|
46
46
|
message:
|
47
47
|
headers:
|
48
48
|
Date:
|
49
|
-
-
|
49
|
+
- Thu, 12 Feb 2015 00:55:48 GMT
|
50
50
|
Content-Length:
|
51
51
|
- '0'
|
52
52
|
Content-Type:
|
53
53
|
- text/plain; charset=utf-8
|
54
54
|
body:
|
55
|
-
encoding:
|
55
|
+
encoding: US-ASCII
|
56
56
|
string: ''
|
57
57
|
http_version:
|
58
|
-
recorded_at:
|
58
|
+
recorded_at: Thu, 12 Feb 2015 00:55:48 GMT
|
59
59
|
- request:
|
60
60
|
method: delete
|
61
|
-
uri:
|
61
|
+
uri: <DOCKER_HOST>/v1.16/images/teh:latest?noprune=true
|
62
62
|
body:
|
63
63
|
encoding: US-ASCII
|
64
64
|
string: ''
|
65
65
|
headers:
|
66
66
|
User-Agent:
|
67
|
-
- Swipely/Docker-API 1.
|
67
|
+
- Swipely/Docker-API 1.18.0
|
68
68
|
Content-Type:
|
69
69
|
- text/plain
|
70
70
|
response:
|
@@ -75,14 +75,14 @@ http_interactions:
|
|
75
75
|
Content-Type:
|
76
76
|
- application/json
|
77
77
|
Date:
|
78
|
-
-
|
78
|
+
- Thu, 12 Feb 2015 00:55:48 GMT
|
79
79
|
Content-Length:
|
80
80
|
- '28'
|
81
81
|
body:
|
82
|
-
encoding:
|
83
|
-
string:
|
84
|
-
|
85
|
-
]
|
82
|
+
encoding: US-ASCII
|
83
|
+
string: ! '[{"Untagged":"teh:latest"}
|
84
|
+
|
85
|
+
]'
|
86
86
|
http_version:
|
87
|
-
recorded_at:
|
88
|
-
recorded_with: VCR 2.9.
|
87
|
+
recorded_at: Thu, 12 Feb 2015 00:55:48 GMT
|
88
|
+
recorded_with: VCR 2.9.2
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: docker-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.19.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Swipely, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-02-
|
11
|
+
date: 2015-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: excon
|
@@ -240,7 +240,7 @@ files:
|
|
240
240
|
- spec/vcr/Docker_Container/_delete/deletes_the_container.yml
|
241
241
|
- spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml
|
242
242
|
- spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml
|
243
|
-
- spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/
|
243
|
+
- spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages_and_exit_code.yml
|
244
244
|
- spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml
|
245
245
|
- spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml
|
246
246
|
- spec/vcr/Docker_Container/_export/yields_each_chunk.yml
|
@@ -263,10 +263,10 @@ files:
|
|
263
263
|
- spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml
|
264
264
|
- spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml
|
265
265
|
- spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml
|
266
|
-
- spec/vcr/Docker_Exec/
|
266
|
+
- spec/vcr/Docker_Exec/_json/returns_the_description_as_a_Hash.yml
|
267
267
|
- spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml
|
268
268
|
- spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml
|
269
|
-
- spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/
|
269
|
+
- spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout/stderr_messages_with_exitcode.yml
|
270
270
|
- spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml
|
271
271
|
- spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml
|
272
272
|
- spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml
|
@@ -364,7 +364,7 @@ test_files:
|
|
364
364
|
- spec/vcr/Docker_Container/_delete/deletes_the_container.yml
|
365
365
|
- spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml
|
366
366
|
- spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml
|
367
|
-
- spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/
|
367
|
+
- spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages_and_exit_code.yml
|
368
368
|
- spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml
|
369
369
|
- spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml
|
370
370
|
- spec/vcr/Docker_Container/_export/yields_each_chunk.yml
|
@@ -387,10 +387,10 @@ test_files:
|
|
387
387
|
- spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml
|
388
388
|
- spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml
|
389
389
|
- spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml
|
390
|
-
- spec/vcr/Docker_Exec/
|
390
|
+
- spec/vcr/Docker_Exec/_json/returns_the_description_as_a_Hash.yml
|
391
391
|
- spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml
|
392
392
|
- spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml
|
393
|
-
- spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/
|
393
|
+
- spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout/stderr_messages_with_exitcode.yml
|
394
394
|
- spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml
|
395
395
|
- spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml
|
396
396
|
- spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml
|
@@ -1,153 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: post
|
5
|
-
uri: "<DOCKER_HOST>/v1.15/containers/create"
|
6
|
-
body:
|
7
|
-
encoding: UTF-8
|
8
|
-
string: '{"Cmd":["sleep","20"],"Image":"debian:wheezy"}'
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.15.0
|
12
|
-
Content-Type:
|
13
|
-
- application/json
|
14
|
-
response:
|
15
|
-
status:
|
16
|
-
code: 201
|
17
|
-
message:
|
18
|
-
headers:
|
19
|
-
Content-Type:
|
20
|
-
- application/json
|
21
|
-
Date:
|
22
|
-
- Mon, 01 Dec 2014 18:07:55 GMT
|
23
|
-
Content-Length:
|
24
|
-
- '90'
|
25
|
-
body:
|
26
|
-
encoding: UTF-8
|
27
|
-
string: |
|
28
|
-
{"Id":"d93d99e6ef3a7b2747f57057419cb155a5b185bd67617e2de69063448a30d095","Warnings":null}
|
29
|
-
http_version:
|
30
|
-
recorded_at: Mon, 01 Dec 2014 18:07:54 GMT
|
31
|
-
- request:
|
32
|
-
method: post
|
33
|
-
uri: "<DOCKER_HOST>/v1.15/containers/d93d99e6ef3a7b2747f57057419cb155a5b185bd67617e2de69063448a30d095/start"
|
34
|
-
body:
|
35
|
-
encoding: UTF-8
|
36
|
-
string: "{}"
|
37
|
-
headers:
|
38
|
-
User-Agent:
|
39
|
-
- Swipely/Docker-API 1.15.0
|
40
|
-
Content-Type:
|
41
|
-
- application/json
|
42
|
-
response:
|
43
|
-
status:
|
44
|
-
code: 204
|
45
|
-
message:
|
46
|
-
headers:
|
47
|
-
Date:
|
48
|
-
- Mon, 01 Dec 2014 18:07:55 GMT
|
49
|
-
body:
|
50
|
-
encoding: UTF-8
|
51
|
-
string: ''
|
52
|
-
http_version:
|
53
|
-
recorded_at: Mon, 01 Dec 2014 18:07:55 GMT
|
54
|
-
- request:
|
55
|
-
method: post
|
56
|
-
uri: "<DOCKER_HOST>/v1.15/containers/d93d99e6ef3a7b2747f57057419cb155a5b185bd67617e2de69063448a30d095/exec"
|
57
|
-
body:
|
58
|
-
encoding: UTF-8
|
59
|
-
string: '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":false,"Cmd":["bash","-c","sleep
|
60
|
-
2; echo hello"]}'
|
61
|
-
headers:
|
62
|
-
User-Agent:
|
63
|
-
- Swipely/Docker-API 1.15.0
|
64
|
-
Content-Type:
|
65
|
-
- application/json
|
66
|
-
response:
|
67
|
-
status:
|
68
|
-
code: 201
|
69
|
-
message:
|
70
|
-
headers:
|
71
|
-
Content-Type:
|
72
|
-
- application/json
|
73
|
-
Date:
|
74
|
-
- Mon, 01 Dec 2014 18:07:55 GMT
|
75
|
-
Content-Length:
|
76
|
-
- '74'
|
77
|
-
body:
|
78
|
-
encoding: UTF-8
|
79
|
-
string: |
|
80
|
-
{"Id":"a4fd1f675f38c23f2c2fc69139b680dee9a64e30c01c3aed447560c39dbddd94"}
|
81
|
-
http_version:
|
82
|
-
recorded_at: Mon, 01 Dec 2014 18:07:55 GMT
|
83
|
-
- request:
|
84
|
-
method: post
|
85
|
-
uri: "<DOCKER_HOST>/v1.15/exec/a4fd1f675f38c23f2c2fc69139b680dee9a64e30c01c3aed447560c39dbddd94/start"
|
86
|
-
body:
|
87
|
-
encoding: UTF-8
|
88
|
-
string: '{"Tty":false,"Detach":false}'
|
89
|
-
headers:
|
90
|
-
User-Agent:
|
91
|
-
- Swipely/Docker-API 1.15.0
|
92
|
-
Content-Type:
|
93
|
-
- application/json
|
94
|
-
response:
|
95
|
-
status:
|
96
|
-
code: 200
|
97
|
-
message:
|
98
|
-
headers:
|
99
|
-
Content-Type:
|
100
|
-
- application/vnd.docker.raw-stream
|
101
|
-
body:
|
102
|
-
encoding: UTF-8
|
103
|
-
string: !binary |-
|
104
|
-
AQAAAAAAAAZoZWxsbwo=
|
105
|
-
http_version:
|
106
|
-
recorded_at: Mon, 01 Dec 2014 18:07:57 GMT
|
107
|
-
- request:
|
108
|
-
method: post
|
109
|
-
uri: "<DOCKER_HOST>/v1.15/containers/d93d99e6ef3a7b2747f57057419cb155a5b185bd67617e2de69063448a30d095/kill"
|
110
|
-
body:
|
111
|
-
encoding: US-ASCII
|
112
|
-
string: ''
|
113
|
-
headers:
|
114
|
-
User-Agent:
|
115
|
-
- Swipely/Docker-API 1.15.0
|
116
|
-
Content-Type:
|
117
|
-
- text/plain
|
118
|
-
response:
|
119
|
-
status:
|
120
|
-
code: 204
|
121
|
-
message:
|
122
|
-
headers:
|
123
|
-
Date:
|
124
|
-
- Mon, 01 Dec 2014 18:07:58 GMT
|
125
|
-
body:
|
126
|
-
encoding: UTF-8
|
127
|
-
string: ''
|
128
|
-
http_version:
|
129
|
-
recorded_at: Mon, 01 Dec 2014 18:07:57 GMT
|
130
|
-
- request:
|
131
|
-
method: delete
|
132
|
-
uri: "<DOCKER_HOST>/v1.15/containers/d93d99e6ef3a7b2747f57057419cb155a5b185bd67617e2de69063448a30d095"
|
133
|
-
body:
|
134
|
-
encoding: US-ASCII
|
135
|
-
string: ''
|
136
|
-
headers:
|
137
|
-
User-Agent:
|
138
|
-
- Swipely/Docker-API 1.15.0
|
139
|
-
Content-Type:
|
140
|
-
- text/plain
|
141
|
-
response:
|
142
|
-
status:
|
143
|
-
code: 204
|
144
|
-
message:
|
145
|
-
headers:
|
146
|
-
Date:
|
147
|
-
- Mon, 01 Dec 2014 18:07:58 GMT
|
148
|
-
body:
|
149
|
-
encoding: UTF-8
|
150
|
-
string: ''
|
151
|
-
http_version:
|
152
|
-
recorded_at: Mon, 01 Dec 2014 18:07:58 GMT
|
153
|
-
recorded_with: VCR 2.9.3
|