docker-api 1.23.0 → 1.24.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (109) hide show
  1. checksums.yaml +4 -4
  2. data/.cane +1 -1
  3. data/.rspec +1 -0
  4. data/.travis.yml +7 -6
  5. data/Dockerfile +2 -0
  6. data/README.md +5 -5
  7. data/Rakefile +26 -31
  8. data/TESTING.md +7 -19
  9. data/docker-api.gemspec +0 -1
  10. data/lib/docker/image.rb +6 -2
  11. data/lib/docker/version.rb +1 -1
  12. data/spec/docker/container_spec.rb +72 -92
  13. data/spec/docker/event_spec.rb +33 -23
  14. data/spec/docker/exec_spec.rb +9 -24
  15. data/spec/docker/image_spec.rb +75 -81
  16. data/spec/docker_spec.rb +21 -32
  17. metadata +4 -200
  18. data/spec/support/vcr.rb +0 -14
  19. data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +0 -32
  20. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +0 -39
  21. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +0 -39
  22. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +0 -34
  23. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +0 -125
  24. data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +0 -125
  25. data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +0 -125
  26. data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +0 -165
  27. data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +0 -165
  28. data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +0 -136
  29. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +0 -241
  30. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +0 -198
  31. data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +0 -84
  32. data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +0 -55
  33. data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +0 -85
  34. data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +0 -180
  35. data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +0 -183
  36. data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages_and_exit_code.yml +0 -183
  37. data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +0 -101
  38. data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +0 -182
  39. data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +0 -333
  40. data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +0 -84
  41. data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +0 -84
  42. data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +0 -164
  43. data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +0 -257
  44. data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +0 -171
  45. data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +0 -82
  46. data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +0 -176
  47. data/spec/vcr/Docker_Container/_rename/renames_the_container.yml +0 -149
  48. data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +0 -243
  49. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +0 -107
  50. 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 +0 -392
  51. data/spec/vcr/Docker_Container/_start/starts_the_container.yml +0 -140
  52. data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +0 -164
  53. data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +0 -217
  54. data/spec/vcr/Docker_Container/_streaming_logs/when_passing_a_block/returns_hello_.yml +0 -131
  55. data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +0 -131
  56. data/spec/vcr/Docker_Container/_streaming_logs/when_using_a_tty/returns_hello_.yml +0 -131
  57. data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +0 -194
  58. data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +0 -176
  59. data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +0 -107
  60. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +0 -107
  61. data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +0 -130
  62. data/spec/vcr/Docker_Exec/_json/returns_the_description_as_a_Hash.yml +0 -207
  63. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +0 -182
  64. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +0 -182
  65. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout/stderr_messages_with_exitcode.yml +0 -180
  66. data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +0 -180
  67. data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +0 -180
  68. data/spec/vcr/Docker_Exec/_start_/when_wait_set_long_time_value/returns_empty_stdout_and_stderr_messages_with_exitcode.yml +0 -189
  69. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +0 -111
  70. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +0 -75
  71. 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 +0 -219
  72. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +0 -75
  73. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +0 -79
  74. 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 +0 -194
  75. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_a_block_capturing_build_output/uses_a_cached_version_the_second_time/calls_the_block_and_passes_build_output.yml +0 -96
  76. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +0 -194
  77. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +0 -562
  78. 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 +0 -601
  79. 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 +0 -65
  80. data/spec/vcr/Docker_Image/_create/with_a_block_capturing_create_output/calls_the_block_and_passes_build_output.yml +0 -38
  81. data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +0 -33
  82. data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +0 -33
  83. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +0 -66
  84. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +0 -265
  85. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +0 -303
  86. data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +0 -59
  87. data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +0 -1469
  88. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +0 -244
  89. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +0 -224
  90. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +0 -289
  91. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +0 -32
  92. data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +0 -366
  93. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +0 -62
  94. data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +0 -246
  95. data/spec/vcr/Docker_Image/_push/streams_output_from_push.yml +0 -246
  96. 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 +0 -382
  97. data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +0 -264
  98. data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +0 -141
  99. data/spec/vcr/Docker_Image/_refresh_/with_an_explicit_connection/updates_using_the_provided_connection.yml +0 -62
  100. data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +0 -652
  101. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +0 -162
  102. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +0 -162
  103. 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 +0 -162
  104. 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 +0 -63
  105. data/spec/vcr/Docker_Image/_save/calls_the_class_method.yml +0 -67
  106. data/spec/vcr/Docker_Image/_save/when_a_filename_is_specified/exports_tarball_of_image_to_specified_file.yml +0 -176
  107. data/spec/vcr/Docker_Image/_save/when_no_filename_is_specified/returns_raw_binary_data_as_string.yml +0 -176
  108. data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +0 -79
  109. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +0 -88
@@ -1,131 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: "<DOCKER_HOST>/v1.16/containers/create"
6
- body:
7
- encoding: UTF-8
8
- string: '{"Cmd":["/bin/bash","-lc","echo hello"],"Image":"debian:wheezy"}'
9
- headers:
10
- User-Agent:
11
- - Swipely/Docker-API 1.22.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, 27 Jul 2015 14:29:59 GMT
23
- Content-Length:
24
- - '90'
25
- body:
26
- encoding: UTF-8
27
- string: |
28
- {"Id":"4e9a8ca928592a0c6ee1f123c575b6b0a8e7447861c76f40df020abf1c0852d7","Warnings":null}
29
- http_version:
30
- recorded_at: Mon, 27 Jul 2015 14:29:59 GMT
31
- - request:
32
- method: post
33
- uri: "<DOCKER_HOST>/v1.16/containers/4e9a8ca928592a0c6ee1f123c575b6b0a8e7447861c76f40df020abf1c0852d7/start"
34
- body:
35
- encoding: UTF-8
36
- string: "{}"
37
- headers:
38
- User-Agent:
39
- - Swipely/Docker-API 1.22.0
40
- Content-Type:
41
- - application/json
42
- response:
43
- status:
44
- code: 204
45
- message:
46
- headers:
47
- Date:
48
- - Mon, 27 Jul 2015 14:29:59 GMT
49
- body:
50
- encoding: UTF-8
51
- string: ''
52
- http_version:
53
- recorded_at: Mon, 27 Jul 2015 14:29:59 GMT
54
- - request:
55
- method: post
56
- uri: "<DOCKER_HOST>/v1.16/containers/4e9a8ca928592a0c6ee1f123c575b6b0a8e7447861c76f40df020abf1c0852d7/wait"
57
- body:
58
- encoding: US-ASCII
59
- string: ''
60
- headers:
61
- User-Agent:
62
- - Swipely/Docker-API 1.22.0
63
- Content-Type:
64
- - text/plain
65
- response:
66
- status:
67
- code: 200
68
- message:
69
- headers:
70
- Content-Type:
71
- - application/json
72
- Date:
73
- - Mon, 27 Jul 2015 14:29:59 GMT
74
- Content-Length:
75
- - '17'
76
- body:
77
- encoding: UTF-8
78
- string: |
79
- {"StatusCode":0}
80
- http_version:
81
- recorded_at: Mon, 27 Jul 2015 14:29:59 GMT
82
- - request:
83
- method: get
84
- uri: "<DOCKER_HOST>/v1.16/containers/4e9a8ca928592a0c6ee1f123c575b6b0a8e7447861c76f40df020abf1c0852d7/logs?follow=1&stdout=1"
85
- body:
86
- encoding: US-ASCII
87
- string: ''
88
- headers:
89
- User-Agent:
90
- - Swipely/Docker-API 1.22.0
91
- Content-Type:
92
- - text/plain
93
- response:
94
- status:
95
- code: 200
96
- message:
97
- headers:
98
- Date:
99
- - Mon, 27 Jul 2015 14:29:59 GMT
100
- Content-Type:
101
- - application/octet-stream
102
- body:
103
- encoding: UTF-8
104
- string: !binary |-
105
- AQAAAAAAAAZoZWxsbwo=
106
- http_version:
107
- recorded_at: Mon, 27 Jul 2015 14:29:59 GMT
108
- - request:
109
- method: delete
110
- uri: "<DOCKER_HOST>/v1.16/containers/4e9a8ca928592a0c6ee1f123c575b6b0a8e7447861c76f40df020abf1c0852d7"
111
- body:
112
- encoding: US-ASCII
113
- string: ''
114
- headers:
115
- User-Agent:
116
- - Swipely/Docker-API 1.22.0
117
- Content-Type:
118
- - text/plain
119
- response:
120
- status:
121
- code: 204
122
- message:
123
- headers:
124
- Date:
125
- - Mon, 27 Jul 2015 14:29:59 GMT
126
- body:
127
- encoding: UTF-8
128
- string: ''
129
- http_version:
130
- recorded_at: Mon, 27 Jul 2015 14:29:59 GMT
131
- recorded_with: VCR 2.9.2
@@ -1,131 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: "<DOCKER_HOST>/v1.16/containers/create"
6
- body:
7
- encoding: UTF-8
8
- string: '{"Cmd":["/bin/bash","-lc","echo hello"],"Image":"debian:wheezy"}'
9
- headers:
10
- User-Agent:
11
- - Swipely/Docker-API 1.22.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, 27 Jul 2015 14:27:17 GMT
23
- Content-Length:
24
- - '90'
25
- body:
26
- encoding: UTF-8
27
- string: |
28
- {"Id":"d795fdb4a056d1f56c109ea42ae0adb3b01d49101b712515ea83a115a6aeeccf","Warnings":null}
29
- http_version:
30
- recorded_at: Mon, 27 Jul 2015 14:27:17 GMT
31
- - request:
32
- method: post
33
- uri: "<DOCKER_HOST>/v1.16/containers/d795fdb4a056d1f56c109ea42ae0adb3b01d49101b712515ea83a115a6aeeccf/start"
34
- body:
35
- encoding: UTF-8
36
- string: "{}"
37
- headers:
38
- User-Agent:
39
- - Swipely/Docker-API 1.22.0
40
- Content-Type:
41
- - application/json
42
- response:
43
- status:
44
- code: 204
45
- message:
46
- headers:
47
- Date:
48
- - Mon, 27 Jul 2015 14:27:17 GMT
49
- body:
50
- encoding: UTF-8
51
- string: ''
52
- http_version:
53
- recorded_at: Mon, 27 Jul 2015 14:27:18 GMT
54
- - request:
55
- method: post
56
- uri: "<DOCKER_HOST>/v1.16/containers/d795fdb4a056d1f56c109ea42ae0adb3b01d49101b712515ea83a115a6aeeccf/wait"
57
- body:
58
- encoding: US-ASCII
59
- string: ''
60
- headers:
61
- User-Agent:
62
- - Swipely/Docker-API 1.22.0
63
- Content-Type:
64
- - text/plain
65
- response:
66
- status:
67
- code: 200
68
- message:
69
- headers:
70
- Content-Type:
71
- - application/json
72
- Date:
73
- - Mon, 27 Jul 2015 14:27:18 GMT
74
- Content-Length:
75
- - '17'
76
- body:
77
- encoding: UTF-8
78
- string: |
79
- {"StatusCode":0}
80
- http_version:
81
- recorded_at: Mon, 27 Jul 2015 14:27:18 GMT
82
- - request:
83
- method: get
84
- uri: "<DOCKER_HOST>/v1.16/containers/d795fdb4a056d1f56c109ea42ae0adb3b01d49101b712515ea83a115a6aeeccf/logs?stdout=1"
85
- body:
86
- encoding: US-ASCII
87
- string: ''
88
- headers:
89
- User-Agent:
90
- - Swipely/Docker-API 1.22.0
91
- Content-Type:
92
- - text/plain
93
- response:
94
- status:
95
- code: 200
96
- message:
97
- headers:
98
- Date:
99
- - Mon, 27 Jul 2015 14:27:18 GMT
100
- Content-Type:
101
- - application/octet-stream
102
- body:
103
- encoding: UTF-8
104
- string: !binary |-
105
- AQAAAAAAAAZoZWxsbwo=
106
- http_version:
107
- recorded_at: Mon, 27 Jul 2015 14:27:18 GMT
108
- - request:
109
- method: delete
110
- uri: "<DOCKER_HOST>/v1.16/containers/d795fdb4a056d1f56c109ea42ae0adb3b01d49101b712515ea83a115a6aeeccf"
111
- body:
112
- encoding: US-ASCII
113
- string: ''
114
- headers:
115
- User-Agent:
116
- - Swipely/Docker-API 1.22.0
117
- Content-Type:
118
- - text/plain
119
- response:
120
- status:
121
- code: 204
122
- message:
123
- headers:
124
- Date:
125
- - Mon, 27 Jul 2015 14:27:18 GMT
126
- body:
127
- encoding: UTF-8
128
- string: ''
129
- http_version:
130
- recorded_at: Mon, 27 Jul 2015 14:27:18 GMT
131
- recorded_with: VCR 2.9.2
@@ -1,131 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: "<DOCKER_HOST>/v1.16/containers/create"
6
- body:
7
- encoding: UTF-8
8
- string: '{"Cmd":["/bin/bash","-lc","echo hello"],"Image":"debian:wheezy","Tty":true}'
9
- headers:
10
- User-Agent:
11
- - Swipely/Docker-API 1.22.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, 27 Jul 2015 14:27:18 GMT
23
- Content-Length:
24
- - '90'
25
- body:
26
- encoding: UTF-8
27
- string: |
28
- {"Id":"45c15db165f05f898604925e81ca58566e1179be1068fde0acd30b7784a19467","Warnings":null}
29
- http_version:
30
- recorded_at: Mon, 27 Jul 2015 14:27:18 GMT
31
- - request:
32
- method: post
33
- uri: "<DOCKER_HOST>/v1.16/containers/45c15db165f05f898604925e81ca58566e1179be1068fde0acd30b7784a19467/start"
34
- body:
35
- encoding: UTF-8
36
- string: "{}"
37
- headers:
38
- User-Agent:
39
- - Swipely/Docker-API 1.22.0
40
- Content-Type:
41
- - application/json
42
- response:
43
- status:
44
- code: 204
45
- message:
46
- headers:
47
- Date:
48
- - Mon, 27 Jul 2015 14:27:18 GMT
49
- body:
50
- encoding: UTF-8
51
- string: ''
52
- http_version:
53
- recorded_at: Mon, 27 Jul 2015 14:27:18 GMT
54
- - request:
55
- method: post
56
- uri: "<DOCKER_HOST>/v1.16/containers/45c15db165f05f898604925e81ca58566e1179be1068fde0acd30b7784a19467/wait"
57
- body:
58
- encoding: US-ASCII
59
- string: ''
60
- headers:
61
- User-Agent:
62
- - Swipely/Docker-API 1.22.0
63
- Content-Type:
64
- - text/plain
65
- response:
66
- status:
67
- code: 200
68
- message:
69
- headers:
70
- Content-Type:
71
- - application/json
72
- Date:
73
- - Mon, 27 Jul 2015 14:27:19 GMT
74
- Content-Length:
75
- - '17'
76
- body:
77
- encoding: UTF-8
78
- string: |
79
- {"StatusCode":0}
80
- http_version:
81
- recorded_at: Mon, 27 Jul 2015 14:27:19 GMT
82
- - request:
83
- method: get
84
- uri: "<DOCKER_HOST>/v1.16/containers/45c15db165f05f898604925e81ca58566e1179be1068fde0acd30b7784a19467/logs?stdout=1"
85
- body:
86
- encoding: US-ASCII
87
- string: ''
88
- headers:
89
- User-Agent:
90
- - Swipely/Docker-API 1.22.0
91
- Content-Type:
92
- - text/plain
93
- response:
94
- status:
95
- code: 200
96
- message:
97
- headers:
98
- Date:
99
- - Mon, 27 Jul 2015 14:27:19 GMT
100
- Content-Type:
101
- - text/plain; charset=utf-8
102
- body:
103
- encoding: UTF-8
104
- string: |
105
- hello
106
- http_version:
107
- recorded_at: Mon, 27 Jul 2015 14:27:19 GMT
108
- - request:
109
- method: delete
110
- uri: "<DOCKER_HOST>/v1.16/containers/45c15db165f05f898604925e81ca58566e1179be1068fde0acd30b7784a19467"
111
- body:
112
- encoding: US-ASCII
113
- string: ''
114
- headers:
115
- User-Agent:
116
- - Swipely/Docker-API 1.22.0
117
- Content-Type:
118
- - text/plain
119
- response:
120
- status:
121
- code: 204
122
- message:
123
- headers:
124
- Date:
125
- - Mon, 27 Jul 2015 14:27:19 GMT
126
- body:
127
- encoding: UTF-8
128
- string: ''
129
- http_version:
130
- recorded_at: Mon, 27 Jul 2015 14:27:19 GMT
131
- recorded_with: VCR 2.9.2
@@ -1,194 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: <DOCKER_HOST>/v1.16/build
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - Swipely/Docker-API 1.18.0
12
- Content-Type:
13
- - application/tar
14
- Transfer-Encoding:
15
- - chunked
16
- X-Registry-Config:
17
- - eyJjb25maWdzIjp7IiI6eyJ1c2VybmFtZSI6IiIsInBhc3N3b3JkIjoiIiwiZW1haWwiOiIifX19
18
- response:
19
- status:
20
- code: 200
21
- message:
22
- headers:
23
- Content-Type:
24
- - application/json
25
- Date:
26
- - Thu, 12 Feb 2015 00:53:32 GMT
27
- body:
28
- encoding: US-ASCII
29
- string: ! "{\"stream\":\"Step 0 : FROM debian:wheezy\\n\"}\r\n{\"stream\":\"
30
- ---\\u003e c90d655b99b2\\n\"}\r\n{\"stream\":\"Step 1 : RUN printf '#! /bin/sh\\\\nwhile
31
- true\\\\ndo\\\\ntrue\\\\ndone\\\\n' \\u003e /while \\u0026\\u0026 chmod +x
32
- /while\\n\"}\r\n{\"stream\":\" ---\\u003e Running in 191d9cbe06cf\\n\"}\r\n{\"stream\":\"
33
- ---\\u003e 89c657420303\\n\"}\r\n{\"stream\":\"Removing intermediate container
34
- 191d9cbe06cf\\n\"}\r\n{\"stream\":\"Successfully built 89c657420303\\n\"}\r\n"
35
- http_version:
36
- recorded_at: Thu, 12 Feb 2015 00:53:34 GMT
37
- - request:
38
- method: post
39
- uri: <DOCKER_HOST>/v1.16/containers/create
40
- body:
41
- encoding: UTF-8
42
- string: ! '{"Image":"89c657420303","Cmd":["/while"]}'
43
- headers:
44
- User-Agent:
45
- - Swipely/Docker-API 1.18.0
46
- Content-Type:
47
- - application/json
48
- response:
49
- status:
50
- code: 201
51
- message:
52
- headers:
53
- Content-Type:
54
- - application/json
55
- Date:
56
- - Thu, 12 Feb 2015 00:53:35 GMT
57
- Content-Length:
58
- - '90'
59
- body:
60
- encoding: US-ASCII
61
- string: ! '{"Id":"75107c91ead45043299b32ef1911b4152b7cc75325288ecbdb0515431f7d9014","Warnings":null}
62
-
63
- '
64
- http_version:
65
- recorded_at: Thu, 12 Feb 2015 00:53:35 GMT
66
- - request:
67
- method: post
68
- uri: <DOCKER_HOST>/v1.16/containers/75107c91ead45043299b32ef1911b4152b7cc75325288ecbdb0515431f7d9014/start
69
- body:
70
- encoding: UTF-8
71
- string: ! '{}'
72
- headers:
73
- User-Agent:
74
- - Swipely/Docker-API 1.18.0
75
- Content-Type:
76
- - application/json
77
- response:
78
- status:
79
- code: 204
80
- message:
81
- headers:
82
- Date:
83
- - Thu, 12 Feb 2015 00:53:35 GMT
84
- body:
85
- encoding: US-ASCII
86
- string: ''
87
- http_version:
88
- recorded_at: Thu, 12 Feb 2015 00:53:35 GMT
89
- - request:
90
- method: get
91
- uri: <DOCKER_HOST>/v1.16/containers/75107c91ead45043299b32ef1911b4152b7cc75325288ecbdb0515431f7d9014/top
92
- body:
93
- encoding: US-ASCII
94
- string: ''
95
- headers:
96
- User-Agent:
97
- - Swipely/Docker-API 1.18.0
98
- Content-Type:
99
- - text/plain
100
- response:
101
- status:
102
- code: 200
103
- message:
104
- headers:
105
- Content-Type:
106
- - application/json
107
- Date:
108
- - Thu, 12 Feb 2015 00:53:36 GMT
109
- Content-Length:
110
- - '144'
111
- body:
112
- encoding: US-ASCII
113
- string: ! '{"Processes":[["root","9409","269","99","19:53","?","00:00:01","/bin/sh
114
- /while"]],"Titles":["UID","PID","PPID","C","STIME","TTY","TIME","CMD"]}
115
-
116
- '
117
- http_version:
118
- recorded_at: Thu, 12 Feb 2015 00:53:36 GMT
119
- - request:
120
- method: post
121
- uri: <DOCKER_HOST>/v1.16/containers/75107c91ead45043299b32ef1911b4152b7cc75325288ecbdb0515431f7d9014/kill
122
- body:
123
- encoding: US-ASCII
124
- string: ''
125
- headers:
126
- User-Agent:
127
- - Swipely/Docker-API 1.18.0
128
- Content-Type:
129
- - text/plain
130
- response:
131
- status:
132
- code: 204
133
- message:
134
- headers:
135
- Date:
136
- - Thu, 12 Feb 2015 00:53:36 GMT
137
- body:
138
- encoding: US-ASCII
139
- string: ''
140
- http_version:
141
- recorded_at: Thu, 12 Feb 2015 00:53:36 GMT
142
- - request:
143
- method: delete
144
- uri: <DOCKER_HOST>/v1.16/containers/75107c91ead45043299b32ef1911b4152b7cc75325288ecbdb0515431f7d9014
145
- body:
146
- encoding: US-ASCII
147
- string: ''
148
- headers:
149
- User-Agent:
150
- - Swipely/Docker-API 1.18.0
151
- Content-Type:
152
- - text/plain
153
- response:
154
- status:
155
- code: 204
156
- message:
157
- headers:
158
- Date:
159
- - Thu, 12 Feb 2015 00:53:37 GMT
160
- body:
161
- encoding: US-ASCII
162
- string: ''
163
- http_version:
164
- recorded_at: Thu, 12 Feb 2015 00:53:37 GMT
165
- - request:
166
- method: delete
167
- uri: <DOCKER_HOST>/v1.16/images/89c657420303
168
- body:
169
- encoding: US-ASCII
170
- string: ''
171
- headers:
172
- User-Agent:
173
- - Swipely/Docker-API 1.18.0
174
- Content-Type:
175
- - text/plain
176
- response:
177
- status:
178
- code: 200
179
- message:
180
- headers:
181
- Content-Type:
182
- - application/json
183
- Date:
184
- - Thu, 12 Feb 2015 00:53:37 GMT
185
- Content-Length:
186
- - '81'
187
- body:
188
- encoding: US-ASCII
189
- string: ! '[{"Deleted":"89c657420303760b4bc8e0df04c241d9a606a9ff5e9740d184442e21071b4ac0"}
190
-
191
- ]'
192
- http_version:
193
- recorded_at: Thu, 12 Feb 2015 00:53:37 GMT
194
- recorded_with: VCR 2.9.2