docker-api 1.9.1 → 1.10.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 +5 -5
- data/lib/docker/container.rb +20 -3
- data/lib/docker/image.rb +2 -2
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +3 -3
- data/spec/docker/image_spec.rb +1 -1
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +1 -1
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +6 -6
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +6 -6
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +6 -6
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +63 -93
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +12 -12
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +12 -12
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +4 -4
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +14 -14
- data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +9 -9
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +21 -21
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +22 -22
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +11 -11
- data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +5 -5
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +17 -15
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +3 -3
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +11 -11
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +11 -11
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +34 -47
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +39 -35
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +15 -15
- 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 +37 -37
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +20 -19
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +37 -50
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +26 -115
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +15 -15
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +9 -9
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +13 -13
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +29 -15
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +5 -5
- 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 +28 -20
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +5 -5
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +5 -5
- 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 +6 -6
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +18 -19
- 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 +39 -31
- data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id.yml +4 -4
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +4 -4
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +8 -8
- data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +26 -209
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +51 -35
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +90 -40
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +26 -26
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +5 -5
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +28 -28
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +8 -8
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +49 -33
- data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +25 -18
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +16 -16
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +16 -16
- 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 +8 -8
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +24 -23
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +8 -8
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae38f1bdc602ab9802d9681ab1aae61806e482a5
|
4
|
+
data.tar.gz: d4bc1943fcb11a86c7cf70c51bcdfb461c7dad3c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e1146df6a6f745a76826ccf44267eaa4c7832bafb2e95e51e73662bce61dff5e4cc4cd4c580bf4f7572cc83ea4c79fd2801e69c2ffc44387bd898c308553749
|
7
|
+
data.tar.gz: 0274c606ef879b2bde32251550a3dbbd3b0f83499ef53caecf6461ae903ac288dbb8978d953c9228f4f4e80aaafd788245efc17cfb5f7382b4bc95a3ef606f6a
|
data/README.md
CHANGED
@@ -4,7 +4,7 @@ docker-api
|
|
4
4
|
|
5
5
|
This gem provides an object-oriented interface to the [Docker Remote API](http://docs.docker.io/en/latest/api/docker_remote_api_v1.4/). Every method listed there is implemented, with the exception of attaching to the STDIN of a Container. At the time of this writing, docker-api is meant to interface with Docker version 0.8.*.
|
6
6
|
|
7
|
-
If you're interested in using Docker to package your apps, we
|
7
|
+
If you're interested in using Docker to package your apps, we recommend the [dockly](https://github.com/swipely/dockly) gem. Dockly provides a simple DSL for describing Docker containers that install as Debian packages and are controlled by upstart scripts.
|
8
8
|
|
9
9
|
Installation
|
10
10
|
------------
|
@@ -32,7 +32,7 @@ Finally, just add `require 'docker'` to the top of the file using this gem.
|
|
32
32
|
Usage
|
33
33
|
-----
|
34
34
|
|
35
|
-
docker-api is designed to be very lightweight. Almost no state is cached (aside from id's which are immutable) to ensure that each method call's information is up to date. As such, just about every
|
35
|
+
docker-api is designed to be very lightweight. Almost no state is cached (aside from id's which are immutable) to ensure that each method call's information is up to date. As such, just about every external method represents an API call.
|
36
36
|
|
37
37
|
## Starting up
|
38
38
|
|
@@ -50,7 +50,7 @@ If you're running Docker locally as a socket, there is no setup to do in Ruby. I
|
|
50
50
|
Docker.url = 'http://example.com:5422'
|
51
51
|
```
|
52
52
|
|
53
|
-
Two things to note here. The first is that this gem uses [excon](http://www.github.com/geemus/excon), so any of the options that are valid for `Excon.new` are
|
53
|
+
Two things to note here. The first is that this gem uses [excon](http://www.github.com/geemus/excon), so any of the options that are valid for `Excon.new` are also valid for `Docker.options`. Second, by default Docker runs on a socket. The gem will assume you want to connect to the socket unless you specify otherwise.
|
54
54
|
|
55
55
|
Also, you may set the above variables via `ENV` variables. For example:
|
56
56
|
|
@@ -140,7 +140,7 @@ image.run('ls -l')
|
|
140
140
|
# => Docker::Container { id => aaef712eda, :connection => Docker::Connection { :url => http://localhost, :options => {:port=>4243} } }
|
141
141
|
|
142
142
|
# Remove the Image from the server.
|
143
|
-
image.remove
|
143
|
+
image.remove(:force => true)
|
144
144
|
# => true
|
145
145
|
|
146
146
|
# Given a Container's export, creates a new Image.
|
@@ -247,7 +247,7 @@ container.run('pwd', 10)
|
|
247
247
|
# => Docker::Image { :id => 4427be4199ac, :connection => Docker::Connection { :url => http://localhost, :options => {:port=>4243} } }
|
248
248
|
|
249
249
|
# Delete a Container.
|
250
|
-
container.delete
|
250
|
+
container.delete(:force => true)
|
251
251
|
# => nil
|
252
252
|
|
253
253
|
# Request a Container by ID or name.
|
data/lib/docker/container.rb
CHANGED
@@ -78,10 +78,10 @@ class Docker::Container < Docker::Base
|
|
78
78
|
end
|
79
79
|
end
|
80
80
|
|
81
|
-
# #start
|
82
|
-
# return the Container. #start
|
81
|
+
# #start! and #kill! both perform the associated action and
|
82
|
+
# return the Container. #start and #kill do the same,
|
83
83
|
# but rescue from ServerErrors.
|
84
|
-
[:start, :
|
84
|
+
[:start, :kill].each do |method|
|
85
85
|
define_method(:"#{method}!") do |opts = {}|
|
86
86
|
connection.post(path_for(method), {}, :body => opts.to_json)
|
87
87
|
self
|
@@ -92,6 +92,23 @@ class Docker::Container < Docker::Base
|
|
92
92
|
end
|
93
93
|
end
|
94
94
|
|
95
|
+
# #stop! and #restart! both perform the associated action and
|
96
|
+
# return the Container. #stop and #restart do the same,
|
97
|
+
# but rescue from ServerErrors.
|
98
|
+
[:stop, :restart].each do |method|
|
99
|
+
define_method(:"#{method}!") do |opts = {}|
|
100
|
+
timeout = opts.delete('timeout')
|
101
|
+
query = {}
|
102
|
+
query['t'] = timeout if timeout
|
103
|
+
connection.post(path_for(method), query, :body => opts.to_json)
|
104
|
+
self
|
105
|
+
end
|
106
|
+
|
107
|
+
define_method(method) do |*args|
|
108
|
+
begin; public_send(:"#{method}!", *args); rescue ServerError; self end
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
95
112
|
# remove container
|
96
113
|
def remove(options = {})
|
97
114
|
connection.delete("/containers/#{self.id}", options)
|
data/lib/docker/image.rb
CHANGED
@@ -73,8 +73,8 @@ class Docker::Image < Docker::Base
|
|
73
73
|
end
|
74
74
|
|
75
75
|
# Remove the Image from the server.
|
76
|
-
def remove
|
77
|
-
connection.delete("/images/#{self.id}")
|
76
|
+
def remove(opts = {})
|
77
|
+
connection.delete("/images/#{self.id}", opts)
|
78
78
|
end
|
79
79
|
alias_method :delete, :remove
|
80
80
|
|
data/lib/docker/version.rb
CHANGED
@@ -194,7 +194,7 @@ describe Docker::Container do
|
|
194
194
|
describe '#stop' do
|
195
195
|
subject { described_class.create('Cmd' => %w[true], 'Image' => 'base') }
|
196
196
|
|
197
|
-
before { subject.tap(&:start).stop }
|
197
|
+
before { subject.tap(&:start).stop('timeout' => '10') }
|
198
198
|
|
199
199
|
it 'stops the container', :vcr do
|
200
200
|
described_class.all(:all => true).map(&:id).should be_any { |id|
|
@@ -224,7 +224,7 @@ describe Docker::Container do
|
|
224
224
|
subject { described_class.create('Cmd' => ['ls'], 'Image' => 'base') }
|
225
225
|
|
226
226
|
it 'deletes the container', :vcr do
|
227
|
-
subject.delete
|
227
|
+
subject.delete(:force => true)
|
228
228
|
described_class.all.map(&:id).should be_none { |id|
|
229
229
|
id.start_with?(subject.id)
|
230
230
|
}
|
@@ -244,7 +244,7 @@ describe Docker::Container do
|
|
244
244
|
described_class.all.map(&:id).should be_none { |id|
|
245
245
|
id.start_with?(subject.id)
|
246
246
|
}
|
247
|
-
subject.restart
|
247
|
+
subject.restart('timeout' => '10')
|
248
248
|
described_class.all.map(&:id).should be_any { |id|
|
249
249
|
id.start_with?(subject.id)
|
250
250
|
}
|
data/spec/docker/image_spec.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.10/auth
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
8
|
string: "{\"username\":\"test\",\"password\":\"account\",\"email\":\"test@test.com\",\"serveraddress\":\"https://index.docker.io/v1/\"}"
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.10/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.9.1
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -21,15 +21,15 @@ http_interactions:
|
|
21
21
|
Job-Name:
|
22
22
|
- info
|
23
23
|
Date:
|
24
|
-
-
|
24
|
+
- Wed, 12 Mar 2014 13:32:20 GMT
|
25
25
|
Content-Length:
|
26
|
-
- '
|
26
|
+
- '693'
|
27
27
|
Connection:
|
28
28
|
- close
|
29
29
|
body:
|
30
30
|
encoding: UTF-8
|
31
31
|
string: |
|
32
|
-
{"Containers":
|
32
|
+
{"Containers":39,"Debug":0,"Driver":"devicemapper","DriverStatus":[["Pool Name","docker-8:4-12104-pool"],["Data file","/var/lib/docker/devicemapper/devicemapper/data"],["Metadata file","/var/lib/docker/devicemapper/devicemapper/metadata"],["Data Space Used","1631.1 Mb"],["Data Space Total","102400.0 Mb"],["Metadata Space Used","4.1 Mb"],["Metadata Space Total","2048.0 Mb"]],"ExecutionDriver":"native-0.1","IPv4Forwarding":1,"Images":25,"IndexServerAddress":"https://index.docker.io/v1/","InitPath":"/usr/lib/docker/dockerinit","InitSha1":"df6aa6b00e1e829a422f1a761d0fab5425291e07","KernelVersion":"3.13.6-1-ARCH","MemoryLimit":1,"NEventsListener":0,"NFd":20,"NGoroutines":20,"SwapLimit":0}
|
33
33
|
http_version:
|
34
|
-
recorded_at:
|
34
|
+
recorded_at: Wed, 12 Mar 2014 13:32:20 GMT
|
35
35
|
recorded_with: VCR 2.8.0
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.10/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.9.1
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -21,15 +21,15 @@ http_interactions:
|
|
21
21
|
Job-Name:
|
22
22
|
- info
|
23
23
|
Date:
|
24
|
-
-
|
24
|
+
- Wed, 12 Mar 2014 13:32:21 GMT
|
25
25
|
Content-Length:
|
26
|
-
- '
|
26
|
+
- '693'
|
27
27
|
Connection:
|
28
28
|
- close
|
29
29
|
body:
|
30
30
|
encoding: UTF-8
|
31
31
|
string: |
|
32
|
-
{"Containers":
|
32
|
+
{"Containers":39,"Debug":0,"Driver":"devicemapper","DriverStatus":[["Pool Name","docker-8:4-12104-pool"],["Data file","/var/lib/docker/devicemapper/devicemapper/data"],["Metadata file","/var/lib/docker/devicemapper/devicemapper/metadata"],["Data Space Used","1631.8 Mb"],["Data Space Total","102400.0 Mb"],["Metadata Space Used","4.1 Mb"],["Metadata Space Total","2048.0 Mb"]],"ExecutionDriver":"native-0.1","IPv4Forwarding":1,"Images":25,"IndexServerAddress":"https://index.docker.io/v1/","InitPath":"/usr/lib/docker/dockerinit","InitSha1":"df6aa6b00e1e829a422f1a761d0fab5425291e07","KernelVersion":"3.13.6-1-ARCH","MemoryLimit":1,"NEventsListener":0,"NFd":19,"NGoroutines":19,"SwapLimit":0}
|
33
33
|
http_version:
|
34
|
-
recorded_at:
|
34
|
+
recorded_at: Wed, 12 Mar 2014 13:32:21 GMT
|
35
35
|
recorded_with: VCR 2.8.0
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.10/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.9.1
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -21,15 +21,15 @@ http_interactions:
|
|
21
21
|
Job-Name:
|
22
22
|
- version
|
23
23
|
Date:
|
24
|
-
-
|
24
|
+
- Wed, 12 Mar 2014 13:32:20 GMT
|
25
25
|
Content-Length:
|
26
|
-
- '
|
26
|
+
- '128'
|
27
27
|
Connection:
|
28
28
|
- close
|
29
29
|
body:
|
30
30
|
encoding: UTF-8
|
31
31
|
string: |
|
32
|
-
{"Arch":"amd64","GitCommit":"
|
32
|
+
{"Arch":"amd64","GitCommit":"b5a544b","GoVersion":"go1.2.1","KernelVersion":"3.13.6-1-ARCH","Os":"linux","Version":"0.9.0-dev"}
|
33
33
|
http_version:
|
34
|
-
recorded_at:
|
34
|
+
recorded_at: Wed, 12 Mar 2014 13:32:20 GMT
|
35
35
|
recorded_with: VCR 2.8.0
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/create
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
8
|
string: "{\"Cmd\":[\"ls\"],\"Image\":\"base\"}"
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.9.1
|
12
12
|
Content-Type:
|
13
13
|
- application/json
|
14
14
|
response:
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Wed, 12 Mar 2014 13:31:47 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '90'
|
25
25
|
Connection:
|
@@ -27,18 +27,18 @@ http_interactions:
|
|
27
27
|
body:
|
28
28
|
encoding: UTF-8
|
29
29
|
string: |
|
30
|
-
{"Id":"
|
30
|
+
{"Id":"96dc9815df319fb1e8a01647bcade9eccf5b8fe0bf6f1c906409adc5063391bd","Warnings":null}
|
31
31
|
http_version:
|
32
|
-
recorded_at:
|
32
|
+
recorded_at: Wed, 12 Mar 2014 13:31:47 GMT
|
33
33
|
- request:
|
34
34
|
method: get
|
35
|
-
uri: unix:///var/run/docker.sock/v1.
|
35
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/json?all=true
|
36
36
|
body:
|
37
37
|
encoding: US-ASCII
|
38
38
|
string: ''
|
39
39
|
headers:
|
40
40
|
User-Agent:
|
41
|
-
- Swipely/Docker-API 1.
|
41
|
+
- Swipely/Docker-API 1.9.1
|
42
42
|
Content-Type:
|
43
43
|
- text/plain
|
44
44
|
response:
|
@@ -49,7 +49,7 @@ http_interactions:
|
|
49
49
|
Content-Type:
|
50
50
|
- application/json
|
51
51
|
Date:
|
52
|
-
-
|
52
|
+
- Wed, 12 Mar 2014 13:31:47 GMT
|
53
53
|
Connection:
|
54
54
|
- close
|
55
55
|
Transfer-Encoding:
|
@@ -57,58 +57,43 @@ http_interactions:
|
|
57
57
|
body:
|
58
58
|
encoding: UTF-8
|
59
59
|
string: |-
|
60
|
-
[{"Command":"ls
|
61
|
-
,{"Command":"ls
|
62
|
-
,{"Command":"date
|
63
|
-
,{"Command":true,"Created":
|
64
|
-
,{"Command":true,"Created":
|
65
|
-
,{"Command":"ls
|
66
|
-
,{"Command":"pwd
|
67
|
-
,{"Command":"lol not a real command","Created":
|
68
|
-
,{"Command":"sleep 5","Created":
|
69
|
-
,{"Command":"sleep 5","Created":
|
70
|
-
,{"Command":"tar nonsense","Created":
|
71
|
-
,{"Command":"sleep 50","Created":
|
72
|
-
,{"Command":"ls
|
73
|
-
,{"Command":true,"Created":
|
74
|
-
,{"Command":"test -d /foo","Created":
|
75
|
-
,{"Command":"pwd
|
76
|
-
,{"Command":"pwd
|
77
|
-
,{"Command":"rm -rf / --no-preserve-root","Created":
|
78
|
-
,{"Command":"touch /test","Created":
|
79
|
-
,{"Command":"touch /test","Created":
|
80
|
-
,{"Command":"/
|
81
|
-
,{"Command":"
|
82
|
-
,{"Command":
|
83
|
-
,{"Command":true,"Created":
|
84
|
-
,{"Command":"
|
85
|
-
,{"Command":"cat /Dockerfile","Created":1393623607,"Id":"979c4db1554a66bd9625a5d960f16203ce645037a7f63bd5d3ac0e12a4f4aa85","Image":"swipely/base2:latest","Names":["/loving_brown"],"Ports":[],"Status":"Exit 0"}
|
86
|
-
,{"Command":"cat /Dockerfile","Created":1393623015,"Id":"14500692e1e383d1bfadcc4fac538e80a2fa38481a1e8892414034b83d25dc34","Image":"swipely/base2:latest","Names":["/trusting_thompson"],"Ports":[],"Status":"Exit 0"}
|
87
|
-
,{"Command":"cat /Dockerfile","Created":1393623014,"Id":"964080fb57a7e4694307d79acbf5e1426f39d196cd73963906f11ccb46c1170a","Image":"swipely/base2:latest","Names":["/mad_feynman"],"Ports":[],"Status":"Exit 0"}
|
88
|
-
,{"Command":"/bin/sh -c #(nop) ADD dir:1eb775e654a108ecfb3725cc351728601c0031d180071f124b1510620d5ee9b5 in /","Created":1393623012,"Id":"00d9d33e18df5c676755ebeed569a056d5fdabc9cd25acb2b9fcc44da2bd8df5","Image":"base2:latest","Names":["/agitated_curie"],"Ports":[],"Status":"Exit 0"}
|
89
|
-
,{"Command":"/bin/sh -c true","Created":1393623009,"Id":"a2640209c447eb3a54d89f0c5614ed09444fe2f1badb5c3d81cbe46f697a7974","Image":"base2:latest","Names":["/clever_pike"],"Ports":[],"Status":"Exit 0"}
|
90
|
-
,{"Command":"which pwd","Created":1393623004,"Id":"54e5d38edb25f0294cc9011e557282d71ee6c8f88f588dd4efe6ffe609287fa0","Image":"base2:latest","Names":["/jolly_morse"],"Ports":[],"Status":"Exit 0"}
|
91
|
-
,{"Command":"ls /lib64/","Created":1393623001,"Id":"93cdf928ada741f11c9535aa2de4bf7c0d69169e4309e45841efc3d54ae21fb8","Image":"base2:latest","Names":["/kickass_galileo"],"Ports":[],"Status":"Exit 0"}
|
92
|
-
,{"Command":true,"Created":1393622995,"Id":"e4e1b2526e1cf1eae7ac3b1e1c8c29e37b24130d0fcf410916e9f8b8d61ccc27","Image":"base2:latest","Names":["/kickass_newton"],"Ports":[],"Status":"Exit 0"}
|
93
|
-
,{"Command":"cat /Gemfile /Rakefile","Created":1393622987,"Id":"52d9a23cb292a4f1d7a65babf5fa94f05a3d9a79fb44e4ecdfb478f35dadcf11","Image":"7152d6b36451","Names":["/stoic_darwin"],"Ports":[],"Status":"Exit 0"}
|
94
|
-
,{"Command":"/bin/sh -c #(nop) ADD file:0da1397da130ce4eb9c66b709edc0cb80000a1d3bc890b9816b4e4da0204edb0 in /","Created":1393622985,"Id":"636b00134d64da97d41514249b527685651b1b17f396675d27f9ea3bc9dc91ef","Image":"b11e84158567","Names":["/determined_heisenberg"],"Ports":[],"Status":"Exit 0"}
|
95
|
-
,{"Command":"/bin/sh -c #(nop) ADD file:72fd941c3be8f251fffa1dc023f6335a4e8c2c7d5398b8df2f3e86d7209ab2d8 in /","Created":1393622983,"Id":"2441469640cf91420a9f7cb3f20148f1d7b4dfdda43c53500ce074d93db9e83b","Image":"base2:latest","Names":["/drunk_pasteur"],"Ports":[],"Status":"Exit 0"}
|
96
|
-
,{"Command":"cat /Gemfile","Created":1393622982,"Id":"a06f29d105bfeecd9738b51b6ba74374c191e85c1969eaa33945054ee522ce4a","Image":"3a016dd557a7","Names":["/berserk_davinci"],"Ports":[],"Status":"Exit 0"}
|
97
|
-
,{"Command":"/bin/sh -c #(nop) ADD file:39159349a16aa1373d57f522dd5a30e405346e05be85f0ef6ab65dbc8ac0b5d0 in /","Created":1393622980,"Id":"4464bf27679b679170a227944e89f98a6ba128e12879b9df199fd0765724dfe9","Image":"base2:latest","Names":["/desperate_heisenberg"],"Ports":[],"Status":"Exit 0"}
|
98
|
-
,{"Command":"ls /","Created":1393622979,"Id":"68eacec0e17645b561cecc11dcc97073f02a70a761bcb45370be154fdd210aa2","Image":"ec54e7edec81","Names":["/high_engelbart"],"Ports":[],"Status":"Exit 0"}
|
99
|
-
,{"Command":"echo insert http://stallman.org /stallman","Created":1393622977,"Id":"bad53897fd9c6e5825e33ff52e85b5989ce288441f1f6f06471273a8f445a53a","Image":"base2:latest","Names":["/dreamy_brattain"],"Ports":[],"Status":"Exit 0"}
|
60
|
+
[{"Command":"ls","Created":1394631107,"Id":"96dc9815df319fb1e8a01647bcade9eccf5b8fe0bf6f1c906409adc5063391bd","Image":"base:latest","Names":["/angry_mccarthy"],"Ports":[],"Status":"Exit 0"}
|
61
|
+
,{"Command":"ls","Created":1394631107,"Id":"9b524a40ef7e4204495322507f3e34c27836bd0d4f37a30bea8efca3ba1f0038","Image":"base:latest","Names":["/romantic_davinci"],"Ports":[],"Status":"Exit 0"}
|
62
|
+
,{"Command":"date","Created":1394631106,"Id":"e5db8489f386c64097f8b2d23054d3285d6d39eff0e62ebdca8b0fec42864b7d","Image":"base:latest","Names":["/nostalgic_lovelace"],"Ports":[],"Status":"Exit 0"}
|
63
|
+
,{"Command":"true","Created":1394631106,"Id":"0ac223f4d407ad2e694bdfcaf63dfdeaa0d33485b1e8163308ceafc821dbc68c","Image":"base:latest","Names":["/lonely_bardeen"],"Ports":[],"Status":"Exit 0"}
|
64
|
+
,{"Command":"true","Created":1394631104,"Id":"d0b6d1a3338746fd6ff45fe24e9b112a370ca9490ad97d2ff30a6c38c171c110","Image":"base:latest","Names":["/tender_einstein"],"Ports":[],"Status":"Exit 0"}
|
65
|
+
,{"Command":"ls","Created":1394631104,"Id":"cab0110ae90373f3f6790a2305bef7b040581dabbc98adbebeb3368f436eee71","Image":"8564cd49afd7","Names":["/agitated_mccarthy"],"Ports":[],"Status":"Exit 0"}
|
66
|
+
,{"Command":"pwd","Created":1394631102,"Id":"c451a96c2eca033537cf7107dcaa291bbecf8ff64c27c9d2258f4d546a1c1855","Image":"base:latest","Names":["/backstabbing_poincare"],"Ports":[],"Status":"Exit 0"}
|
67
|
+
,{"Command":"lol not a real command","Created":1394631101,"Id":"8ae2accd54d66e14604e210feb17ba35c10bea922a66e18df8abfecebe74bb35","Image":"base:latest","Names":["/suspicious_franklin"],"Ports":[],"Status":"Exit 1"}
|
68
|
+
,{"Command":"sleep 5","Created":1394631101,"Id":"c587a897c24942f9101238a1508953c1d0de1bbd32f99544d7f3e0d342483adb","Image":"base:latest","Names":["/prickly_nobel"],"Ports":[],"Status":"Exit 0"}
|
69
|
+
,{"Command":"sleep 5","Created":1394631096,"Id":"6a6064d6270041cae49685ab25cf48af4339e3af2f60dc1d869970deed56ef7e","Image":"base:latest","Names":["/tender_torvalds"],"Ports":[],"Status":"Exit 0"}
|
70
|
+
,{"Command":"tar nonsense","Created":1394631095,"Id":"38022195052bcf048579fe6e2b6631396935b97b569fa1be6d74fca8ee2fcfe4","Image":"base:latest","Names":["/happy_ptolemy"],"Ports":[],"Status":"Exit 64"}
|
71
|
+
,{"Command":"sleep 50","Created":1394631094,"Id":"82f44f5c9e7c3af30763a3de5fb55523816fcee716cad97a3a37ad3573a46738","Image":"base:latest","Names":["/sad_pike"],"Ports":[],"Status":"Up 11 seconds"}
|
72
|
+
,{"Command":"ls","Created":1394631092,"Id":"dd173940ca2db820cab4cf1f951fc97e98786b953ce2e848a7a8b9c9a1800b6b","Image":"base:latest","Names":["/trusting_galileo"],"Ports":[],"Status":"Exit 0"}
|
73
|
+
,{"Command":"true","Created":1394631092,"Id":"0ab853c18a2a8eaa4513a6a017dc749d5d691f689c6bdd339d9a64087aee88c1","Image":"base:latest","Names":["/prickly_galileo"],"Ports":[],"Status":"Exit 2"}
|
74
|
+
,{"Command":"test -d /foo","Created":1394631091,"Id":"6c3645ba631b4370d9199983b9a5133e49edaf019a5944148971b1c2db53bf79","Image":"base:latest","Names":["/angry_lumiere"],"Ports":[],"Status":"Exit 0"}
|
75
|
+
,{"Command":"pwd","Created":1394631090,"Id":"345e4a1df616ce448e2d45cdb95e8a3f0560fba39ab27e816b244f003430d59f","Image":"base:latest","Names":["/desperate_darwin"],"Ports":[],"Status":"Exit 0"}
|
76
|
+
,{"Command":"pwd","Created":1394631090,"Id":"71488237068c3873ebd7ff4cc408b7de962b2a90b7c8b8ad519483b592e282db","Image":"base:latest","Names":["/hungry_curie"],"Ports":[],"Status":"Exit 0"}
|
77
|
+
,{"Command":"rm -rf / --no-preserve-root","Created":1394631087,"Id":"8c8e11746d819efcd1403d94058d28f20c326ad44f0f406cb86a569931f26a60","Image":"base:latest","Names":["/boring_mclean"],"Ports":[],"Status":"Exit 1"}
|
78
|
+
,{"Command":"touch /test","Created":1394631086,"Id":"f68efa48ea8d41a0edade5d966d712133d723c910ef01b96fc3d0a9fbad368fe","Image":"base:latest","Names":["/grave_hawking"],"Ports":[],"Status":"Exit 0"}
|
79
|
+
,{"Command":"touch /test","Created":1394631084,"Id":"2703dd3c331e8405de077d5ed9452e0fe27fe3bb9f54740dc34845e1d0ab5499","Image":"base:latest","Names":["/tender_bell"],"Ports":[],"Status":"Exit 0"}
|
80
|
+
,{"Command":"/while","Created":1394631081,"Id":"d2def324f3daa1989173223f03d22e789c4354aa99d80e7258068de9e911cb35","Image":"2e0a9a843f66","Names":["/stoic_brown"],"Ports":[],"Status":"Up 25 seconds"}
|
81
|
+
,{"Command":"/bin/sh -c printf '#! /bin/sh\nwhile true\ndo\ntrue\ndone\n' \u003e /while \u0026\u0026 chmod +x /while","Created":1394631079,"Id":"68f09ac82fcf7c76327180d3573d3a2b54ebe13afc528e29195642a9710d888e","Image":"base:latest","Names":["/determined_einstein"],"Ports":[],"Status":"Exit 0"}
|
82
|
+
,{"Command":"rm -rf /root","Created":1394631078,"Id":"5584a4b00578255194eea3b885d831e6ea0da94d56529f0dab97cd972471026c","Image":"base:latest","Names":["/thirsty_bardeen"],"Ports":[],"Status":"Exit 0"}
|
83
|
+
,{"Command":"true","Created":1394631078,"Id":"be31311878d52f79a24ae359a00d7859e80fe6bb429026a74ccbafa606b04782","Image":"base:latest","Names":["/bob"],"Ports":[],"Status":"Exit 0"}
|
84
|
+
,{"Command":"true","Created":1394631077,"Id":"b615f325b67d6bf74b31ce94f39dea0c1a9f2707b2f610bbdbf6e5dc779b4444","Image":"base:latest","Names":["/high_pasteur"],"Ports":[],"Status":"Exit 0"}
|
100
85
|
]
|
101
86
|
http_version:
|
102
|
-
recorded_at:
|
87
|
+
recorded_at: Wed, 12 Mar 2014 13:31:47 GMT
|
103
88
|
- request:
|
104
89
|
method: get
|
105
|
-
uri: unix:///var/run/docker.sock/v1.
|
90
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/json?all=true
|
106
91
|
body:
|
107
92
|
encoding: US-ASCII
|
108
93
|
string: ''
|
109
94
|
headers:
|
110
95
|
User-Agent:
|
111
|
-
- Swipely/Docker-API 1.
|
96
|
+
- Swipely/Docker-API 1.9.1
|
112
97
|
Content-Type:
|
113
98
|
- text/plain
|
114
99
|
response:
|
@@ -119,7 +104,7 @@ http_interactions:
|
|
119
104
|
Content-Type:
|
120
105
|
- application/json
|
121
106
|
Date:
|
122
|
-
-
|
107
|
+
- Wed, 12 Mar 2014 13:31:47 GMT
|
123
108
|
Connection:
|
124
109
|
- close
|
125
110
|
Transfer-Encoding:
|
@@ -127,47 +112,32 @@ http_interactions:
|
|
127
112
|
body:
|
128
113
|
encoding: UTF-8
|
129
114
|
string: |-
|
130
|
-
[{"Command":"ls
|
131
|
-
,{"Command":"ls
|
132
|
-
,{"Command":"date
|
133
|
-
,{"Command":true,"Created":
|
134
|
-
,{"Command":true,"Created":
|
135
|
-
,{"Command":"ls
|
136
|
-
,{"Command":"pwd
|
137
|
-
,{"Command":"lol not a real command","Created":
|
138
|
-
,{"Command":"sleep 5","Created":
|
139
|
-
,{"Command":"sleep 5","Created":
|
140
|
-
,{"Command":"tar nonsense","Created":
|
141
|
-
,{"Command":"sleep 50","Created":
|
142
|
-
,{"Command":"ls
|
143
|
-
,{"Command":true,"Created":
|
144
|
-
,{"Command":"test -d /foo","Created":
|
145
|
-
,{"Command":"pwd
|
146
|
-
,{"Command":"pwd
|
147
|
-
,{"Command":"rm -rf / --no-preserve-root","Created":
|
148
|
-
,{"Command":"touch /test","Created":
|
149
|
-
,{"Command":"touch /test","Created":
|
150
|
-
,{"Command":"/
|
151
|
-
,{"Command":"
|
152
|
-
,{"Command":
|
153
|
-
,{"Command":true,"Created":
|
154
|
-
,{"Command":"
|
155
|
-
,{"Command":"cat /Dockerfile","Created":1393623607,"Id":"979c4db1554a66bd9625a5d960f16203ce645037a7f63bd5d3ac0e12a4f4aa85","Image":"swipely/base2:latest","Names":["/loving_brown"],"Ports":[],"Status":"Exit 0"}
|
156
|
-
,{"Command":"cat /Dockerfile","Created":1393623015,"Id":"14500692e1e383d1bfadcc4fac538e80a2fa38481a1e8892414034b83d25dc34","Image":"swipely/base2:latest","Names":["/trusting_thompson"],"Ports":[],"Status":"Exit 0"}
|
157
|
-
,{"Command":"cat /Dockerfile","Created":1393623014,"Id":"964080fb57a7e4694307d79acbf5e1426f39d196cd73963906f11ccb46c1170a","Image":"swipely/base2:latest","Names":["/mad_feynman"],"Ports":[],"Status":"Exit 0"}
|
158
|
-
,{"Command":"/bin/sh -c #(nop) ADD dir:1eb775e654a108ecfb3725cc351728601c0031d180071f124b1510620d5ee9b5 in /","Created":1393623012,"Id":"00d9d33e18df5c676755ebeed569a056d5fdabc9cd25acb2b9fcc44da2bd8df5","Image":"base2:latest","Names":["/agitated_curie"],"Ports":[],"Status":"Exit 0"}
|
159
|
-
,{"Command":"/bin/sh -c true","Created":1393623009,"Id":"a2640209c447eb3a54d89f0c5614ed09444fe2f1badb5c3d81cbe46f697a7974","Image":"base2:latest","Names":["/clever_pike"],"Ports":[],"Status":"Exit 0"}
|
160
|
-
,{"Command":"which pwd","Created":1393623004,"Id":"54e5d38edb25f0294cc9011e557282d71ee6c8f88f588dd4efe6ffe609287fa0","Image":"base2:latest","Names":["/jolly_morse"],"Ports":[],"Status":"Exit 0"}
|
161
|
-
,{"Command":"ls /lib64/","Created":1393623001,"Id":"93cdf928ada741f11c9535aa2de4bf7c0d69169e4309e45841efc3d54ae21fb8","Image":"base2:latest","Names":["/kickass_galileo"],"Ports":[],"Status":"Exit 0"}
|
162
|
-
,{"Command":true,"Created":1393622995,"Id":"e4e1b2526e1cf1eae7ac3b1e1c8c29e37b24130d0fcf410916e9f8b8d61ccc27","Image":"base2:latest","Names":["/kickass_newton"],"Ports":[],"Status":"Exit 0"}
|
163
|
-
,{"Command":"cat /Gemfile /Rakefile","Created":1393622987,"Id":"52d9a23cb292a4f1d7a65babf5fa94f05a3d9a79fb44e4ecdfb478f35dadcf11","Image":"7152d6b36451","Names":["/stoic_darwin"],"Ports":[],"Status":"Exit 0"}
|
164
|
-
,{"Command":"/bin/sh -c #(nop) ADD file:0da1397da130ce4eb9c66b709edc0cb80000a1d3bc890b9816b4e4da0204edb0 in /","Created":1393622985,"Id":"636b00134d64da97d41514249b527685651b1b17f396675d27f9ea3bc9dc91ef","Image":"b11e84158567","Names":["/determined_heisenberg"],"Ports":[],"Status":"Exit 0"}
|
165
|
-
,{"Command":"/bin/sh -c #(nop) ADD file:72fd941c3be8f251fffa1dc023f6335a4e8c2c7d5398b8df2f3e86d7209ab2d8 in /","Created":1393622983,"Id":"2441469640cf91420a9f7cb3f20148f1d7b4dfdda43c53500ce074d93db9e83b","Image":"base2:latest","Names":["/drunk_pasteur"],"Ports":[],"Status":"Exit 0"}
|
166
|
-
,{"Command":"cat /Gemfile","Created":1393622982,"Id":"a06f29d105bfeecd9738b51b6ba74374c191e85c1969eaa33945054ee522ce4a","Image":"3a016dd557a7","Names":["/berserk_davinci"],"Ports":[],"Status":"Exit 0"}
|
167
|
-
,{"Command":"/bin/sh -c #(nop) ADD file:39159349a16aa1373d57f522dd5a30e405346e05be85f0ef6ab65dbc8ac0b5d0 in /","Created":1393622980,"Id":"4464bf27679b679170a227944e89f98a6ba128e12879b9df199fd0765724dfe9","Image":"base2:latest","Names":["/desperate_heisenberg"],"Ports":[],"Status":"Exit 0"}
|
168
|
-
,{"Command":"ls /","Created":1393622979,"Id":"68eacec0e17645b561cecc11dcc97073f02a70a761bcb45370be154fdd210aa2","Image":"ec54e7edec81","Names":["/high_engelbart"],"Ports":[],"Status":"Exit 0"}
|
169
|
-
,{"Command":"echo insert http://stallman.org /stallman","Created":1393622977,"Id":"bad53897fd9c6e5825e33ff52e85b5989ce288441f1f6f06471273a8f445a53a","Image":"base2:latest","Names":["/dreamy_brattain"],"Ports":[],"Status":"Exit 0"}
|
115
|
+
[{"Command":"ls","Created":1394631107,"Id":"96dc9815df319fb1e8a01647bcade9eccf5b8fe0bf6f1c906409adc5063391bd","Image":"base:latest","Names":["/angry_mccarthy"],"Ports":[],"Status":"Exit 0"}
|
116
|
+
,{"Command":"ls","Created":1394631107,"Id":"9b524a40ef7e4204495322507f3e34c27836bd0d4f37a30bea8efca3ba1f0038","Image":"base:latest","Names":["/romantic_davinci"],"Ports":[],"Status":"Exit 0"}
|
117
|
+
,{"Command":"date","Created":1394631106,"Id":"e5db8489f386c64097f8b2d23054d3285d6d39eff0e62ebdca8b0fec42864b7d","Image":"base:latest","Names":["/nostalgic_lovelace"],"Ports":[],"Status":"Exit 0"}
|
118
|
+
,{"Command":"true","Created":1394631106,"Id":"0ac223f4d407ad2e694bdfcaf63dfdeaa0d33485b1e8163308ceafc821dbc68c","Image":"base:latest","Names":["/lonely_bardeen"],"Ports":[],"Status":"Exit 0"}
|
119
|
+
,{"Command":"true","Created":1394631104,"Id":"d0b6d1a3338746fd6ff45fe24e9b112a370ca9490ad97d2ff30a6c38c171c110","Image":"base:latest","Names":["/tender_einstein"],"Ports":[],"Status":"Exit 0"}
|
120
|
+
,{"Command":"ls","Created":1394631104,"Id":"cab0110ae90373f3f6790a2305bef7b040581dabbc98adbebeb3368f436eee71","Image":"8564cd49afd7","Names":["/agitated_mccarthy"],"Ports":[],"Status":"Exit 0"}
|
121
|
+
,{"Command":"pwd","Created":1394631102,"Id":"c451a96c2eca033537cf7107dcaa291bbecf8ff64c27c9d2258f4d546a1c1855","Image":"base:latest","Names":["/backstabbing_poincare"],"Ports":[],"Status":"Exit 0"}
|
122
|
+
,{"Command":"lol not a real command","Created":1394631101,"Id":"8ae2accd54d66e14604e210feb17ba35c10bea922a66e18df8abfecebe74bb35","Image":"base:latest","Names":["/suspicious_franklin"],"Ports":[],"Status":"Exit 1"}
|
123
|
+
,{"Command":"sleep 5","Created":1394631101,"Id":"c587a897c24942f9101238a1508953c1d0de1bbd32f99544d7f3e0d342483adb","Image":"base:latest","Names":["/prickly_nobel"],"Ports":[],"Status":"Exit 0"}
|
124
|
+
,{"Command":"sleep 5","Created":1394631096,"Id":"6a6064d6270041cae49685ab25cf48af4339e3af2f60dc1d869970deed56ef7e","Image":"base:latest","Names":["/tender_torvalds"],"Ports":[],"Status":"Exit 0"}
|
125
|
+
,{"Command":"tar nonsense","Created":1394631095,"Id":"38022195052bcf048579fe6e2b6631396935b97b569fa1be6d74fca8ee2fcfe4","Image":"base:latest","Names":["/happy_ptolemy"],"Ports":[],"Status":"Exit 64"}
|
126
|
+
,{"Command":"sleep 50","Created":1394631094,"Id":"82f44f5c9e7c3af30763a3de5fb55523816fcee716cad97a3a37ad3573a46738","Image":"base:latest","Names":["/sad_pike"],"Ports":[],"Status":"Up 11 seconds"}
|
127
|
+
,{"Command":"ls","Created":1394631092,"Id":"dd173940ca2db820cab4cf1f951fc97e98786b953ce2e848a7a8b9c9a1800b6b","Image":"base:latest","Names":["/trusting_galileo"],"Ports":[],"Status":"Exit 0"}
|
128
|
+
,{"Command":"true","Created":1394631092,"Id":"0ab853c18a2a8eaa4513a6a017dc749d5d691f689c6bdd339d9a64087aee88c1","Image":"base:latest","Names":["/prickly_galileo"],"Ports":[],"Status":"Exit 2"}
|
129
|
+
,{"Command":"test -d /foo","Created":1394631091,"Id":"6c3645ba631b4370d9199983b9a5133e49edaf019a5944148971b1c2db53bf79","Image":"base:latest","Names":["/angry_lumiere"],"Ports":[],"Status":"Exit 0"}
|
130
|
+
,{"Command":"pwd","Created":1394631090,"Id":"345e4a1df616ce448e2d45cdb95e8a3f0560fba39ab27e816b244f003430d59f","Image":"base:latest","Names":["/desperate_darwin"],"Ports":[],"Status":"Exit 0"}
|
131
|
+
,{"Command":"pwd","Created":1394631090,"Id":"71488237068c3873ebd7ff4cc408b7de962b2a90b7c8b8ad519483b592e282db","Image":"base:latest","Names":["/hungry_curie"],"Ports":[],"Status":"Exit 0"}
|
132
|
+
,{"Command":"rm -rf / --no-preserve-root","Created":1394631087,"Id":"8c8e11746d819efcd1403d94058d28f20c326ad44f0f406cb86a569931f26a60","Image":"base:latest","Names":["/boring_mclean"],"Ports":[],"Status":"Exit 1"}
|
133
|
+
,{"Command":"touch /test","Created":1394631086,"Id":"f68efa48ea8d41a0edade5d966d712133d723c910ef01b96fc3d0a9fbad368fe","Image":"base:latest","Names":["/grave_hawking"],"Ports":[],"Status":"Exit 0"}
|
134
|
+
,{"Command":"touch /test","Created":1394631084,"Id":"2703dd3c331e8405de077d5ed9452e0fe27fe3bb9f54740dc34845e1d0ab5499","Image":"base:latest","Names":["/tender_bell"],"Ports":[],"Status":"Exit 0"}
|
135
|
+
,{"Command":"/while","Created":1394631081,"Id":"d2def324f3daa1989173223f03d22e789c4354aa99d80e7258068de9e911cb35","Image":"2e0a9a843f66","Names":["/stoic_brown"],"Ports":[],"Status":"Up 25 seconds"}
|
136
|
+
,{"Command":"/bin/sh -c printf '#! /bin/sh\nwhile true\ndo\ntrue\ndone\n' \u003e /while \u0026\u0026 chmod +x /while","Created":1394631079,"Id":"68f09ac82fcf7c76327180d3573d3a2b54ebe13afc528e29195642a9710d888e","Image":"base:latest","Names":["/determined_einstein"],"Ports":[],"Status":"Exit 0"}
|
137
|
+
,{"Command":"rm -rf /root","Created":1394631078,"Id":"5584a4b00578255194eea3b885d831e6ea0da94d56529f0dab97cd972471026c","Image":"base:latest","Names":["/thirsty_bardeen"],"Ports":[],"Status":"Exit 0"}
|
138
|
+
,{"Command":"true","Created":1394631078,"Id":"be31311878d52f79a24ae359a00d7859e80fe6bb429026a74ccbafa606b04782","Image":"base:latest","Names":["/bob"],"Ports":[],"Status":"Exit 0"}
|
139
|
+
,{"Command":"true","Created":1394631077,"Id":"b615f325b67d6bf74b31ce94f39dea0c1a9f2707b2f610bbdbf6e5dc779b4444","Image":"base:latest","Names":["/high_pasteur"],"Ports":[],"Status":"Exit 0"}
|
170
140
|
]
|
171
141
|
http_version:
|
172
|
-
recorded_at:
|
142
|
+
recorded_at: Wed, 12 Mar 2014 13:31:47 GMT
|
173
143
|
recorded_with: VCR 2.8.0
|