docker-api 1.15.0 → 1.16.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 +26 -1
- data/Rakefile +37 -0
- data/TESTING.md +61 -0
- data/lib/docker.rb +8 -1
- data/lib/docker/container.rb +44 -80
- data/lib/docker/exec.rb +98 -0
- data/lib/docker/image.rb +4 -3
- data/lib/docker/util.rb +79 -0
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +192 -56
- data/spec/docker/event_spec.rb +4 -4
- data/spec/docker/exec_spec.rb +197 -0
- data/spec/docker/image_spec.rb +131 -102
- data/spec/docker_spec.rb +37 -27
- data/spec/fixtures/build_from_dir/Dockerfile +2 -2
- data/spec/fixtures/export.tar +0 -0
- data/spec/fixtures/top/Dockerfile +2 -2
- data/spec/spec_helper.rb +10 -0
- data/spec/support/vcr.rb +5 -0
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +6 -8
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +7 -9
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +7 -9
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +7 -9
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +46 -139
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +62 -20
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +62 -20
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +71 -28
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +69 -23
- data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +134 -0
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +73 -290
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +51 -211
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +36 -17
- data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +30 -9
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +17 -23
- data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +151 -0
- data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +153 -0
- data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages.yml +153 -0
- data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +100 -0
- data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +152 -0
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +263 -28
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +36 -17
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +36 -17
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +55 -53
- data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +74 -96
- data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +84 -81
- data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +34 -15
- data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +98 -45
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +88 -56
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +39 -22
- 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 +212 -60
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +45 -30
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +54 -83
- data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +84 -81
- data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +46 -30
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +103 -40
- data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +81 -57
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +39 -22
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +39 -22
- data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +128 -0
- data/spec/vcr/Docker_Exec/_resize/when_exec_instance_has_TTY_enabled/returns_a_200.yml +155 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +152 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +152 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout_and_stderr_messages.yml +151 -0
- data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +151 -0
- data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +151 -0
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +86 -200
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +10 -14
- 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 +147 -39
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +10 -14
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +12 -14
- 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 +118 -16
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +118 -14
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +109 -37
- 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 +214 -60
- 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 +41 -2631
- data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +12 -19
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +7 -9
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +17 -198
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +26 -30
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +246 -22
- data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +35 -10
- data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +1249 -74
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +84 -94
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +70 -92
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +125 -98
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +13 -60
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +190 -135
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +15 -198
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +169 -264
- data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +175 -4543
- data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +90 -206
- data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +300 -0
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +77 -207
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +77 -207
- 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 +160 -0
- 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 -197
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +151 -73
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +42 -196
- metadata +67 -41
- data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +0 -58
- data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/returns_the_error_message.yml +0 -163
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +0 -58
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml +0 -41
- data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +0 -276
data/spec/docker_spec.rb
CHANGED
@@ -3,21 +3,17 @@ require 'spec_helper'
|
|
3
3
|
describe Docker do
|
4
4
|
subject { Docker }
|
5
5
|
|
6
|
-
before do
|
7
|
-
ENV['DOCKER_URL'] = nil
|
8
|
-
ENV['DOCKER_HOST'] = nil
|
9
|
-
ENV['DOCKER_CERT_PATH'] = nil
|
10
|
-
end
|
11
|
-
|
12
6
|
it { should be_a Module }
|
13
7
|
|
14
8
|
context 'default url and connection' do
|
15
|
-
before do
|
16
|
-
Docker.url = nil
|
17
|
-
Docker.options = nil
|
18
|
-
end
|
19
|
-
|
20
9
|
context "when the DOCKER_* ENV variables aren't set" do
|
10
|
+
before do
|
11
|
+
allow(ENV).to receive(:[]).with('DOCKER_URL').and_return(nil)
|
12
|
+
allow(ENV).to receive(:[]).with('DOCKER_HOST').and_return(nil)
|
13
|
+
allow(ENV).to receive(:[]).with('DOCKER_CERT_PATH').and_return(nil)
|
14
|
+
Docker.reset!
|
15
|
+
end
|
16
|
+
|
21
17
|
its(:options) { should == {} }
|
22
18
|
its(:url) { should == 'unix:///var/run/docker.sock' }
|
23
19
|
its(:connection) { should be_a Docker::Connection }
|
@@ -25,8 +21,11 @@ describe Docker do
|
|
25
21
|
|
26
22
|
context "when the DOCKER_* ENV variables are set" do
|
27
23
|
before do
|
28
|
-
ENV['DOCKER_URL'
|
29
|
-
|
24
|
+
allow(ENV).to receive(:[]).with('DOCKER_URL')
|
25
|
+
.and_return('unixs:///var/run/not-docker.sock')
|
26
|
+
allow(ENV).to receive(:[]).with('DOCKER_HOST').and_return(nil)
|
27
|
+
allow(ENV).to receive(:[]).with('DOCKER_CERT_PATH').and_return(nil)
|
28
|
+
Docker.reset!
|
30
29
|
end
|
31
30
|
|
32
31
|
its(:options) { should == {} }
|
@@ -36,8 +35,10 @@ describe Docker do
|
|
36
35
|
|
37
36
|
context "when the DOCKER_HOST is set and uses default tcp://" do
|
38
37
|
before do
|
39
|
-
ENV[
|
40
|
-
|
38
|
+
allow(ENV).to receive(:[]).with('DOCKER_URL').and_return(nil)
|
39
|
+
allow(ENV).to receive(:[]).with('DOCKER_HOST').and_return('tcp://')
|
40
|
+
allow(ENV).to receive(:[]).with('DOCKER_CERT_PATH').and_return(nil)
|
41
|
+
Docker.reset!
|
41
42
|
end
|
42
43
|
|
43
44
|
its(:options) { should == {} }
|
@@ -47,8 +48,11 @@ describe Docker do
|
|
47
48
|
|
48
49
|
context "when the DOCKER_HOST ENV variable is set" do
|
49
50
|
before do
|
50
|
-
ENV[
|
51
|
-
|
51
|
+
allow(ENV).to receive(:[]).with('DOCKER_URL').and_return(nil)
|
52
|
+
allow(ENV).to receive(:[]).with('DOCKER_HOST')
|
53
|
+
.and_return('tcp://someserver:8103')
|
54
|
+
allow(ENV).to receive(:[]).with('DOCKER_CERT_PATH').and_return(nil)
|
55
|
+
Docker.reset!
|
52
56
|
end
|
53
57
|
|
54
58
|
its(:options) { should == {} }
|
@@ -58,9 +62,12 @@ describe Docker do
|
|
58
62
|
|
59
63
|
context "DOCKER_URL should take precedence over DOCKER_HOST" do
|
60
64
|
before do
|
61
|
-
ENV[
|
62
|
-
|
63
|
-
|
65
|
+
allow(ENV).to receive(:[]).with('DOCKER_URL')
|
66
|
+
.and_return('tcp://someotherserver:8103')
|
67
|
+
allow(ENV).to receive(:[]).with('DOCKER_HOST')
|
68
|
+
.and_return('tcp://someserver:8103')
|
69
|
+
allow(ENV).to receive(:[]).with('DOCKER_CERT_PATH').and_return(nil)
|
70
|
+
Docker.reset!
|
64
71
|
end
|
65
72
|
|
66
73
|
its(:options) { should == {} }
|
@@ -70,9 +77,12 @@ describe Docker do
|
|
70
77
|
|
71
78
|
context "when the DOCKER_CERT_PATH and DOCKER_HOST ENV variables are set" do
|
72
79
|
before do
|
73
|
-
ENV[
|
74
|
-
ENV[
|
75
|
-
|
80
|
+
allow(ENV).to receive(:[]).with('DOCKER_URL').and_return(nil)
|
81
|
+
allow(ENV).to receive(:[]).with('DOCKER_HOST')
|
82
|
+
.and_return('tcp://someserver:8103')
|
83
|
+
allow(ENV).to receive(:[]).with('DOCKER_CERT_PATH')
|
84
|
+
.and_return('/boot2dockert/cert/path')
|
85
|
+
Docker.reset!
|
76
86
|
end
|
77
87
|
|
78
88
|
its(:options) {
|
@@ -137,7 +147,7 @@ describe Docker do
|
|
137
147
|
let(:keys) do
|
138
148
|
%w(Containers Debug Driver DriverStatus ExecutionDriver IPv4Forwarding
|
139
149
|
Images IndexServerAddress InitPath InitSha1 KernelVersion MemoryLimit
|
140
|
-
NEventsListener NFd NGoroutines SwapLimit)
|
150
|
+
NEventsListener NFd NGoroutines OperatingSystem SwapLimit)
|
141
151
|
end
|
142
152
|
|
143
153
|
it 'returns the info as a Hash', :vcr do
|
@@ -162,9 +172,9 @@ describe Docker do
|
|
162
172
|
# cassette to match these credentials
|
163
173
|
let(:credentials) {
|
164
174
|
{
|
165
|
-
:username => '
|
166
|
-
:password => '
|
167
|
-
:email => '
|
175
|
+
:username => ENV['DOCKER_API_USER'],
|
176
|
+
:password => ENV['DOCKER_API_PASS'],
|
177
|
+
:email => ENV['DOCKER_API_EMAIL'],
|
168
178
|
:serveraddress => 'https://index.docker.io/v1/'
|
169
179
|
}
|
170
180
|
}
|
@@ -1,2 +1,2 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
FROM debian:wheezy
|
2
|
+
ADD / /
|
Binary file
|
@@ -1,2 +1,2 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
FROM debian:wheezy
|
2
|
+
RUN printf '#! /bin/sh\nwhile true\ndo\ntrue\ndone\n' > /while && chmod +x /while
|
data/spec/spec_helper.rb
CHANGED
@@ -5,6 +5,16 @@ require 'rspec/its'
|
|
5
5
|
require 'simplecov'
|
6
6
|
require 'docker'
|
7
7
|
|
8
|
+
ENV['DOCKER_API_USER'] ||= 'debbie_docker'
|
9
|
+
ENV['DOCKER_API_PASS'] ||= '*************'
|
10
|
+
ENV['DOCKER_API_EMAIL'] ||= 'debbie_docker@example.com'
|
11
|
+
|
12
|
+
RSpec.shared_context "local paths" do
|
13
|
+
def project_dir
|
14
|
+
File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
8
18
|
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
9
19
|
|
10
20
|
RSpec.configure do |config|
|
data/spec/support/vcr.rb
CHANGED
@@ -1,8 +1,13 @@
|
|
1
1
|
require 'vcr'
|
2
2
|
require 'webmock'
|
3
|
+
require 'docker'
|
3
4
|
|
4
5
|
VCR.configure do |c|
|
5
6
|
c.allow_http_connections_when_no_cassette = false
|
7
|
+
c.filter_sensitive_data('<DOCKER_HOST>') { Docker.url.sub(/tcp\:/, 'https:') }
|
8
|
+
c.filter_sensitive_data('<USERNAME>') { ENV['DOCKER_API_USER'] }
|
9
|
+
c.filter_sensitive_data('<PASSWORD>') { ENV['DOCKER_API_PASS'] }
|
10
|
+
c.filter_sensitive_data('<EMAIL>') { ENV['DOCKER_API_EMAIL'] }
|
6
11
|
c.hook_into :excon, :webmock
|
7
12
|
c.cassette_library_dir = File.join(File.dirname(__FILE__), '..', 'vcr')
|
8
13
|
c.configure_rspec_metadata!
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/auth"
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: '{"username":"
|
8
|
+
string: '{"username":"<USERNAME>","password":"<PASSWORD>","email":"<EMAIL>","serveraddress":"https://index.docker.io/v1/"}'
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.15.0
|
12
12
|
Content-Type:
|
13
13
|
- application/json
|
14
14
|
response:
|
@@ -19,15 +19,13 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Mon, 01 Dec 2014 18:09:05 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '29'
|
25
|
-
Connection:
|
26
|
-
- close
|
27
25
|
body:
|
28
26
|
encoding: UTF-8
|
29
27
|
string: |
|
30
28
|
{"Status":"Login Succeeded"}
|
31
29
|
http_version:
|
32
|
-
recorded_at:
|
33
|
-
recorded_with: VCR 2.9.
|
30
|
+
recorded_at: Mon, 01 Dec 2014 18:09:05 GMT
|
31
|
+
recorded_with: VCR 2.9.3
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri:
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/info"
|
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.15.0
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -21,15 +21,13 @@ http_interactions:
|
|
21
21
|
Job-Name:
|
22
22
|
- info
|
23
23
|
Date:
|
24
|
-
-
|
24
|
+
- Mon, 01 Dec 2014 18:09:04 GMT
|
25
25
|
Content-Length:
|
26
|
-
- '
|
27
|
-
Connection:
|
28
|
-
- close
|
26
|
+
- '490'
|
29
27
|
body:
|
30
28
|
encoding: UTF-8
|
31
29
|
string: |
|
32
|
-
{"Containers":
|
30
|
+
{"Containers":1,"Debug":1,"Driver":"aufs","DriverStatus":[["Root Dir","/mnt/sda1/var/lib/docker/aufs"],["Dirs","73"]],"ExecutionDriver":"native-0.2","IPv4Forwarding":1,"Images":71,"IndexServerAddress":"https://index.docker.io/v1/","InitPath":"/usr/local/bin/docker","InitSha1":"","KernelVersion":"3.16.7-tinycore64","MemoryLimit":1,"NEventsListener":0,"NFd":17,"NGoroutines":58,"OperatingSystem":"Boot2Docker 1.3.2 (TCL 5.4); master : 495c19a - Mon Nov 24 20:40:58 UTC 2014","SwapLimit":1}
|
33
31
|
http_version:
|
34
|
-
recorded_at:
|
35
|
-
recorded_with: VCR 2.9.
|
32
|
+
recorded_at: Mon, 01 Dec 2014 18:09:04 GMT
|
33
|
+
recorded_with: VCR 2.9.3
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri:
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/info"
|
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.15.0
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -21,15 +21,13 @@ http_interactions:
|
|
21
21
|
Job-Name:
|
22
22
|
- info
|
23
23
|
Date:
|
24
|
-
-
|
24
|
+
- Mon, 01 Dec 2014 18:09:05 GMT
|
25
25
|
Content-Length:
|
26
|
-
- '
|
27
|
-
Connection:
|
28
|
-
- close
|
26
|
+
- '490'
|
29
27
|
body:
|
30
28
|
encoding: UTF-8
|
31
29
|
string: |
|
32
|
-
{"Containers":
|
30
|
+
{"Containers":1,"Debug":1,"Driver":"aufs","DriverStatus":[["Root Dir","/mnt/sda1/var/lib/docker/aufs"],["Dirs","73"]],"ExecutionDriver":"native-0.2","IPv4Forwarding":1,"Images":71,"IndexServerAddress":"https://index.docker.io/v1/","InitPath":"/usr/local/bin/docker","InitSha1":"","KernelVersion":"3.16.7-tinycore64","MemoryLimit":1,"NEventsListener":0,"NFd":17,"NGoroutines":58,"OperatingSystem":"Boot2Docker 1.3.2 (TCL 5.4); master : 495c19a - Mon Nov 24 20:40:58 UTC 2014","SwapLimit":1}
|
33
31
|
http_version:
|
34
|
-
recorded_at:
|
35
|
-
recorded_with: VCR 2.9.
|
32
|
+
recorded_at: Mon, 01 Dec 2014 18:09:05 GMT
|
33
|
+
recorded_with: VCR 2.9.3
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri:
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/version"
|
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.15.0
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -21,15 +21,13 @@ http_interactions:
|
|
21
21
|
Job-Name:
|
22
22
|
- version
|
23
23
|
Date:
|
24
|
-
-
|
24
|
+
- Mon, 01 Dec 2014 18:09:04 GMT
|
25
25
|
Content-Length:
|
26
|
-
- '
|
27
|
-
Connection:
|
28
|
-
- close
|
26
|
+
- '148'
|
29
27
|
body:
|
30
28
|
encoding: UTF-8
|
31
29
|
string: |
|
32
|
-
{"ApiVersion":"1.
|
30
|
+
{"ApiVersion":"1.15","Arch":"amd64","GitCommit":"39fa2fa","GoVersion":"go1.3.3","KernelVersion":"3.16.7-tinycore64","Os":"linux","Version":"1.3.2"}
|
33
31
|
http_version:
|
34
|
-
recorded_at:
|
35
|
-
recorded_with: VCR 2.9.
|
32
|
+
recorded_at: Mon, 01 Dec 2014 18:09:04 GMT
|
33
|
+
recorded_with: VCR 2.9.3
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/containers/create"
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: '{"Cmd":["ls"],"Image":"
|
8
|
+
string: '{"Cmd":["ls"],"Image":"debian:wheezy"}'
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.15.0
|
12
12
|
Content-Type:
|
13
13
|
- application/json
|
14
14
|
response:
|
@@ -19,26 +19,24 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Mon, 01 Dec 2014 18:08:21 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '90'
|
25
|
-
Connection:
|
26
|
-
- close
|
27
25
|
body:
|
28
26
|
encoding: UTF-8
|
29
27
|
string: |
|
30
|
-
{"Id":"
|
28
|
+
{"Id":"cd80d30546c64c931d006ca1239a8591dfbb4cf11da5e1a743df787c1ca00805","Warnings":null}
|
31
29
|
http_version:
|
32
|
-
recorded_at:
|
30
|
+
recorded_at: Mon, 01 Dec 2014 18:08:21 GMT
|
33
31
|
- request:
|
34
32
|
method: get
|
35
|
-
uri:
|
33
|
+
uri: "<DOCKER_HOST>/v1.15/containers/json?all=true"
|
36
34
|
body:
|
37
35
|
encoding: US-ASCII
|
38
36
|
string: ''
|
39
37
|
headers:
|
40
38
|
User-Agent:
|
41
|
-
- Swipely/Docker-API 1.
|
39
|
+
- Swipely/Docker-API 1.15.0
|
42
40
|
Content-Type:
|
43
41
|
- text/plain
|
44
42
|
response:
|
@@ -49,83 +47,26 @@ http_interactions:
|
|
49
47
|
Content-Type:
|
50
48
|
- application/json
|
51
49
|
Date:
|
52
|
-
-
|
53
|
-
|
54
|
-
-
|
55
|
-
Transfer-Encoding:
|
56
|
-
- ''
|
50
|
+
- Mon, 01 Dec 2014 18:08:21 GMT
|
51
|
+
Content-Length:
|
52
|
+
- '459'
|
57
53
|
body:
|
58
54
|
encoding: UTF-8
|
59
55
|
string: |-
|
60
|
-
[{"Command":"ls","Created":
|
61
|
-
,{"Command":"
|
62
|
-
,{"Command":"date","Created":1403812098,"Id":"f3b40d5d64c5615c13b8d1301908e94f76b502b629bb96be84b8dbef283f816e","Image":"base:latest","Names":["/boring_almeida"],"Ports":[],"Status":""}
|
63
|
-
,{"Command":"true","Created":1403812050,"Id":"7ab57bdc4f66047b1f2b58ae4c4387c82bce8bf1ce9296924b6854765e858da6","Image":"base:latest","Names":["/sad_brattain"],"Ports":[],"Status":"Exited (0) About a minute ago"}
|
64
|
-
,{"Command":"true","Created":1403812045,"Id":"0d8ae14c085366adfbccb7d6b58da0e49988e357be43d9a369843952ff35f5a4","Image":"base:latest","Names":["/sick_hypatia"],"Ports":[],"Status":"Exited (0) About a minute ago"}
|
65
|
-
,{"Command":"ls","Created":1403812031,"Id":"8add5a1b98de19374296941333822b8ecf6f8971f826e5f0ea98e576c9ba0da6","Image":"d7a1c20ffa41","Names":["/compassionate_archimedes"],"Ports":[],"Status":"Exited (0) About a minute ago"}
|
66
|
-
,{"Command":"pwd","Created":1403812029,"Id":"382d239647f263158ed32a1117a80698fcc7c2041482f512e953286b617310b2","Image":"base:latest","Names":["/jovial_yonath"],"Ports":[],"Status":"Exited (0) About a minute ago"}
|
67
|
-
,{"Command":"lol not a real command","Created":1403812022,"Id":"0530e3918db251d9b8a8ecc24c68afe0b5b34f8f9ccf8b58cf61f7a1d7ecbb2c","Image":"base:latest","Names":["/furious_pike"],"Ports":[],"Status":"Exited (1) About a minute ago"}
|
68
|
-
,{"Command":"sleep 5","Created":1403812001,"Id":"acd7aa98b5ff2e1496f5351b1198442d60fa0e184cb1d14eba16741c5d43e752","Image":"base:latest","Names":["/compassionate_mayer"],"Ports":[],"Status":"Exited (0) 2 minutes ago"}
|
69
|
-
,{"Command":"sleep 5","Created":1403811992,"Id":"4ed54c9a50fc859927ae5d2f5f0b65cd214a20d968b222f12415c4880811d557","Image":"base:latest","Names":["/elegant_wilson"],"Ports":[],"Status":"Exited (0) 2 minutes ago"}
|
70
|
-
,{"Command":"tar nonsense","Created":1403811941,"Id":"e13e22d5a496ef17fe88410461fb25b1e67d4a353838ec4ea9e4a1e83479dd8c","Image":"base:latest","Names":["/sad_elion"],"Ports":[],"Status":"Exited (64) 3 minutes ago"}
|
71
|
-
,{"Command":"sleep 50","Created":1403811922,"Id":"0946fcf9582c5d767717ae0894f7265bb4eaaf9ad4522ea42e6d743e7e27777a","Image":"base:latest","Names":["/jovial_leakey"],"Ports":[],"Status":"Exited (0) 2 minutes ago"}
|
72
|
-
,{"Command":"ls","Created":1403811898,"Id":"e2c48362ec04bb452fbad5c3b863cd7d36a02f609f79bd60c53f177156cb8d89","Image":"base:latest","Names":["/elegant_davinci"],"Ports":[],"Status":""}
|
73
|
-
,{"Command":"true","Created":1403811884,"Id":"51540acbefe569857cb71839e23cd88fe47b56fcc241bcb8af0c4ae7998ef12d","Image":"base:latest","Names":["/condescending_shockley"],"Ports":[],"Status":"Exited (2) 4 minutes ago"}
|
74
|
-
,{"Command":"test -d /foo","Created":1403811874,"Id":"8ca74b5b1eb86837a183544a09672418b8f94ffebfc2e4734b997cc444b90a84","Image":"base:latest","Names":["/sad_bohr"],"Ports":[],"Status":"Exited (0) 4 minutes ago"}
|
75
|
-
,{"Command":"pwd","Created":1403811850,"Id":"f67711bda71de43c2d9998990ee1442023e71ccd30775adcc5e115293351292f","Image":"base:latest","Names":["/distracted_darwin"],"Ports":[],"Status":"Exited (0) 4 minutes ago"}
|
76
|
-
,{"Command":"pwd","Created":1403811845,"Id":"91edd209b1419fd60a4da8e31b1d17d4b060400077b6b00cf855004e28e60cd1","Image":"base:latest","Names":["/naughty_hoover"],"Ports":[],"Status":"Exited (0) 4 minutes ago"}
|
77
|
-
,{"Command":"rm -rf / --no-preserve-root","Created":1403811822,"Id":"ac19ec0a08d3beb57e4eff6e978a6bea402ea2e6cdfd06dd2d8826e24fc1bc22","Image":"base:latest","Names":["/silly_leakey"],"Ports":[],"Status":"Exited (1) 5 minutes ago"}
|
78
|
-
,{"Command":"touch /test","Created":1403811805,"Id":"e94213e6d92bbc20ba9b4fb299902a0edb7e60e78f6183ed39d35c4d0b83f395","Image":"base:latest","Names":["/nostalgic_curie"],"Ports":[],"Status":"Exited (0) 5 minutes ago"}
|
79
|
-
,{"Command":"touch /test","Created":1403811798,"Id":"e36507d15801857e28153923c2968f77112a40aa5df02251ee7ef83d0db9097a","Image":"base:latest","Names":["/sad_shockley"],"Ports":[],"Status":"Exited (0) 5 minutes ago"}
|
80
|
-
,{"Command":"/while","Created":1403811778,"Id":"e3ef53f0c6fc463801a85b9c8d9b2fe348600c2e529c59fa0592da739912224d","Image":"41b70f59d9b6","Names":["/sleepy_yonath"],"Ports":[],"Status":"Up 5 minutes"}
|
81
|
-
,{"Command":"rm -rf /root","Created":1403811759,"Id":"6fc279ae9f0858a7d0fd877f6df7f81e6487848af95712ec9dd1f12e587d24ce","Image":"base:latest","Names":["/trusting_galileo"],"Ports":[],"Status":"Exited (0) 6 minutes ago"}
|
82
|
-
,{"Command":"true","Created":1403811740,"Id":"36912cef208b36a175e7f48dd3bffc5a698f7eb818b7bcbf56343209f8fc473b","Image":"base:latest","Names":["/bob"],"Ports":[],"Status":""}
|
83
|
-
,{"Command":"echo hello","Created":1403811721,"Id":"bcdc58f638d20be4172508fc80d191317628d55f48eeb274abc9de5f9c2761d0","Image":"base:latest","Names":["/grave_bartik"],"Ports":[],"Status":""}
|
84
|
-
,{"Command":"echo hello","Created":1403811717,"Id":"6968a8299df95ffad447a6b364d0cb9cfeb1bcc28d0ef09356f35bdeca57d953","Image":"base:latest","Names":["/goofy_fermat"],"Ports":[],"Status":""}
|
85
|
-
,{"Command":"true","Created":1403811562,"Id":"cf367fe2a4eaf9908dd1f6c6d988b6b7391cebfbe827435ee7204659fa2d6ec1","Image":"base:latest","Names":["/thirsty_nobel"],"Ports":[],"Status":""}
|
86
|
-
,{"Command":"/bin/sh -c 'exec docker-registry'","Created":1403809177,"Id":"5759e35c33773e7a1ecaee390fa7db4097f1030995282da972076979e345c709","Image":"localhost:5000/registry:test","Names":["/stupefied_meitner"],"Ports":[],"Status":"Exited (0) 18 minutes ago"}
|
87
|
-
,{"Command":"/bin/sh -c 'exec docker-registry'","Created":1403809143,"Id":"a36c555f919ec5ccc717cbaf50c655dcc4db776c5bcbb92a4bb05f7e80ca32a1","Image":"localhost:5000/registry:test","Names":["/sharp_turing"],"Ports":[],"Status":"Exited (0) 49 minutes ago"}
|
88
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402430887,"Id":"bb24a1dbb5fa6e7204101e9f0e47c11944d3400d68076c0df9dbec40daef9a5e","Image":"795d6b82162f","Names":["/stupefied_morse"],"Ports":[{"IP":"0.0.0.0","PrivatePort":8080,"PublicPort":8080,"Type":"tcp"}],"Status":"Exited (-1) 2 weeks ago"}
|
89
|
-
,{"Command":"bash","Created":1402430685,"Id":"6123f38072655a1587a67e4a7afc4cd4374a23e2dcc1e0f302ba67902ff2aa6c","Image":"795d6b82162f","Names":["/naughty_shockley"],"Ports":[{"IP":"0.0.0.0","PrivatePort":8080,"PublicPort":8080,"Type":"tcp"}],"Status":"Exited (130) 2 weeks ago"}
|
90
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402430595,"Id":"0cb45d8388407844b0e4c9fc4b691d5a81f27a6ed75ac69c26aa9ebf37d9ecae","Image":"795d6b82162f","Names":["/angry_heisenberg"],"Ports":[{"IP":"0.0.0.0","PrivatePort":8080,"PublicPort":8080,"Type":"tcp"}],"Status":"Exited (-1) 2 weeks ago"}
|
91
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402430547,"Id":"342f632dbf963b429e442b238a236ab3cf91885e71233d853dd2b405e32e4863","Image":"795d6b82162f","Names":["/jolly_heisenberg"],"Ports":[],"Status":"Exited (-1) 2 weeks ago"}
|
92
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402430293,"Id":"3164a68c936d209a2b1e2da323b52e1b043bc17fbd41f06ae8a356bd6c06152b","Image":"24b631358e16","Names":["/agitated_wright"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
93
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402430143,"Id":"33ccfbb00c9717cb24818072db9752401c1e099d7447cf413b9ee571e1bcd012","Image":"2e68e4667d3f","Names":["/determined_bardeen"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
94
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429919,"Id":"cd063c45640ce588466f6d845e5a2fc25921f113a5ccbeefa9317fdcd8ee908a","Image":"76587bc93b7d","Names":["/boring_nobel"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
95
|
-
,{"Command":"/bin/bash","Created":1402429676,"Id":"bbc878209d4d7b98fe044e02ea13850f19d95ce56fb1428de1a81e426e74a735","Image":"76587bc93b7d","Names":["/tender_goldstine"],"Ports":[],"Status":"Exited (1) 2 weeks ago"}
|
96
|
-
,{"Command":"/bin/bash","Created":1402429664,"Id":"1d43aae6eb71e6b402f0df19509420fe15f8c1c097711dd97b9e41d55b6220c7","Image":"76587bc93b7d","Names":["/mad_tesla"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
97
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429649,"Id":"2c6c24d1f0da0d3021c60a9dcd9e648daf6be4a40642ab8cce35480cf931e648","Image":"76587bc93b7d","Names":["/pensive_rosalind"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
98
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429637,"Id":"cf21c9ae97e204c05748a596b3ebd2fc7e5793c33fd9ee787be78a2159d193fe","Image":"76587bc93b7d","Names":["/determined_ardinghelli"],"Ports":[{"IP":"0.0.0.0","PrivatePort":6379,"PublicPort":49160,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
99
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429619,"Id":"217b0f8aa6504f460de1ef2a559a8916c957a079adce597d3deb0c6046f2d7db","Image":"76587bc93b7d","Names":["/grave_torvalds"],"Ports":[{"IP":"0.0.0.0","PrivatePort":6379,"PublicPort":49159,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
100
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429610,"Id":"a7104142e02b3a64bf99e0489ed69eba92aaca2f1cb60ef8221bec7e90099263","Image":"76587bc93b7d","Names":["/thirsty_hoover"],"Ports":[{"IP":"127.0.0.1","PrivatePort":6379,"PublicPort":49158,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
101
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429596,"Id":"18c4d104ba348ae8af2a7f0ebbe1435011570dabcece81b10ba7f735bb52c142","Image":"76587bc93b7d","Names":["/backstabbing_mestorf"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
102
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429583,"Id":"c9e54634fc5c8fb250c9137092e8cc047ab7496655b6d656a6a387b5994e4a3e","Image":"0cf0d2c9f3c9","Names":["/high_goodall"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
103
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429574,"Id":"1900baf794a5734e406ca6226d5a5f62d85f2ad3db0a886654f15e692729741a","Image":"0cf0d2c9f3c9","Names":["/agitated_kirch"],"Ports":[{"IP":"127.0.0.1","PrivatePort":6379,"PublicPort":49157,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
104
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402428859,"Id":"791283f719e9089e4c97ad5ea7096df317c5378db0255a7e9846830f326f11ad","Image":"0cf0d2c9f3c9","Names":["/romantic_fermi"],"Ports":[{"IP":"127.0.0.1","PrivatePort":6379,"PublicPort":49156,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
105
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402427020,"Id":"b32593d5dfb04c83db55e798f52ecc89f57102b5d672cde4f0b55d5f4d3b856c","Image":"0cf0d2c9f3c9","Names":["/naughty_euclid"],"Ports":[{"IP":"127.0.0.1","PrivatePort":6379,"PublicPort":49155,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
106
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402427017,"Id":"cdcab97cd8eeaeb8696024c92e28aedc182b2f3519e4e0445585f8fb501e44eb","Image":"0cf0d2c9f3c9","Names":["/high_lumiere"],"Ports":[],"Status":""}
|
107
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402426976,"Id":"1e095cd0c96b76a1131dd47dc0c54c153200320647ba1643c0b6e4efd397f1b5","Image":"0cf0d2c9f3c9","Names":["/goofy_wozniak"],"Ports":[],"Status":""}
|
108
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402426959,"Id":"53839f4d1e1c26db22b91db8e9ee2477822140c8397ebcdae627b5e4b4df27ce","Image":"0cf0d2c9f3c9","Names":["/drunk_ritchie"],"Ports":[],"Status":""}
|
109
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402426953,"Id":"5906226b2dd64485bc917d7c7296bfba04589b0954fdf793f122236e04d0b58c","Image":"0cf0d2c9f3c9","Names":["/jolly_fermi"],"Ports":[],"Status":""}
|
110
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402426945,"Id":"03ea0209a642de9adba85c2aea67802806eb23de7e9c3d886a9ab9cfcd708578","Image":"0cf0d2c9f3c9","Names":["/loving_wilson"],"Ports":[{"IP":"127.0.0.1","PrivatePort":6379,"PublicPort":49154,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
111
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402426934,"Id":"428e6478f665780fe3300d316b3789c92575bbe728e196b1a33655096dfb9baa","Image":"0cf0d2c9f3c9","Names":["/angry_rosalind"],"Ports":[{"IP":"0.0.0.0","PrivatePort":6379,"PublicPort":49153,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
112
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402426799,"Id":"fc77637ca9d934565017ebe326ed29263778443831b799977257c2fa4255e666","Image":"0cf0d2c9f3c9","Names":["/sharp_lovelace"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
113
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle install'","Created":1402425989,"Id":"dc372caeee6f2d1f797ca4986c1c917aef25285cf0a97f3453a9c8ee6de226ef","Image":"f39385fcb372","Names":["/cocky_galileo"],"Ports":[],"Status":"Exited (5) 2 weeks ago"}
|
114
|
-
,{"Command":"/bin/sh -c 'gem install atomic -v '1.1.10' --no-user-install'","Created":1402425859,"Id":"bff3f8dff516f8ec53890e52e30f07ea6a34887d12de2133e1ec2f03a47e7a33","Image":"e41a4fd75845","Names":["/thirsty_newton"],"Ports":[],"Status":"Exited (1) 2 weeks ago"}
|
115
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle install'","Created":1402425808,"Id":"c7f35941f9683ee1d6b78b25e323d6678ed02a8390b48f7609fd506b7e1dbfe9","Image":"4d1584ae379a","Names":["/stupefied_heisenberg"],"Ports":[],"Status":"Exited (5) 2 weeks ago"}
|
116
|
-
,{"Command":"/bin/sh -c 'gem install bundler --no-user-install'","Created":1402425760,"Id":"e1d25c1ddd9a471fdbc381b95820aba9f84b334efe9b815ffbf63cfca89399d7","Image":"e607630fc5e6","Names":["/insane_fermi"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
56
|
+
[{"Command":"ls","Created":1417457301,"Id":"cd80d30546c64c931d006ca1239a8591dfbb4cf11da5e1a743df787c1ca00805","Image":"debian:wheezy","Names":["/stoic_leakey"],"Ports":[],"Status":""}
|
57
|
+
,{"Command":"docker-registry","Created":1417457257,"Id":"1a8fb3a8c0a99b779389680f7bd5547f5bb1520dfd061932ff6fbef9cc2a7679","Image":"registry:latest","Names":["/registry"],"Ports":[{"IP":"0.0.0.0","PrivatePort":5000,"PublicPort":5000,"Type":"tcp"}],"Status":"Up 43 seconds"}
|
117
58
|
]
|
118
59
|
http_version:
|
119
|
-
recorded_at:
|
60
|
+
recorded_at: Mon, 01 Dec 2014 18:08:21 GMT
|
120
61
|
- request:
|
121
62
|
method: get
|
122
|
-
uri:
|
63
|
+
uri: "<DOCKER_HOST>/v1.15/containers/json?all=true"
|
123
64
|
body:
|
124
65
|
encoding: US-ASCII
|
125
66
|
string: ''
|
126
67
|
headers:
|
127
68
|
User-Agent:
|
128
|
-
- Swipely/Docker-API 1.
|
69
|
+
- Swipely/Docker-API 1.15.0
|
129
70
|
Content-Type:
|
130
71
|
- text/plain
|
131
72
|
response:
|
@@ -136,72 +77,38 @@ http_interactions:
|
|
136
77
|
Content-Type:
|
137
78
|
- application/json
|
138
79
|
Date:
|
139
|
-
-
|
140
|
-
|
141
|
-
-
|
142
|
-
Transfer-Encoding:
|
143
|
-
- ''
|
80
|
+
- Mon, 01 Dec 2014 18:08:21 GMT
|
81
|
+
Content-Length:
|
82
|
+
- '459'
|
144
83
|
body:
|
145
84
|
encoding: UTF-8
|
146
85
|
string: |-
|
147
|
-
[{"Command":"ls","Created":
|
148
|
-
,{"Command":"
|
149
|
-
,{"Command":"date","Created":1403812098,"Id":"f3b40d5d64c5615c13b8d1301908e94f76b502b629bb96be84b8dbef283f816e","Image":"base:latest","Names":["/boring_almeida"],"Ports":[],"Status":""}
|
150
|
-
,{"Command":"true","Created":1403812050,"Id":"7ab57bdc4f66047b1f2b58ae4c4387c82bce8bf1ce9296924b6854765e858da6","Image":"base:latest","Names":["/sad_brattain"],"Ports":[],"Status":"Exited (0) About a minute ago"}
|
151
|
-
,{"Command":"true","Created":1403812045,"Id":"0d8ae14c085366adfbccb7d6b58da0e49988e357be43d9a369843952ff35f5a4","Image":"base:latest","Names":["/sick_hypatia"],"Ports":[],"Status":"Exited (0) About a minute ago"}
|
152
|
-
,{"Command":"ls","Created":1403812031,"Id":"8add5a1b98de19374296941333822b8ecf6f8971f826e5f0ea98e576c9ba0da6","Image":"d7a1c20ffa41","Names":["/compassionate_archimedes"],"Ports":[],"Status":"Exited (0) About a minute ago"}
|
153
|
-
,{"Command":"pwd","Created":1403812029,"Id":"382d239647f263158ed32a1117a80698fcc7c2041482f512e953286b617310b2","Image":"base:latest","Names":["/jovial_yonath"],"Ports":[],"Status":"Exited (0) About a minute ago"}
|
154
|
-
,{"Command":"lol not a real command","Created":1403812022,"Id":"0530e3918db251d9b8a8ecc24c68afe0b5b34f8f9ccf8b58cf61f7a1d7ecbb2c","Image":"base:latest","Names":["/furious_pike"],"Ports":[],"Status":"Exited (1) About a minute ago"}
|
155
|
-
,{"Command":"sleep 5","Created":1403812001,"Id":"acd7aa98b5ff2e1496f5351b1198442d60fa0e184cb1d14eba16741c5d43e752","Image":"base:latest","Names":["/compassionate_mayer"],"Ports":[],"Status":"Exited (0) 2 minutes ago"}
|
156
|
-
,{"Command":"sleep 5","Created":1403811992,"Id":"4ed54c9a50fc859927ae5d2f5f0b65cd214a20d968b222f12415c4880811d557","Image":"base:latest","Names":["/elegant_wilson"],"Ports":[],"Status":"Exited (0) 2 minutes ago"}
|
157
|
-
,{"Command":"tar nonsense","Created":1403811941,"Id":"e13e22d5a496ef17fe88410461fb25b1e67d4a353838ec4ea9e4a1e83479dd8c","Image":"base:latest","Names":["/sad_elion"],"Ports":[],"Status":"Exited (64) 3 minutes ago"}
|
158
|
-
,{"Command":"sleep 50","Created":1403811922,"Id":"0946fcf9582c5d767717ae0894f7265bb4eaaf9ad4522ea42e6d743e7e27777a","Image":"base:latest","Names":["/jovial_leakey"],"Ports":[],"Status":"Exited (0) 2 minutes ago"}
|
159
|
-
,{"Command":"ls","Created":1403811898,"Id":"e2c48362ec04bb452fbad5c3b863cd7d36a02f609f79bd60c53f177156cb8d89","Image":"base:latest","Names":["/elegant_davinci"],"Ports":[],"Status":""}
|
160
|
-
,{"Command":"true","Created":1403811884,"Id":"51540acbefe569857cb71839e23cd88fe47b56fcc241bcb8af0c4ae7998ef12d","Image":"base:latest","Names":["/condescending_shockley"],"Ports":[],"Status":"Exited (2) 4 minutes ago"}
|
161
|
-
,{"Command":"test -d /foo","Created":1403811874,"Id":"8ca74b5b1eb86837a183544a09672418b8f94ffebfc2e4734b997cc444b90a84","Image":"base:latest","Names":["/sad_bohr"],"Ports":[],"Status":"Exited (0) 4 minutes ago"}
|
162
|
-
,{"Command":"pwd","Created":1403811850,"Id":"f67711bda71de43c2d9998990ee1442023e71ccd30775adcc5e115293351292f","Image":"base:latest","Names":["/distracted_darwin"],"Ports":[],"Status":"Exited (0) 4 minutes ago"}
|
163
|
-
,{"Command":"pwd","Created":1403811845,"Id":"91edd209b1419fd60a4da8e31b1d17d4b060400077b6b00cf855004e28e60cd1","Image":"base:latest","Names":["/naughty_hoover"],"Ports":[],"Status":"Exited (0) 4 minutes ago"}
|
164
|
-
,{"Command":"rm -rf / --no-preserve-root","Created":1403811822,"Id":"ac19ec0a08d3beb57e4eff6e978a6bea402ea2e6cdfd06dd2d8826e24fc1bc22","Image":"base:latest","Names":["/silly_leakey"],"Ports":[],"Status":"Exited (1) 5 minutes ago"}
|
165
|
-
,{"Command":"touch /test","Created":1403811805,"Id":"e94213e6d92bbc20ba9b4fb299902a0edb7e60e78f6183ed39d35c4d0b83f395","Image":"base:latest","Names":["/nostalgic_curie"],"Ports":[],"Status":"Exited (0) 5 minutes ago"}
|
166
|
-
,{"Command":"touch /test","Created":1403811798,"Id":"e36507d15801857e28153923c2968f77112a40aa5df02251ee7ef83d0db9097a","Image":"base:latest","Names":["/sad_shockley"],"Ports":[],"Status":"Exited (0) 5 minutes ago"}
|
167
|
-
,{"Command":"/while","Created":1403811778,"Id":"e3ef53f0c6fc463801a85b9c8d9b2fe348600c2e529c59fa0592da739912224d","Image":"41b70f59d9b6","Names":["/sleepy_yonath"],"Ports":[],"Status":"Up 5 minutes"}
|
168
|
-
,{"Command":"rm -rf /root","Created":1403811759,"Id":"6fc279ae9f0858a7d0fd877f6df7f81e6487848af95712ec9dd1f12e587d24ce","Image":"base:latest","Names":["/trusting_galileo"],"Ports":[],"Status":"Exited (0) 6 minutes ago"}
|
169
|
-
,{"Command":"true","Created":1403811740,"Id":"36912cef208b36a175e7f48dd3bffc5a698f7eb818b7bcbf56343209f8fc473b","Image":"base:latest","Names":["/bob"],"Ports":[],"Status":""}
|
170
|
-
,{"Command":"echo hello","Created":1403811721,"Id":"bcdc58f638d20be4172508fc80d191317628d55f48eeb274abc9de5f9c2761d0","Image":"base:latest","Names":["/grave_bartik"],"Ports":[],"Status":""}
|
171
|
-
,{"Command":"echo hello","Created":1403811717,"Id":"6968a8299df95ffad447a6b364d0cb9cfeb1bcc28d0ef09356f35bdeca57d953","Image":"base:latest","Names":["/goofy_fermat"],"Ports":[],"Status":""}
|
172
|
-
,{"Command":"true","Created":1403811562,"Id":"cf367fe2a4eaf9908dd1f6c6d988b6b7391cebfbe827435ee7204659fa2d6ec1","Image":"base:latest","Names":["/thirsty_nobel"],"Ports":[],"Status":""}
|
173
|
-
,{"Command":"/bin/sh -c 'exec docker-registry'","Created":1403809177,"Id":"5759e35c33773e7a1ecaee390fa7db4097f1030995282da972076979e345c709","Image":"localhost:5000/registry:test","Names":["/stupefied_meitner"],"Ports":[],"Status":"Exited (0) 18 minutes ago"}
|
174
|
-
,{"Command":"/bin/sh -c 'exec docker-registry'","Created":1403809143,"Id":"a36c555f919ec5ccc717cbaf50c655dcc4db776c5bcbb92a4bb05f7e80ca32a1","Image":"localhost:5000/registry:test","Names":["/sharp_turing"],"Ports":[],"Status":"Exited (0) 49 minutes ago"}
|
175
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402430887,"Id":"bb24a1dbb5fa6e7204101e9f0e47c11944d3400d68076c0df9dbec40daef9a5e","Image":"795d6b82162f","Names":["/stupefied_morse"],"Ports":[{"IP":"0.0.0.0","PrivatePort":8080,"PublicPort":8080,"Type":"tcp"}],"Status":"Exited (-1) 2 weeks ago"}
|
176
|
-
,{"Command":"bash","Created":1402430685,"Id":"6123f38072655a1587a67e4a7afc4cd4374a23e2dcc1e0f302ba67902ff2aa6c","Image":"795d6b82162f","Names":["/naughty_shockley"],"Ports":[{"IP":"0.0.0.0","PrivatePort":8080,"PublicPort":8080,"Type":"tcp"}],"Status":"Exited (130) 2 weeks ago"}
|
177
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402430595,"Id":"0cb45d8388407844b0e4c9fc4b691d5a81f27a6ed75ac69c26aa9ebf37d9ecae","Image":"795d6b82162f","Names":["/angry_heisenberg"],"Ports":[{"IP":"0.0.0.0","PrivatePort":8080,"PublicPort":8080,"Type":"tcp"}],"Status":"Exited (-1) 2 weeks ago"}
|
178
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402430547,"Id":"342f632dbf963b429e442b238a236ab3cf91885e71233d853dd2b405e32e4863","Image":"795d6b82162f","Names":["/jolly_heisenberg"],"Ports":[],"Status":"Exited (-1) 2 weeks ago"}
|
179
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402430293,"Id":"3164a68c936d209a2b1e2da323b52e1b043bc17fbd41f06ae8a356bd6c06152b","Image":"24b631358e16","Names":["/agitated_wright"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
180
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402430143,"Id":"33ccfbb00c9717cb24818072db9752401c1e099d7447cf413b9ee571e1bcd012","Image":"2e68e4667d3f","Names":["/determined_bardeen"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
181
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429919,"Id":"cd063c45640ce588466f6d845e5a2fc25921f113a5ccbeefa9317fdcd8ee908a","Image":"76587bc93b7d","Names":["/boring_nobel"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
182
|
-
,{"Command":"/bin/bash","Created":1402429676,"Id":"bbc878209d4d7b98fe044e02ea13850f19d95ce56fb1428de1a81e426e74a735","Image":"76587bc93b7d","Names":["/tender_goldstine"],"Ports":[],"Status":"Exited (1) 2 weeks ago"}
|
183
|
-
,{"Command":"/bin/bash","Created":1402429664,"Id":"1d43aae6eb71e6b402f0df19509420fe15f8c1c097711dd97b9e41d55b6220c7","Image":"76587bc93b7d","Names":["/mad_tesla"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
184
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429649,"Id":"2c6c24d1f0da0d3021c60a9dcd9e648daf6be4a40642ab8cce35480cf931e648","Image":"76587bc93b7d","Names":["/pensive_rosalind"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
185
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429637,"Id":"cf21c9ae97e204c05748a596b3ebd2fc7e5793c33fd9ee787be78a2159d193fe","Image":"76587bc93b7d","Names":["/determined_ardinghelli"],"Ports":[{"IP":"0.0.0.0","PrivatePort":6379,"PublicPort":49160,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
186
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429619,"Id":"217b0f8aa6504f460de1ef2a559a8916c957a079adce597d3deb0c6046f2d7db","Image":"76587bc93b7d","Names":["/grave_torvalds"],"Ports":[{"IP":"0.0.0.0","PrivatePort":6379,"PublicPort":49159,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
187
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429610,"Id":"a7104142e02b3a64bf99e0489ed69eba92aaca2f1cb60ef8221bec7e90099263","Image":"76587bc93b7d","Names":["/thirsty_hoover"],"Ports":[{"IP":"127.0.0.1","PrivatePort":6379,"PublicPort":49158,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
188
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429596,"Id":"18c4d104ba348ae8af2a7f0ebbe1435011570dabcece81b10ba7f735bb52c142","Image":"76587bc93b7d","Names":["/backstabbing_mestorf"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
189
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429583,"Id":"c9e54634fc5c8fb250c9137092e8cc047ab7496655b6d656a6a387b5994e4a3e","Image":"0cf0d2c9f3c9","Names":["/high_goodall"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
190
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402429574,"Id":"1900baf794a5734e406ca6226d5a5f62d85f2ad3db0a886654f15e692729741a","Image":"0cf0d2c9f3c9","Names":["/agitated_kirch"],"Ports":[{"IP":"127.0.0.1","PrivatePort":6379,"PublicPort":49157,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
191
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402428859,"Id":"791283f719e9089e4c97ad5ea7096df317c5378db0255a7e9846830f326f11ad","Image":"0cf0d2c9f3c9","Names":["/romantic_fermi"],"Ports":[{"IP":"127.0.0.1","PrivatePort":6379,"PublicPort":49156,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
192
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402427020,"Id":"b32593d5dfb04c83db55e798f52ecc89f57102b5d672cde4f0b55d5f4d3b856c","Image":"0cf0d2c9f3c9","Names":["/naughty_euclid"],"Ports":[{"IP":"127.0.0.1","PrivatePort":6379,"PublicPort":49155,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
193
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402427017,"Id":"cdcab97cd8eeaeb8696024c92e28aedc182b2f3519e4e0445585f8fb501e44eb","Image":"0cf0d2c9f3c9","Names":["/high_lumiere"],"Ports":[],"Status":""}
|
194
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402426976,"Id":"1e095cd0c96b76a1131dd47dc0c54c153200320647ba1643c0b6e4efd397f1b5","Image":"0cf0d2c9f3c9","Names":["/goofy_wozniak"],"Ports":[],"Status":""}
|
195
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402426959,"Id":"53839f4d1e1c26db22b91db8e9ee2477822140c8397ebcdae627b5e4b4df27ce","Image":"0cf0d2c9f3c9","Names":["/drunk_ritchie"],"Ports":[],"Status":""}
|
196
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402426953,"Id":"5906226b2dd64485bc917d7c7296bfba04589b0954fdf793f122236e04d0b58c","Image":"0cf0d2c9f3c9","Names":["/jolly_fermi"],"Ports":[],"Status":""}
|
197
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402426945,"Id":"03ea0209a642de9adba85c2aea67802806eb23de7e9c3d886a9ab9cfcd708578","Image":"0cf0d2c9f3c9","Names":["/loving_wilson"],"Ports":[{"IP":"127.0.0.1","PrivatePort":6379,"PublicPort":49154,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
198
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402426934,"Id":"428e6478f665780fe3300d316b3789c92575bbe728e196b1a33655096dfb9baa","Image":"0cf0d2c9f3c9","Names":["/angry_rosalind"],"Ports":[{"IP":"0.0.0.0","PrivatePort":6379,"PublicPort":49153,"Type":"tcp"}],"Status":"Exited (0) 2 weeks ago"}
|
199
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle exec foreman start'","Created":1402426799,"Id":"fc77637ca9d934565017ebe326ed29263778443831b799977257c2fa4255e666","Image":"0cf0d2c9f3c9","Names":["/sharp_lovelace"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
200
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle install'","Created":1402425989,"Id":"dc372caeee6f2d1f797ca4986c1c917aef25285cf0a97f3453a9c8ee6de226ef","Image":"f39385fcb372","Names":["/cocky_galileo"],"Ports":[],"Status":"Exited (5) 2 weeks ago"}
|
201
|
-
,{"Command":"/bin/sh -c 'gem install atomic -v '1.1.10' --no-user-install'","Created":1402425859,"Id":"bff3f8dff516f8ec53890e52e30f07ea6a34887d12de2133e1ec2f03a47e7a33","Image":"e41a4fd75845","Names":["/thirsty_newton"],"Ports":[],"Status":"Exited (1) 2 weeks ago"}
|
202
|
-
,{"Command":"/bin/sh -c 'cd /app \u0026\u0026 bundle install'","Created":1402425808,"Id":"c7f35941f9683ee1d6b78b25e323d6678ed02a8390b48f7609fd506b7e1dbfe9","Image":"4d1584ae379a","Names":["/stupefied_heisenberg"],"Ports":[],"Status":"Exited (5) 2 weeks ago"}
|
203
|
-
,{"Command":"/bin/sh -c 'gem install bundler --no-user-install'","Created":1402425760,"Id":"e1d25c1ddd9a471fdbc381b95820aba9f84b334efe9b815ffbf63cfca89399d7","Image":"e607630fc5e6","Names":["/insane_fermi"],"Ports":[],"Status":"Exited (0) 2 weeks ago"}
|
86
|
+
[{"Command":"ls","Created":1417457301,"Id":"cd80d30546c64c931d006ca1239a8591dfbb4cf11da5e1a743df787c1ca00805","Image":"debian:wheezy","Names":["/stoic_leakey"],"Ports":[],"Status":""}
|
87
|
+
,{"Command":"docker-registry","Created":1417457257,"Id":"1a8fb3a8c0a99b779389680f7bd5547f5bb1520dfd061932ff6fbef9cc2a7679","Image":"registry:latest","Names":["/registry"],"Ports":[{"IP":"0.0.0.0","PrivatePort":5000,"PublicPort":5000,"Type":"tcp"}],"Status":"Up 43 seconds"}
|
204
88
|
]
|
205
89
|
http_version:
|
206
|
-
recorded_at:
|
207
|
-
|
90
|
+
recorded_at: Mon, 01 Dec 2014 18:08:21 GMT
|
91
|
+
- request:
|
92
|
+
method: delete
|
93
|
+
uri: "<DOCKER_HOST>/v1.15/containers/cd80d30546c64c931d006ca1239a8591dfbb4cf11da5e1a743df787c1ca00805"
|
94
|
+
body:
|
95
|
+
encoding: US-ASCII
|
96
|
+
string: ''
|
97
|
+
headers:
|
98
|
+
User-Agent:
|
99
|
+
- Swipely/Docker-API 1.15.0
|
100
|
+
Content-Type:
|
101
|
+
- text/plain
|
102
|
+
response:
|
103
|
+
status:
|
104
|
+
code: 204
|
105
|
+
message:
|
106
|
+
headers:
|
107
|
+
Date:
|
108
|
+
- Mon, 01 Dec 2014 18:08:21 GMT
|
109
|
+
body:
|
110
|
+
encoding: UTF-8
|
111
|
+
string: ''
|
112
|
+
http_version:
|
113
|
+
recorded_at: Mon, 01 Dec 2014 18:08:21 GMT
|
114
|
+
recorded_with: VCR 2.9.3
|