docker-api 1.12.0 → 1.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/docker/container.rb +15 -0
- data/lib/docker/image.rb +0 -10
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +26 -1
- data/spec/docker/image_spec.rb +0 -11
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +4 -4
- 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 +4 -4
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +127 -75
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +12 -16
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +12 -16
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +17 -21
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +14 -18
- data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +9 -13
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +39 -43
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +22 -26
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +12 -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 +15 -19
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +15 -453687
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +12 -11
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +12 -11
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +64 -42
- data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/returns_the_error_message.yml +11 -11
- data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +9 -9
- data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +121 -0
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +37 -49
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +13 -17
- 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 +36 -48
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +20 -24
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +67 -49
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +23 -26
- data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +150 -0
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +13 -17
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +9 -13
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +13 -17
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +10 -11
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +4 -4
- 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 +25 -24
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +4 -4
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +4 -4
- 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 +8 -8
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml +6 -6
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +21 -24
- 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 -43
- 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 +68 -18
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +7 -6
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +10 -10
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +18 -24
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +9 -9
- data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +5 -5
- data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +23 -27
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +20 -20
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +18 -18
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +23 -27
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +4 -4
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +25 -28
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +13 -12
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +32 -71
- data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +28 -28
- data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +35 -34
- data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +50 -21
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +16 -20
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +16 -20
- 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 +10 -10
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +66 -34
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +8 -8
- metadata +8 -5
- data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +0 -194
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 49570c7cc7ffc0dd62c49567c9fcf0f10c033f65
|
4
|
+
data.tar.gz: 6f5902ad7795795ca2f4696bf380adcbfa4f52b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2594d80b3afa02c8f6ef7e4b139109b136cae93dcf6fc8657dd0cda7e0dba12f053ee4761b74d62964d7b140a29701ec04ef148c932094da2eee55221af2e5f
|
7
|
+
data.tar.gz: 0a5e4e639d4990f73d6e8979ec08a1aa03b9582ba4675f12fa1a16ef9db9cc1b894b827584924ff26a0e519fe59bcf331f5277bb2f5cde477538262554118136
|
data/lib/docker/container.rb
CHANGED
@@ -136,6 +136,21 @@ class Docker::Container
|
|
136
136
|
end
|
137
137
|
alias_method :delete, :remove
|
138
138
|
|
139
|
+
# pause and unpause containers
|
140
|
+
# #pause! and #unpause! both perform the associated action and
|
141
|
+
# return the Container. #pause and #unpause do the same,
|
142
|
+
# but rescue from ServerErrors.
|
143
|
+
[:pause, :unpause].each do |method|
|
144
|
+
define_method(:"#{method}!") do
|
145
|
+
connection.post path_for(method)
|
146
|
+
self
|
147
|
+
end
|
148
|
+
|
149
|
+
define_method(method) do
|
150
|
+
begin; public_send(:"#{method}!"); rescue ServerError; self; end
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
139
154
|
def copy(path, &block)
|
140
155
|
connection.post(path_for(:copy), {},
|
141
156
|
:body => { "Resource" => path }.to_json,
|
data/lib/docker/image.rb
CHANGED
@@ -44,16 +44,6 @@ class Docker::Image
|
|
44
44
|
self.info['RepoTags'] << "#{repo}:#{tag}"
|
45
45
|
end
|
46
46
|
|
47
|
-
# Insert a file into the Image, returns a new Image that has that file.
|
48
|
-
def insert(query = {})
|
49
|
-
body = connection.post(path_for(:insert), query)
|
50
|
-
if id = Docker::Util.fix_json(body).last['status']
|
51
|
-
self.class.send(:new, connection, 'id' => id)
|
52
|
-
else
|
53
|
-
raise UnexpectedResponseError, "Could not find Id in '#{body}'"
|
54
|
-
end
|
55
|
-
end
|
56
|
-
|
57
47
|
# Given a path of a local file and the path it should be inserted, creates
|
58
48
|
# a new Image that has that file.
|
59
49
|
def insert_local(opts = {})
|
data/lib/docker/version.rb
CHANGED
@@ -29,7 +29,7 @@ describe Docker::Container do
|
|
29
29
|
|
30
30
|
it 'returns the description as a Hash', :vcr do
|
31
31
|
expect(description).to be_a Hash
|
32
|
-
expect(description['
|
32
|
+
expect(description['Id']).to start_with(subject.id)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
@@ -283,6 +283,31 @@ describe Docker::Container do
|
|
283
283
|
end
|
284
284
|
end
|
285
285
|
|
286
|
+
describe '#pause' do
|
287
|
+
subject {
|
288
|
+
described_class.create('Cmd' => %w[sleep 50], 'Image' => 'base').start
|
289
|
+
}
|
290
|
+
|
291
|
+
it 'pauses the container', :vcr do
|
292
|
+
subject.pause
|
293
|
+
expect(described_class.get(subject.id).info['State']['Paused']).to be true
|
294
|
+
end
|
295
|
+
end
|
296
|
+
|
297
|
+
describe '#unpause' do
|
298
|
+
subject {
|
299
|
+
described_class.create('Cmd' => %w[sleep 50], 'Image' => 'base').start
|
300
|
+
}
|
301
|
+
before { subject.pause }
|
302
|
+
|
303
|
+
it 'unpauses the container', :vcr do
|
304
|
+
subject.unpause
|
305
|
+
expect(
|
306
|
+
described_class.get(subject.id).info['State']['Paused']
|
307
|
+
).to be false
|
308
|
+
end
|
309
|
+
end
|
310
|
+
|
286
311
|
describe '#wait' do
|
287
312
|
subject { described_class.create('Cmd' => %w[tar nonsense],
|
288
313
|
'Image' => 'base') }
|
data/spec/docker/image_spec.rb
CHANGED
@@ -30,17 +30,6 @@ describe Docker::Image do
|
|
30
30
|
end
|
31
31
|
end
|
32
32
|
|
33
|
-
describe '#insert' do
|
34
|
-
subject { described_class.build('from base') }
|
35
|
-
let(:new_image) { subject.insert(:path => '/stallman',
|
36
|
-
:url => 'http://stallman.org') }
|
37
|
-
let(:ls_output) { new_image.run('ls /').attach }
|
38
|
-
|
39
|
-
it 'inserts the url\'s file into a new Image', :vcr do
|
40
|
-
expect(ls_output.first.first).to include('stallman')
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
33
|
describe '#insert_local' do
|
45
34
|
subject { described_class.build('from base') }
|
46
35
|
|
@@ -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.12/auth
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
8
|
string: '{"username":"tlunter","password":"************","email":"tlunter@gmail.com","serveraddress":"https://index.docker.io/v1/"}'
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.11.
|
11
|
+
- Swipely/Docker-API 1.11.2
|
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
|
-
- Thu, 26 Jun 2014
|
22
|
+
- Thu, 26 Jun 2014 20:42:19 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '29'
|
25
25
|
Connection:
|
@@ -29,5 +29,5 @@ http_interactions:
|
|
29
29
|
string: |
|
30
30
|
{"Status":"Login Succeeded"}
|
31
31
|
http_version:
|
32
|
-
recorded_at: Thu, 26 Jun 2014
|
32
|
+
recorded_at: Thu, 26 Jun 2014 20:42:19 GMT
|
33
33
|
recorded_with: VCR 2.9.2
|
@@ -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.12/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.
|
11
|
+
- Swipely/Docker-API 1.11.2
|
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
|
-
- Thu, 26 Jun 2014
|
24
|
+
- Thu, 26 Jun 2014 20:41:07 GMT
|
25
25
|
Content-Length:
|
26
|
-
- '
|
26
|
+
- '694'
|
27
27
|
Connection:
|
28
28
|
- close
|
29
29
|
body:
|
30
30
|
encoding: UTF-8
|
31
31
|
string: |
|
32
|
-
{"Containers":
|
32
|
+
{"Containers":6,"Debug":0,"Driver":"devicemapper","DriverStatus":[["Pool Name","docker-8:2-5393690-pool"],["Data file","/var/lib/docker/devicemapper/devicemapper/data"],["Metadata file","/var/lib/docker/devicemapper/devicemapper/metadata"],["Data Space Used","3330.0 Mb"],["Data Space Total","102400.0 Mb"],["Metadata Space Used","4.5 Mb"],["Metadata Space Total","2048.0 Mb"]],"ExecutionDriver":"native-0.2","IPv4Forwarding":1,"Images":54,"IndexServerAddress":"https://index.docker.io/v1/","InitPath":"/usr/lib/docker/dockerinit","InitSha1":"728ea391473ec106b15a6486b3b1a2e8a07e4ff5","KernelVersion":"3.15.1-1-ARCH","MemoryLimit":1,"NEventsListener":0,"NFd":12,"NGoroutines":15,"SwapLimit":0}
|
33
33
|
http_version:
|
34
|
-
recorded_at: Thu, 26 Jun 2014
|
34
|
+
recorded_at: Thu, 26 Jun 2014 20:41:07 GMT
|
35
35
|
recorded_with: VCR 2.9.2
|
@@ -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.12/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.
|
11
|
+
- Swipely/Docker-API 1.11.2
|
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
|
-
- Thu, 26 Jun 2014
|
24
|
+
- Thu, 26 Jun 2014 20:43:25 GMT
|
25
25
|
Content-Length:
|
26
|
-
- '
|
26
|
+
- '694'
|
27
27
|
Connection:
|
28
28
|
- close
|
29
29
|
body:
|
30
30
|
encoding: UTF-8
|
31
31
|
string: |
|
32
|
-
{"Containers":
|
32
|
+
{"Containers":6,"Debug":0,"Driver":"devicemapper","DriverStatus":[["Pool Name","docker-8:2-5393690-pool"],["Data file","/var/lib/docker/devicemapper/devicemapper/data"],["Metadata file","/var/lib/docker/devicemapper/devicemapper/metadata"],["Data Space Used","3330.0 Mb"],["Data Space Total","102400.0 Mb"],["Metadata Space Used","4.5 Mb"],["Metadata Space Total","2048.0 Mb"]],"ExecutionDriver":"native-0.2","IPv4Forwarding":1,"Images":54,"IndexServerAddress":"https://index.docker.io/v1/","InitPath":"/usr/lib/docker/dockerinit","InitSha1":"728ea391473ec106b15a6486b3b1a2e8a07e4ff5","KernelVersion":"3.15.1-1-ARCH","MemoryLimit":1,"NEventsListener":0,"NFd":12,"NGoroutines":15,"SwapLimit":0}
|
33
33
|
http_version:
|
34
|
-
recorded_at: Thu, 26 Jun 2014
|
34
|
+
recorded_at: Thu, 26 Jun 2014 20:43:25 GMT
|
35
35
|
recorded_with: VCR 2.9.2
|
@@ -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.12/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.
|
11
|
+
- Swipely/Docker-API 1.11.2
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -21,7 +21,7 @@ http_interactions:
|
|
21
21
|
Job-Name:
|
22
22
|
- version
|
23
23
|
Date:
|
24
|
-
- Thu, 26 Jun 2014
|
24
|
+
- Thu, 26 Jun 2014 20:40:54 GMT
|
25
25
|
Content-Length:
|
26
26
|
- '142'
|
27
27
|
Connection:
|
@@ -31,5 +31,5 @@ http_interactions:
|
|
31
31
|
string: |
|
32
32
|
{"ApiVersion":"1.12","Arch":"amd64","GitCommit":"990021a","GoVersion":"go1.3","KernelVersion":"3.15.1-1-ARCH","Os":"linux","Version":"1.0.1"}
|
33
33
|
http_version:
|
34
|
-
recorded_at: Thu, 26 Jun 2014
|
34
|
+
recorded_at: Thu, 26 Jun 2014 20:40:54 GMT
|
35
35
|
recorded_with: VCR 2.9.2
|
@@ -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.12/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.
|
11
|
+
- Swipely/Docker-API 1.11.2
|
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
|
+
- Thu, 26 Jun 2014 19:48:49 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":"3d56d8bdee09b258fccac5c50e23c334d1daafb886ee76926cc08417540eb126","Warnings":null}
|
31
31
|
http_version:
|
32
|
-
recorded_at:
|
32
|
+
recorded_at: Thu, 26 Jun 2014 19:48:49 GMT
|
33
33
|
- request:
|
34
34
|
method: get
|
35
|
-
uri: unix:///var/run/docker.sock/v1.
|
35
|
+
uri: unix:///var/run/docker.sock/v1.12/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.11.
|
41
|
+
- Swipely/Docker-API 1.11.2
|
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
|
+
- Thu, 26 Jun 2014 19:48:49 GMT
|
53
53
|
Connection:
|
54
54
|
- close
|
55
55
|
Transfer-Encoding:
|
@@ -57,49 +57,75 @@ http_interactions:
|
|
57
57
|
body:
|
58
58
|
encoding: UTF-8
|
59
59
|
string: |-
|
60
|
-
[{"Command":"ls","Created":
|
61
|
-
,{"Command":"ls","Created":
|
62
|
-
,{"Command":"date","Created":
|
63
|
-
,{"Command":"true","Created":
|
64
|
-
,{"Command":"true","Created":
|
65
|
-
,{"Command":"ls","Created":
|
66
|
-
,{"Command":"
|
67
|
-
,{"Command":"
|
68
|
-
,{"Command":"sleep 5","Created":
|
69
|
-
,{"Command":"sleep 5","Created":
|
70
|
-
,{"Command":"tar nonsense","Created":
|
71
|
-
,{"Command":"sleep 50","Created":
|
72
|
-
,{"Command":"ls","Created":
|
73
|
-
,{"Command":"true","Created":
|
74
|
-
,{"Command":"
|
75
|
-
,{"Command":"
|
76
|
-
,{"Command":"pwd","Created":
|
77
|
-
,{"Command":"rm -rf / --no-preserve-root","Created":
|
78
|
-
,{"Command":"/
|
79
|
-
,{"Command":"
|
80
|
-
,{"Command":"
|
81
|
-
,{"Command":"
|
82
|
-
,{"Command":"true","Created":
|
83
|
-
,{"Command":"echo hello","Created":
|
84
|
-
,{"Command":"
|
85
|
-
,{"Command":"
|
86
|
-
,{"Command":"
|
87
|
-
,{"Command":"
|
88
|
-
,{"Command":"
|
89
|
-
,{"Command":"bash","Created":
|
90
|
-
,{"Command":"
|
60
|
+
[{"Command":"ls","Created":1403812129,"Id":"3d56d8bdee09b258fccac5c50e23c334d1daafb886ee76926cc08417540eb126","Image":"base:latest","Names":["/high_mclean"],"Ports":[],"Status":""}
|
61
|
+
,{"Command":"ls","Created":1403812119,"Id":"00006a432b5a0633df95a997d1c24ee77f83a53749bbb57ae0f000d3f3fe1a20","Image":"base:latest","Names":["/focused_ritchie"],"Ports":[],"Status":""}
|
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"}
|
91
117
|
]
|
92
118
|
http_version:
|
93
|
-
recorded_at:
|
119
|
+
recorded_at: Thu, 26 Jun 2014 19:48:50 GMT
|
94
120
|
- request:
|
95
121
|
method: get
|
96
|
-
uri: unix:///var/run/docker.sock/v1.
|
122
|
+
uri: unix:///var/run/docker.sock/v1.12/containers/json?all=true
|
97
123
|
body:
|
98
124
|
encoding: US-ASCII
|
99
125
|
string: ''
|
100
126
|
headers:
|
101
127
|
User-Agent:
|
102
|
-
- Swipely/Docker-API 1.11.
|
128
|
+
- Swipely/Docker-API 1.11.2
|
103
129
|
Content-Type:
|
104
130
|
- text/plain
|
105
131
|
response:
|
@@ -110,7 +136,7 @@ http_interactions:
|
|
110
136
|
Content-Type:
|
111
137
|
- application/json
|
112
138
|
Date:
|
113
|
-
-
|
139
|
+
- Thu, 26 Jun 2014 19:48:50 GMT
|
114
140
|
Connection:
|
115
141
|
- close
|
116
142
|
Transfer-Encoding:
|
@@ -118,38 +144,64 @@ http_interactions:
|
|
118
144
|
body:
|
119
145
|
encoding: UTF-8
|
120
146
|
string: |-
|
121
|
-
[{"Command":"ls","Created":
|
122
|
-
,{"Command":"ls","Created":
|
123
|
-
,{"Command":"date","Created":
|
124
|
-
,{"Command":"true","Created":
|
125
|
-
,{"Command":"true","Created":
|
126
|
-
,{"Command":"ls","Created":
|
127
|
-
,{"Command":"
|
128
|
-
,{"Command":"
|
129
|
-
,{"Command":"sleep 5","Created":
|
130
|
-
,{"Command":"sleep 5","Created":
|
131
|
-
,{"Command":"tar nonsense","Created":
|
132
|
-
,{"Command":"sleep 50","Created":
|
133
|
-
,{"Command":"ls","Created":
|
134
|
-
,{"Command":"true","Created":
|
135
|
-
,{"Command":"
|
136
|
-
,{"Command":"
|
137
|
-
,{"Command":"pwd","Created":
|
138
|
-
,{"Command":"rm -rf / --no-preserve-root","Created":
|
139
|
-
,{"Command":"/
|
140
|
-
,{"Command":"
|
141
|
-
,{"Command":"
|
142
|
-
,{"Command":"
|
143
|
-
,{"Command":"true","Created":
|
144
|
-
,{"Command":"echo hello","Created":
|
145
|
-
,{"Command":"
|
146
|
-
,{"Command":"
|
147
|
-
,{"Command":"
|
148
|
-
,{"Command":"
|
149
|
-
,{"Command":"
|
150
|
-
,{"Command":"bash","Created":
|
151
|
-
,{"Command":"
|
147
|
+
[{"Command":"ls","Created":1403812129,"Id":"3d56d8bdee09b258fccac5c50e23c334d1daafb886ee76926cc08417540eb126","Image":"base:latest","Names":["/high_mclean"],"Ports":[],"Status":""}
|
148
|
+
,{"Command":"ls","Created":1403812119,"Id":"00006a432b5a0633df95a997d1c24ee77f83a53749bbb57ae0f000d3f3fe1a20","Image":"base:latest","Names":["/focused_ritchie"],"Ports":[],"Status":""}
|
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"}
|
152
204
|
]
|
153
205
|
http_version:
|
154
|
-
recorded_at:
|
206
|
+
recorded_at: Thu, 26 Jun 2014 19:48:50 GMT
|
155
207
|
recorded_with: VCR 2.9.2
|