docker-api 1.8.4 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/lib/docker/image.rb +4 -4
  3. data/lib/docker/util.rb +9 -1
  4. data/lib/docker/version.rb +2 -2
  5. data/spec/docker/container_spec.rb +1 -3
  6. data/spec/docker/util_spec.rb +23 -2
  7. data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +16 -16
  8. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +6 -6
  9. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +6 -6
  10. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +6 -6
  11. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +97 -69
  12. data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +12 -12
  13. data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +12 -12
  14. data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +19 -19
  15. data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +14 -14
  16. data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +9 -122
  17. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +24 -24
  18. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +24 -24
  19. data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +12 -12
  20. 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
  21. data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +15 -15
  22. data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +14 -82732
  23. data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +13 -13
  24. data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +13 -13
  25. data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +49 -34
  26. data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +39 -39
  27. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +14 -14
  28. 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 +38 -38
  29. data/spec/vcr/Docker_Container/_start/starts_the_container.yml +21 -21
  30. data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +52 -37
  31. data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +7 -7
  32. data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +15 -15
  33. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +9 -9
  34. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +13 -13
  35. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +19 -22
  36. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +7 -7
  37. 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 -27
  38. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +7 -7
  39. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +7 -7
  40. 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 -7
  41. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +21 -20
  42. 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 +36 -38
  43. data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id.yml +5 -5
  44. data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +8 -8
  45. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +10 -10
  46. data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +213 -30
  47. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +45 -51
  48. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +48 -100
  49. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +30 -30
  50. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +7 -7
  51. data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +32 -32
  52. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +8 -8
  53. data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +43 -102
  54. data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +9 -9
  55. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +18 -18
  56. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +18 -18
  57. 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 +12 -12
  58. data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +34 -22
  59. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +6 -6
  60. metadata +2 -6
  61. data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +0 -156
  62. data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/command_configured_in_image/should_normally_show_result_if_image_has_Cmd_configured.yml +0 -93
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4322eaf478696f746bbd265cbeafafec0efebfed
4
- data.tar.gz: d96d82977b0af43543421b89acc365457159baa9
3
+ metadata.gz: b70bfc4fd881c989f413056ad18ce1165966abe1
4
+ data.tar.gz: 110f62598c550dc8d9173dbcbfe71c92e514ecf4
5
5
  SHA512:
6
- metadata.gz: f95d925f8c175e9809bb3e4db97a91c2b3e2177ce175b56e6fc1b7863900b3efca98364333a6e713f246851182ad84bbd703107e48ab8c8244074c3f7f33435b
7
- data.tar.gz: f6620ec718d0bcab618465db873cb51ee1ac190d3705945042ac89b9e50612e3f6eac56a30c710046e58b30efa57da526255922676ffee9b7dfe576af2c880ed
6
+ metadata.gz: 61f23c630f3d5473f2b8e18c29fad771010bb69c6b3d0e027b632bba12bcf45efe1553c7905409a7e72b3f61168c26424e4f02d7b87d181593279932650a41ae
7
+ data.tar.gz: 7d32ffe97ef06302cfdd49a67dfe0cd11989cba29b297341f5d44bcaf51584f2d6ef73c5bb7bb4acc89fe06fdd9f4a16a8449e1ced4bb469766648ad75bee790
@@ -48,10 +48,10 @@ class Docker::Image < Docker::Base
48
48
  # Insert a file into the Image, returns a new Image that has that file.
49
49
  def insert(query = {})
50
50
  body = connection.post(path_for(:insert), query)
51
- if (id = body.match(/{"status":"([a-f0-9]+)"}\z/)).nil? || id[1].empty?
52
- raise UnexpectedResponseError, "Could not find Id in '#{body}'"
51
+ if id = Docker::Util.fix_json(body).last['status']
52
+ self.class.send(:new, connection, 'id' => id)
53
53
  else
54
- self.class.send(:new, connection, 'id' => id[1])
54
+ raise UnexpectedResponseError, "Could not find Id in '#{body}'"
55
55
  end
56
56
  end
57
57
 
@@ -103,7 +103,7 @@ class Docker::Image < Docker::Base
103
103
  {}
104
104
  end
105
105
  body = conn.post('/images/create', opts)
106
- id = Docker::Util.parse_json("[#{body.gsub(/}\s*{/, '},{')}]").last['id']
106
+ id = Docker::Util.fix_json(body).last['id']
107
107
  new(conn, 'id' => id, :headers => headers)
108
108
  end
109
109
 
@@ -11,6 +11,10 @@ module Docker::Util
11
11
  raise UnexpectedResponseError, ex.message
12
12
  end
13
13
 
14
+ def fix_json(body)
15
+ parse_json("[#{body.gsub(/}\s*{/, '},{')}]")
16
+ end
17
+
14
18
  def create_tar(hash = {})
15
19
  output = StringIO.new
16
20
  Gem::Package::TarWriter.new(output) do |tar|
@@ -60,6 +64,10 @@ module Docker::Util
60
64
 
61
65
  def build_auth_header(credentials)
62
66
  credentials = credentials.to_json if credentials.is_a?(Hash)
63
- { 'X-Registry-Auth' => Base64.encode64(credentials).gsub(/\n/, '') }
67
+ encoded_creds = Base64.encode64(credentials).gsub(/\n/, '')
68
+ {
69
+ 'X-Registry-Auth' => encoded_creds,
70
+ 'X-Registry-Config' => encoded_creds,
71
+ }
64
72
  end
65
73
  end
@@ -1,7 +1,7 @@
1
1
  module Docker
2
2
  # The version of the docker-api gem.
3
- VERSION = '1.8.4'
3
+ VERSION = '1.9.0'
4
4
 
5
5
  # The version of the compatible Docker remote API.
6
- API_VERSION = '1.8'
6
+ API_VERSION = '1.9'
7
7
  end
@@ -81,8 +81,6 @@ describe Docker::Container do
81
81
  let(:top) { sleep 1; container.top }
82
82
  let!(:container) { image.run('/while') }
83
83
 
84
- after { container.kill; container.delete; image.remove }
85
-
86
84
  it 'returns the top commands as an Array', :vcr do
87
85
  top.should be_a Array
88
86
  top.should_not be_empty
@@ -260,7 +258,7 @@ describe Docker::Container do
260
258
  before { subject.start }
261
259
 
262
260
  it 'waits for the command to finish', :vcr do
263
- subject.wait['StatusCode'].should == 64
261
+ subject.wait['StatusCode'].should_not be_zero
264
262
  end
265
263
 
266
264
  context 'when an argument is given' do
@@ -41,6 +41,22 @@ describe Docker::Util do
41
41
  end
42
42
  end
43
43
 
44
+ describe '.fix_json' do
45
+ let(:response) { '{"this":"is"}{"not":"json"}' }
46
+ subject { Docker::Util.fix_json(response) }
47
+
48
+ it 'fixes the "JSON" response that Docker returns' do
49
+ subject.should == [
50
+ {
51
+ 'this' => 'is'
52
+ },
53
+ {
54
+ 'not' => 'json'
55
+ }
56
+ ]
57
+ end
58
+ end
59
+
44
60
  describe '.build_auth_header' do
45
61
  subject { described_class }
46
62
 
@@ -53,8 +69,13 @@ describe Docker::Util do
53
69
  }
54
70
  }
55
71
  let(:credential_string) { credentials.to_json }
56
- let(:x_registry_auth) { Base64.encode64(credential_string).gsub(/\n/, '') }
57
- let(:expected_headers) { { 'X-Registry-Auth' => x_registry_auth } }
72
+ let(:encoded_creds) { Base64.encode64(credential_string).gsub(/\n/, '') }
73
+ let(:expected_headers) {
74
+ {
75
+ 'X-Registry-Auth' => encoded_creds,
76
+ 'X-Registry-Config' => encoded_creds
77
+ }
78
+ }
58
79
 
59
80
 
60
81
  context 'given credentials as a Hash' do
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.8/auth
5
+ uri: unix:///var/run/docker.sock/v1.9/auth
6
6
  body:
7
7
  encoding: UTF-8
8
- string: ! '{"username":"test","password":"account","email":"test@test.com","serveraddress":"https://index.docker.io/v1/"}'
8
+ string: "{\"username\":\"test\",\"password\":\"account\",\"email\":\"test@test.com\",\"serveraddress\":\"https://index.docker.io/v1/\"}"
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.6.0
11
+ - Swipely/Docker-API 1.8.4
12
12
  Content-Type:
13
13
  - application/json
14
14
  response:
@@ -16,18 +16,18 @@ http_interactions:
16
16
  code: 200
17
17
  message:
18
18
  headers:
19
- !binary "Q29udGVudC1UeXBl":
20
- - !binary |-
21
- YXBwbGljYXRpb24vanNvbg==
22
- !binary "Q29udGVudC1MZW5ndGg=":
23
- - !binary |-
24
- Mjg=
25
- !binary "RGF0ZQ==":
26
- - !binary |-
27
- RnJpLCAyNSBPY3QgMjAxMyAxNjoyMzo1NSBHTVQ=
19
+ Content-Type:
20
+ - application/json
21
+ Date:
22
+ - Fri, 28 Feb 2014 22:10:15 GMT
23
+ Content-Length:
24
+ - '29'
25
+ Connection:
26
+ - close
28
27
  body:
29
- encoding: US-ASCII
30
- string: ! '{"Status":"Login Succeeded"}'
28
+ encoding: UTF-8
29
+ string: |
30
+ {"Status":"Login Succeeded"}
31
31
  http_version:
32
- recorded_at: Fri, 25 Oct 2013 16:23:55 GMT
33
- recorded_with: VCR 2.6.0
32
+ recorded_at: Fri, 28 Feb 2014 22:10:15 GMT
33
+ 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.8/info
5
+ uri: unix:///var/run/docker.sock/v1.9/info
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.7.6
11
+ - Swipely/Docker-API 1.8.4
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
- - Wed, 12 Feb 2014 17:06:43 GMT
24
+ - Fri, 28 Feb 2014 21:44:33 GMT
25
25
  Content-Length:
26
- - '694'
26
+ - '686'
27
27
  Connection:
28
28
  - close
29
29
  body:
30
30
  encoding: UTF-8
31
31
  string: |
32
- {"Containers":40,"Debug":0,"Driver":"devicemapper","DriverStatus":[["Pool Name","docker-8:4-394003-pool"],["Data file","/var/lib/docker/devicemapper/devicemapper/data"],["Metadata file","/var/lib/docker/devicemapper/devicemapper/metadata"],["Data Space Used","582.5 Mb"],["Data Space Total","102400.0 Mb"],["Metadata Space Used","3.4 Mb"],["Metadata Space Total","2048.0 Mb"]],"ExecutionDriver":"lxc-0.9.0","IPv4Forwarding":1,"Images":14,"IndexServerAddress":"https://index.docker.io/v1/","InitPath":"/usr/lib/docker/dockerinit","InitSha1":"c6e2619aa393a45c9d0851ef2740eb0d29368350","KernelVersion":"3.12.9-2-ARCH","MemoryLimit":1,"NEventsListener":440,"NFd":11,"NGoroutines":90,"SwapLimit":0}
32
+ {"Containers":40,"Debug":0,"Driver":"devicemapper","DriverStatus":[["Pool Name","docker-8:4-12101-pool"],["Data file","/var/lib/docker/devicemapper/devicemapper/data"],["Metadata file","/var/lib/docker/devicemapper/devicemapper/metadata"],["Data Space Used","578.2 Mb"],["Data Space Total","102400.0 Mb"],["Metadata Space Used","3.4 Mb"],["Metadata Space Total","2048.0 Mb"]],"ExecutionDriver":"lxc-","IPv4Forwarding":1,"Images":13,"IndexServerAddress":"https://index.docker.io/v1/","InitPath":"/usr/lib/docker/dockerinit","InitSha1":"bf8335fe05c36b09cc8bff1dcff478d47e622a70","KernelVersion":"3.13.5-1-ARCH","MemoryLimit":1,"NEventsListener":0,"NFd":11,"NGoroutines":12,"SwapLimit":0}
33
33
  http_version:
34
- recorded_at: Wed, 12 Feb 2014 17:06:43 GMT
34
+ recorded_at: Fri, 28 Feb 2014 21:44:33 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.8/info
5
+ uri: unix:///var/run/docker.sock/v1.9/info
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.7.6
11
+ - Swipely/Docker-API 1.8.4
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
- - Wed, 12 Feb 2014 17:06:44 GMT
24
+ - Fri, 28 Feb 2014 21:44:34 GMT
25
25
  Content-Length:
26
- - '694'
26
+ - '686'
27
27
  Connection:
28
28
  - close
29
29
  body:
30
30
  encoding: UTF-8
31
31
  string: |
32
- {"Containers":40,"Debug":0,"Driver":"devicemapper","DriverStatus":[["Pool Name","docker-8:4-394003-pool"],["Data file","/var/lib/docker/devicemapper/devicemapper/data"],["Metadata file","/var/lib/docker/devicemapper/devicemapper/metadata"],["Data Space Used","582.5 Mb"],["Data Space Total","102400.0 Mb"],["Metadata Space Used","3.4 Mb"],["Metadata Space Total","2048.0 Mb"]],"ExecutionDriver":"lxc-0.9.0","IPv4Forwarding":1,"Images":14,"IndexServerAddress":"https://index.docker.io/v1/","InitPath":"/usr/lib/docker/dockerinit","InitSha1":"c6e2619aa393a45c9d0851ef2740eb0d29368350","KernelVersion":"3.12.9-2-ARCH","MemoryLimit":1,"NEventsListener":440,"NFd":11,"NGoroutines":90,"SwapLimit":0}
32
+ {"Containers":40,"Debug":0,"Driver":"devicemapper","DriverStatus":[["Pool Name","docker-8:4-12101-pool"],["Data file","/var/lib/docker/devicemapper/devicemapper/data"],["Metadata file","/var/lib/docker/devicemapper/devicemapper/metadata"],["Data Space Used","578.2 Mb"],["Data Space Total","102400.0 Mb"],["Metadata Space Used","3.4 Mb"],["Metadata Space Total","2048.0 Mb"]],"ExecutionDriver":"lxc-","IPv4Forwarding":1,"Images":13,"IndexServerAddress":"https://index.docker.io/v1/","InitPath":"/usr/lib/docker/dockerinit","InitSha1":"bf8335fe05c36b09cc8bff1dcff478d47e622a70","KernelVersion":"3.13.5-1-ARCH","MemoryLimit":1,"NEventsListener":0,"NFd":11,"NGoroutines":12,"SwapLimit":0}
33
33
  http_version:
34
- recorded_at: Wed, 12 Feb 2014 17:06:44 GMT
34
+ recorded_at: Fri, 28 Feb 2014 21:44:34 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.8/version
5
+ uri: unix:///var/run/docker.sock/v1.9/version
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.7.6
11
+ - Swipely/Docker-API 1.8.4
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
- - Wed, 12 Feb 2014 17:06:43 GMT
24
+ - Fri, 28 Feb 2014 21:44:33 GMT
25
25
  Content-Length:
26
- - '122'
26
+ - '126'
27
27
  Connection:
28
28
  - close
29
29
  body:
30
30
  encoding: UTF-8
31
31
  string: |
32
- {"Arch":"amd64","GitCommit":"cc3a8c8","GoVersion":"go1.2","KernelVersion":"3.12.9-2-ARCH","Os":"linux","Version":"0.8.0"}
32
+ {"Arch":"amd64","GitCommit":"31e08fd","GoVersion":"go1.2","KernelVersion":"3.13.5-1-ARCH","Os":"linux","Version":"0.8.1-dev"}
33
33
  http_version:
34
- recorded_at: Wed, 12 Feb 2014 17:06:43 GMT
34
+ recorded_at: Fri, 28 Feb 2014 21:44:33 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.8/containers/create
5
+ uri: unix:///var/run/docker.sock/v1.9/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.7.6
11
+ - Swipely/Docker-API 1.8.4
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
- - Wed, 12 Feb 2014 17:05:55 GMT
22
+ - Fri, 28 Feb 2014 21:42:33 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":"00b03137788eaa1b92c66a9ef299d967f3ef1fa181df0ce8ad608b6e453e95b7","Warnings":null}
30
+ {"Id":"fb0b786ac0464f398cfc9e1a42a5b552809c2fe9c6ccb50c8f55aa280b16a921","Warnings":null}
31
31
  http_version:
32
- recorded_at: Wed, 12 Feb 2014 17:05:55 GMT
32
+ recorded_at: Fri, 28 Feb 2014 21:42:33 GMT
33
33
  - request:
34
34
  method: get
35
- uri: unix:///var/run/docker.sock/v1.8/containers/json?all=true
35
+ uri: unix:///var/run/docker.sock/v1.9/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.7.6
41
+ - Swipely/Docker-API 1.8.4
42
42
  Content-Type:
43
43
  - text/plain
44
44
  response:
@@ -46,10 +46,10 @@ http_interactions:
46
46
  code: 200
47
47
  message:
48
48
  headers:
49
- Date:
50
- - Wed, 12 Feb 2014 17:05:55 GMT
51
49
  Content-Type:
52
- - text/plain; charset=utf-8
50
+ - application/json
51
+ Date:
52
+ - Fri, 28 Feb 2014 21:42:33 GMT
53
53
  Connection:
54
54
  - close
55
55
  Transfer-Encoding:
@@ -57,44 +57,58 @@ http_interactions:
57
57
  body:
58
58
  encoding: UTF-8
59
59
  string: |-
60
- [{"Command":"ls ","Created":1392224755,"Id":"00b03137788eaa1b92c66a9ef299d967f3ef1fa181df0ce8ad608b6e453e95b7","Image":"base2:latest","Names":["/jolly_franklin"],"Ports":[],"Status":"Exit 0"}
61
- ,{"Command":"ls ","Created":1392224754,"Id":"083d93f684c015450c2870ed3272f92f3eaf9488db088b6a0bb0527486c74480","Image":"base2:latest","Names":["/thirsty_ptolemy"],"Ports":[],"Status":"Exit 0"}
62
- ,{"Command":"date ","Created":1392224754,"Id":"b95fc91a57b0342a30991266de97a29f509eccf1b4c5c34a299a463bfbd95766","Image":"base2:latest","Names":["/angry_einstein"],"Ports":[],"Status":"Exit 0"}
63
- ,{"Command":"pwd ","Created":1392224754,"Id":"ccc53890fd4d75f71d0d762ea8f293263abb046cccecf7f2c2fb6c1736c112ab","Image":"dae27da5a73f","Names":["/berserk_pasteur"],"Ports":[],"Status":"Exit 0"}
64
- ,{"Command":true,"Created":1392224749,"Id":"6f0873d9e37bc1d0878f2d397c0eba3e869969a3e4ff4ea92a7f64951cd84762","Image":"base2:latest","Names":["/clever_darwin"],"Ports":[],"Status":"Exit 0"}
65
- ,{"Command":true,"Created":1392224747,"Id":"96d2323cd50e045118d05e31244ef0b7e889371331cf38da7569e2bc7381b68f","Image":"base2:latest","Names":["/grave_bohr"],"Ports":[],"Status":"Exit 0"}
66
- ,{"Command":"ls ","Created":1392224746,"Id":"28d003c06e3f52d738615f1d36e6f5495d55be378f3c3d855957c5b52eadb476","Image":"328de6c59bef","Names":["/loving_shockley"],"Ports":[],"Status":"Exit 0"}
67
- ,{"Command":"pwd ","Created":1392224742,"Id":"d062ac41f03d49177f1500f219a91ad4e2f51a168b9737f5066965941a52debe","Image":"base2:latest","Names":["/furious_albattani"],"Ports":[],"Status":"Exit 0"}
68
- ,{"Command":"lol not a real command","Created":1392224741,"Id":"ff01ea70677f91c239614d06d5594bee143047e2a8144b60ee012f5cd4619729","Image":"base2:latest","Names":["/mad_bohr"],"Ports":[],"Status":"Exit 127"}
69
- ,{"Command":"sleep 5","Created":1392224740,"Id":"b60e2d88cbbdf0b6f2e49eda5354b65a8b8a36da47cc6983f36b38f49183d0c2","Image":"base2:latest","Names":["/evil_euclid"],"Ports":[],"Status":"Exit 0"}
70
- ,{"Command":"sleep 5","Created":1392224734,"Id":"8ca4734f0a48caa34f8c0ac2a1ab59de2e00493e6e5786d177eb2e62907b4725","Image":"base2:latest","Names":["/kickass_lovelace"],"Ports":[],"Status":"Exit 0"}
71
- ,{"Command":"tar nonsense","Created":1392224733,"Id":"f59a41eaf3fe69c574fea81ba8fb48988c25727885e0a4781354752631ab682e","Image":"base2:latest","Names":["/thirsty_fermi"],"Ports":[],"Status":"Exit 64"}
72
- ,{"Command":"sleep 50","Created":1392224733,"Id":"806cc3e41304703c5312c3aafe63bee14c90dec0eaee9e7acbcfc9d747c2acda","Image":"base2:latest","Names":["/drunk_babbage"],"Ports":[],"Status":"Up 21 seconds"}
73
- ,{"Command":"ls ","Created":1392224731,"Id":"6a81da03ece735f7300105986839f522d3c0ca2015734f553307465199a67a74","Image":"base2:latest","Names":["/furious_darwin"],"Ports":[],"Status":"Exit 0"}
74
- ,{"Command":true,"Created":1392224730,"Id":"75e9d159b18c496eaefb8a9303a9e497515533ac804c1984593e423ccf361d8c","Image":"base2:latest","Names":["/hungry_pasteur"],"Ports":[],"Status":"Exit 2"}
75
- ,{"Command":"test -d /foo","Created":1392224730,"Id":"1d7ad40cf94fe20c7b72186afb550f742dba8d4e3c5712649202eacedc353610","Image":"base2:latest","Names":["/grave_brown"],"Ports":[],"Status":"Exit 0"}
76
- ,{"Command":"pwd ","Created":1392224729,"Id":"b97622bf74dc3bd4a47cfc1fcb00aad1a73b6c602dc2fbcb09fbbcb6e60ad547","Image":"base2:latest","Names":["/suspicious_euclid"],"Ports":[],"Status":"Exit 0"}
77
- ,{"Command":"pwd ","Created":1392224728,"Id":"aca0db5a8af5667cfb798ca4fa2650d5dc96265005b21f635755a4e7ae3c22a6","Image":"base2:latest","Names":["/furious_poincare"],"Ports":[],"Status":"Exit 0"}
78
- ,{"Command":"rm -rf / --no-preserve-root","Created":1392224727,"Id":"68c652097593ef2d2469e0ec0a28ae07bb8cb6f6066e36bd2a689bdf1c75b67a","Image":"base2:latest","Names":["/trusting_lovelace"],"Ports":[],"Status":"Exit 1"}
79
- ,{"Command":"touch /test","Created":1392224727,"Id":"4abac1fa781baa731e67c8623ad09277fcab360e96727897a995d047b706d1b0","Image":"base2:latest","Names":["/evil_bardeen"],"Ports":[],"Status":"Exit 0"}
80
- ,{"Command":"touch /test","Created":1392224725,"Id":"7fc5da303ee405d249c67fb17ff9806d358e031764002beef9a9030ee0e6150a","Image":"base2:latest","Names":["/loving_lovelace"],"Ports":[],"Status":"Exit 0"}
81
- ,{"Command":"/bin/sh -c printf '#! /bin/sh\\nwhile true\\ndo\\ntrue\\ndone\\n' \u003e /while \u0026\u0026 chmod +x /while","Created":1392224716,"Id":"cacaaf438ce9f95013b62be6121f0e024854326e28bb9daea0e10d73927b4d8e","Image":"base2:latest","Names":["/distracted_tesla"],"Ports":[],"Status":"Exit 0"}
82
- ,{"Command":"rm -rf /root","Created":1392224712,"Id":"8662d957c62499b15195a9c4b07d0a60284b13309cac13b3dcc438be317c3333","Image":"base2:latest","Names":["/stoic_turing"],"Ports":[],"Status":"Exit 0"}
83
- ,{"Command":true,"Created":1392224711,"Id":"956835aa46c1d76b349a08fa048e5422fa866e1a90b3ef833232b292e1e57a8d","Image":"base2:latest","Names":["/bob"],"Ports":[],"Status":"Exit 0"}
84
- ,{"Command":true,"Created":1392224710,"Id":"84eaae34df6b150fb24ff9cb1a8f018a730da82f54bb96cef9875d3c7d443064","Image":"base2:latest","Names":["/boring_brattain"],"Ports":[],"Status":"Exit 0"}
85
- ,{"Command":"sleep 5","Created":1392151930,"Id":"d51ef17bd97e56413bf82176cbc569d062a9f544ac412d406d83b5bc1e171fa0","Image":"base2:latest","Names":["/clever_mclean"],"Ports":[],"Status":"Exit 0"}
60
+ [{"Command":"ls ","Created":1393623752,"Id":"fb0b786ac0464f398cfc9e1a42a5b552809c2fe9c6ccb50c8f55aa280b16a921","Image":"base2:latest","Names":["/romantic_einstein"],"Ports":[],"Status":"Exit 0"}
61
+ ,{"Command":"ls ","Created":1393623752,"Id":"23c1a78b560afba941db345e5e9e7618ad5a5edf2ac39764249089e906fc201c","Image":"base2:latest","Names":["/goofy_bell"],"Ports":[],"Status":"Exit 0"}
62
+ ,{"Command":"date ","Created":1393623752,"Id":"ea36d22cc3773deafae3cd7f87a51a6c2743d32c60d1b85a13b3f65fd609921a","Image":"base2:latest","Names":["/thirsty_poincare"],"Ports":[],"Status":"Exit 0"}
63
+ ,{"Command":true,"Created":1393623751,"Id":"b29004c45bb59fe16cc8e162e35e19c94616eed780b215e7bbddd32e0111c6e5","Image":"base2:latest","Names":["/clever_poincare"],"Ports":[],"Status":"Exit 0"}
64
+ ,{"Command":true,"Created":1393623748,"Id":"0f7e8f41afb349a219839b88f61b6c5cebe684c022214addc0f376518089dfd8","Image":"base2:latest","Names":["/focused_morse"],"Ports":[],"Status":"Exit 0"}
65
+ ,{"Command":"ls ","Created":1393623746,"Id":"e0f9a937835c13023e5283a6a5ab0ef5b3e8e25301f5f50c6352fa9c58248dbf","Image":"4238b606070b","Names":["/elegant_babbage"],"Ports":[],"Status":"Exit 0"}
66
+ ,{"Command":"pwd ","Created":1393623743,"Id":"4389860f19097b16954f3c64cfdf5180cca3f52ad824b2bd794c804e9f0ac8a1","Image":"base2:latest","Names":["/high_lumiere"],"Ports":[],"Status":"Exit 0"}
67
+ ,{"Command":"lol not a real command","Created":1393623741,"Id":"1a437c19966fe2cbd1eb5c5a85d34042f657259a72ad5043d078c39b3e8a7d60","Image":"base2:latest","Names":["/goofy_thompson"],"Ports":[],"Status":"Exit 255"}
68
+ ,{"Command":"sleep 5","Created":1393623740,"Id":"c1702eab6f9a5dbe0060fbcbe0c223b7a19bac405854684683695b6b9f614414","Image":"base2:latest","Names":["/thirsty_euclid"],"Ports":[],"Status":"Exit 0"}
69
+ ,{"Command":"sleep 5","Created":1393623733,"Id":"0517c96c3374914c500082770534605888b8894370ee4ec271e334b2d20145a0","Image":"base2:latest","Names":["/focused_shockley"],"Ports":[],"Status":"Exit 0"}
70
+ ,{"Command":"tar nonsense","Created":1393623731,"Id":"2064e9cbfb6e1f01c9a20d2b8a1b96cf89b487f95dbdf3dd229098def6cac4f1","Image":"base2:latest","Names":["/boring_newton"],"Ports":[],"Status":"Exit 255"}
71
+ ,{"Command":"sleep 50","Created":1393623728,"Id":"641bc0dca4e49773c591c5c6abbd35be1b256bb8cd79e2f28e6958891208713a","Image":"base2:latest","Names":["/romantic_nobel"],"Ports":[],"Status":"Up 21 seconds"}
72
+ ,{"Command":"ls ","Created":1393623726,"Id":"c1c377e29fa200a68bb1416ea44edd939f466e08f0ce95803ddb8b805eca7d20","Image":"base2:latest","Names":["/ecstatic_archimedes"],"Ports":[],"Status":"Exit 0"}
73
+ ,{"Command":true,"Created":1393623725,"Id":"6b81a0b2d2b9377b34cacadc0caab3727992025133072a6dc8cfd113d0779aa1","Image":"base2:latest","Names":["/prickly_newton1"],"Ports":[],"Status":"Exit 0"}
74
+ ,{"Command":"test -d /foo","Created":1393623723,"Id":"418e67b935e1e25f7b70925e29745a490e4d5b75a9c320b6ea9d9c381a764ef7","Image":"base2:latest","Names":["/berserk_lumiere"],"Ports":[],"Status":"Exit 0"}
75
+ ,{"Command":"pwd ","Created":1393623722,"Id":"e1cb17367cf3237b1a4d2022048077e2632581c2bffdb72fe975d8616a7b65b8","Image":"base2:latest","Names":["/grave_galileo"],"Ports":[],"Status":"Exit 0"}
76
+ ,{"Command":"pwd ","Created":1393623720,"Id":"febc9d46a787fcb7b774b578708d850960265351a9694060c8cbcf08d9103c17","Image":"base2:latest","Names":["/silly_babbage"],"Ports":[],"Status":"Exit 0"}
77
+ ,{"Command":"rm -rf / --no-preserve-root","Created":1393623718,"Id":"c666534d118a485c3f340d154308857640899f10faf686f6cfbd0028d232c8ba","Image":"base2:latest","Names":["/sick_euclid"],"Ports":[],"Status":"Exit 255"}
78
+ ,{"Command":"touch /test","Created":1393623716,"Id":"7c27079e7ae5aaca763c0f0ea72ef6f656409713031c8b51116de27612423912","Image":"base2:latest","Names":["/prickly_newton"],"Ports":[],"Status":"Exit 0"}
79
+ ,{"Command":"touch /test","Created":1393623713,"Id":"d9ca2f0d85c136ae72d03c4053c1175b103154bba20d493812ff8d2803534b8a","Image":"base2:latest","Names":["/boring_pare"],"Ports":[],"Status":"Exit 0"}
80
+ ,{"Command":"/bin/sh -c printf '#! /bin/sh\\nwhile true\\ndo\\ntrue\\ndone\\n' \u003e /while \u0026\u0026 chmod +x /while","Created":1393623705,"Id":"ec65707c842369bd6bc8ea61eee7f499e190be4a04b010370ed501d380c03317","Image":"base2:latest","Names":["/silly_pasteur"],"Ports":[],"Status":"Exit 0"}
81
+ ,{"Command":"rm -rf /root","Created":1393623703,"Id":"b308381c9274c9c2e398635eeca5988c015268bf7e2a558eee0498e25629adc7","Image":"base2:latest","Names":["/thirsty_albattani"],"Ports":[],"Status":"Exit 0"}
82
+ ,{"Command":true,"Created":1393623703,"Id":"1f4356ab785f38d193d074a67622f629b7f6abaa6dca0e9a415a544a91e987ce","Image":"base2:latest","Names":["/bob"],"Ports":[],"Status":"Exit 0"}
83
+ ,{"Command":true,"Created":1393623703,"Id":"9c286a4bdae3f4ee5c581a26c742d80642bedc4b48a00365f5723f197c592cf2","Image":"base2:latest","Names":["/trusting_torvalds"],"Ports":[],"Status":"Exit 0"}
84
+ ,{"Command":"cat /Dockerfile","Created":1393623608,"Id":"05904073890bad4e07d9d9aa50c618915abafa8f4fe69f757c4b02f18c4b1ba1","Image":"swipely/base2:latest","Names":["/pensive_davinci"],"Ports":[],"Status":"Exit 0"}
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"}
86
100
  ]
87
101
  http_version:
88
- recorded_at: Wed, 12 Feb 2014 17:05:55 GMT
102
+ recorded_at: Fri, 28 Feb 2014 21:42:33 GMT
89
103
  - request:
90
104
  method: get
91
- uri: unix:///var/run/docker.sock/v1.8/containers/json?all=true
105
+ uri: unix:///var/run/docker.sock/v1.9/containers/json?all=true
92
106
  body:
93
107
  encoding: US-ASCII
94
108
  string: ''
95
109
  headers:
96
110
  User-Agent:
97
- - Swipely/Docker-API 1.7.6
111
+ - Swipely/Docker-API 1.8.4
98
112
  Content-Type:
99
113
  - text/plain
100
114
  response:
@@ -102,10 +116,10 @@ http_interactions:
102
116
  code: 200
103
117
  message:
104
118
  headers:
105
- Date:
106
- - Wed, 12 Feb 2014 17:05:55 GMT
107
119
  Content-Type:
108
- - text/plain; charset=utf-8
120
+ - application/json
121
+ Date:
122
+ - Fri, 28 Feb 2014 21:42:33 GMT
109
123
  Connection:
110
124
  - close
111
125
  Transfer-Encoding:
@@ -113,33 +127,47 @@ http_interactions:
113
127
  body:
114
128
  encoding: UTF-8
115
129
  string: |-
116
- [{"Command":"ls ","Created":1392224755,"Id":"00b03137788eaa1b92c66a9ef299d967f3ef1fa181df0ce8ad608b6e453e95b7","Image":"base2:latest","Names":["/jolly_franklin"],"Ports":[],"Status":"Exit 0"}
117
- ,{"Command":"ls ","Created":1392224754,"Id":"083d93f684c015450c2870ed3272f92f3eaf9488db088b6a0bb0527486c74480","Image":"base2:latest","Names":["/thirsty_ptolemy"],"Ports":[],"Status":"Exit 0"}
118
- ,{"Command":"date ","Created":1392224754,"Id":"b95fc91a57b0342a30991266de97a29f509eccf1b4c5c34a299a463bfbd95766","Image":"base2:latest","Names":["/angry_einstein"],"Ports":[],"Status":"Exit 0"}
119
- ,{"Command":"pwd ","Created":1392224754,"Id":"ccc53890fd4d75f71d0d762ea8f293263abb046cccecf7f2c2fb6c1736c112ab","Image":"dae27da5a73f","Names":["/berserk_pasteur"],"Ports":[],"Status":"Exit 0"}
120
- ,{"Command":true,"Created":1392224749,"Id":"6f0873d9e37bc1d0878f2d397c0eba3e869969a3e4ff4ea92a7f64951cd84762","Image":"base2:latest","Names":["/clever_darwin"],"Ports":[],"Status":"Exit 0"}
121
- ,{"Command":true,"Created":1392224747,"Id":"96d2323cd50e045118d05e31244ef0b7e889371331cf38da7569e2bc7381b68f","Image":"base2:latest","Names":["/grave_bohr"],"Ports":[],"Status":"Exit 0"}
122
- ,{"Command":"ls ","Created":1392224746,"Id":"28d003c06e3f52d738615f1d36e6f5495d55be378f3c3d855957c5b52eadb476","Image":"328de6c59bef","Names":["/loving_shockley"],"Ports":[],"Status":"Exit 0"}
123
- ,{"Command":"pwd ","Created":1392224742,"Id":"d062ac41f03d49177f1500f219a91ad4e2f51a168b9737f5066965941a52debe","Image":"base2:latest","Names":["/furious_albattani"],"Ports":[],"Status":"Exit 0"}
124
- ,{"Command":"lol not a real command","Created":1392224741,"Id":"ff01ea70677f91c239614d06d5594bee143047e2a8144b60ee012f5cd4619729","Image":"base2:latest","Names":["/mad_bohr"],"Ports":[],"Status":"Exit 127"}
125
- ,{"Command":"sleep 5","Created":1392224740,"Id":"b60e2d88cbbdf0b6f2e49eda5354b65a8b8a36da47cc6983f36b38f49183d0c2","Image":"base2:latest","Names":["/evil_euclid"],"Ports":[],"Status":"Exit 0"}
126
- ,{"Command":"sleep 5","Created":1392224734,"Id":"8ca4734f0a48caa34f8c0ac2a1ab59de2e00493e6e5786d177eb2e62907b4725","Image":"base2:latest","Names":["/kickass_lovelace"],"Ports":[],"Status":"Exit 0"}
127
- ,{"Command":"tar nonsense","Created":1392224733,"Id":"f59a41eaf3fe69c574fea81ba8fb48988c25727885e0a4781354752631ab682e","Image":"base2:latest","Names":["/thirsty_fermi"],"Ports":[],"Status":"Exit 64"}
128
- ,{"Command":"sleep 50","Created":1392224733,"Id":"806cc3e41304703c5312c3aafe63bee14c90dec0eaee9e7acbcfc9d747c2acda","Image":"base2:latest","Names":["/drunk_babbage"],"Ports":[],"Status":"Up 21 seconds"}
129
- ,{"Command":"ls ","Created":1392224731,"Id":"6a81da03ece735f7300105986839f522d3c0ca2015734f553307465199a67a74","Image":"base2:latest","Names":["/furious_darwin"],"Ports":[],"Status":"Exit 0"}
130
- ,{"Command":true,"Created":1392224730,"Id":"75e9d159b18c496eaefb8a9303a9e497515533ac804c1984593e423ccf361d8c","Image":"base2:latest","Names":["/hungry_pasteur"],"Ports":[],"Status":"Exit 2"}
131
- ,{"Command":"test -d /foo","Created":1392224730,"Id":"1d7ad40cf94fe20c7b72186afb550f742dba8d4e3c5712649202eacedc353610","Image":"base2:latest","Names":["/grave_brown"],"Ports":[],"Status":"Exit 0"}
132
- ,{"Command":"pwd ","Created":1392224729,"Id":"b97622bf74dc3bd4a47cfc1fcb00aad1a73b6c602dc2fbcb09fbbcb6e60ad547","Image":"base2:latest","Names":["/suspicious_euclid"],"Ports":[],"Status":"Exit 0"}
133
- ,{"Command":"pwd ","Created":1392224728,"Id":"aca0db5a8af5667cfb798ca4fa2650d5dc96265005b21f635755a4e7ae3c22a6","Image":"base2:latest","Names":["/furious_poincare"],"Ports":[],"Status":"Exit 0"}
134
- ,{"Command":"rm -rf / --no-preserve-root","Created":1392224727,"Id":"68c652097593ef2d2469e0ec0a28ae07bb8cb6f6066e36bd2a689bdf1c75b67a","Image":"base2:latest","Names":["/trusting_lovelace"],"Ports":[],"Status":"Exit 1"}
135
- ,{"Command":"touch /test","Created":1392224727,"Id":"4abac1fa781baa731e67c8623ad09277fcab360e96727897a995d047b706d1b0","Image":"base2:latest","Names":["/evil_bardeen"],"Ports":[],"Status":"Exit 0"}
136
- ,{"Command":"touch /test","Created":1392224725,"Id":"7fc5da303ee405d249c67fb17ff9806d358e031764002beef9a9030ee0e6150a","Image":"base2:latest","Names":["/loving_lovelace"],"Ports":[],"Status":"Exit 0"}
137
- ,{"Command":"/bin/sh -c printf '#! /bin/sh\\nwhile true\\ndo\\ntrue\\ndone\\n' \u003e /while \u0026\u0026 chmod +x /while","Created":1392224716,"Id":"cacaaf438ce9f95013b62be6121f0e024854326e28bb9daea0e10d73927b4d8e","Image":"base2:latest","Names":["/distracted_tesla"],"Ports":[],"Status":"Exit 0"}
138
- ,{"Command":"rm -rf /root","Created":1392224712,"Id":"8662d957c62499b15195a9c4b07d0a60284b13309cac13b3dcc438be317c3333","Image":"base2:latest","Names":["/stoic_turing"],"Ports":[],"Status":"Exit 0"}
139
- ,{"Command":true,"Created":1392224711,"Id":"956835aa46c1d76b349a08fa048e5422fa866e1a90b3ef833232b292e1e57a8d","Image":"base2:latest","Names":["/bob"],"Ports":[],"Status":"Exit 0"}
140
- ,{"Command":true,"Created":1392224710,"Id":"84eaae34df6b150fb24ff9cb1a8f018a730da82f54bb96cef9875d3c7d443064","Image":"base2:latest","Names":["/boring_brattain"],"Ports":[],"Status":"Exit 0"}
141
- ,{"Command":"sleep 5","Created":1392151930,"Id":"d51ef17bd97e56413bf82176cbc569d062a9f544ac412d406d83b5bc1e171fa0","Image":"base2:latest","Names":["/clever_mclean"],"Ports":[],"Status":"Exit 0"}
130
+ [{"Command":"ls ","Created":1393623752,"Id":"fb0b786ac0464f398cfc9e1a42a5b552809c2fe9c6ccb50c8f55aa280b16a921","Image":"base2:latest","Names":["/romantic_einstein"],"Ports":[],"Status":"Exit 0"}
131
+ ,{"Command":"ls ","Created":1393623752,"Id":"23c1a78b560afba941db345e5e9e7618ad5a5edf2ac39764249089e906fc201c","Image":"base2:latest","Names":["/goofy_bell"],"Ports":[],"Status":"Exit 0"}
132
+ ,{"Command":"date ","Created":1393623752,"Id":"ea36d22cc3773deafae3cd7f87a51a6c2743d32c60d1b85a13b3f65fd609921a","Image":"base2:latest","Names":["/thirsty_poincare"],"Ports":[],"Status":"Exit 0"}
133
+ ,{"Command":true,"Created":1393623751,"Id":"b29004c45bb59fe16cc8e162e35e19c94616eed780b215e7bbddd32e0111c6e5","Image":"base2:latest","Names":["/clever_poincare"],"Ports":[],"Status":"Exit 0"}
134
+ ,{"Command":true,"Created":1393623748,"Id":"0f7e8f41afb349a219839b88f61b6c5cebe684c022214addc0f376518089dfd8","Image":"base2:latest","Names":["/focused_morse"],"Ports":[],"Status":"Exit 0"}
135
+ ,{"Command":"ls ","Created":1393623746,"Id":"e0f9a937835c13023e5283a6a5ab0ef5b3e8e25301f5f50c6352fa9c58248dbf","Image":"4238b606070b","Names":["/elegant_babbage"],"Ports":[],"Status":"Exit 0"}
136
+ ,{"Command":"pwd ","Created":1393623743,"Id":"4389860f19097b16954f3c64cfdf5180cca3f52ad824b2bd794c804e9f0ac8a1","Image":"base2:latest","Names":["/high_lumiere"],"Ports":[],"Status":"Exit 0"}
137
+ ,{"Command":"lol not a real command","Created":1393623741,"Id":"1a437c19966fe2cbd1eb5c5a85d34042f657259a72ad5043d078c39b3e8a7d60","Image":"base2:latest","Names":["/goofy_thompson"],"Ports":[],"Status":"Exit 255"}
138
+ ,{"Command":"sleep 5","Created":1393623740,"Id":"c1702eab6f9a5dbe0060fbcbe0c223b7a19bac405854684683695b6b9f614414","Image":"base2:latest","Names":["/thirsty_euclid"],"Ports":[],"Status":"Exit 0"}
139
+ ,{"Command":"sleep 5","Created":1393623733,"Id":"0517c96c3374914c500082770534605888b8894370ee4ec271e334b2d20145a0","Image":"base2:latest","Names":["/focused_shockley"],"Ports":[],"Status":"Exit 0"}
140
+ ,{"Command":"tar nonsense","Created":1393623731,"Id":"2064e9cbfb6e1f01c9a20d2b8a1b96cf89b487f95dbdf3dd229098def6cac4f1","Image":"base2:latest","Names":["/boring_newton"],"Ports":[],"Status":"Exit 255"}
141
+ ,{"Command":"sleep 50","Created":1393623728,"Id":"641bc0dca4e49773c591c5c6abbd35be1b256bb8cd79e2f28e6958891208713a","Image":"base2:latest","Names":["/romantic_nobel"],"Ports":[],"Status":"Up 21 seconds"}
142
+ ,{"Command":"ls ","Created":1393623726,"Id":"c1c377e29fa200a68bb1416ea44edd939f466e08f0ce95803ddb8b805eca7d20","Image":"base2:latest","Names":["/ecstatic_archimedes"],"Ports":[],"Status":"Exit 0"}
143
+ ,{"Command":true,"Created":1393623725,"Id":"6b81a0b2d2b9377b34cacadc0caab3727992025133072a6dc8cfd113d0779aa1","Image":"base2:latest","Names":["/prickly_newton1"],"Ports":[],"Status":"Exit 0"}
144
+ ,{"Command":"test -d /foo","Created":1393623723,"Id":"418e67b935e1e25f7b70925e29745a490e4d5b75a9c320b6ea9d9c381a764ef7","Image":"base2:latest","Names":["/berserk_lumiere"],"Ports":[],"Status":"Exit 0"}
145
+ ,{"Command":"pwd ","Created":1393623722,"Id":"e1cb17367cf3237b1a4d2022048077e2632581c2bffdb72fe975d8616a7b65b8","Image":"base2:latest","Names":["/grave_galileo"],"Ports":[],"Status":"Exit 0"}
146
+ ,{"Command":"pwd ","Created":1393623720,"Id":"febc9d46a787fcb7b774b578708d850960265351a9694060c8cbcf08d9103c17","Image":"base2:latest","Names":["/silly_babbage"],"Ports":[],"Status":"Exit 0"}
147
+ ,{"Command":"rm -rf / --no-preserve-root","Created":1393623718,"Id":"c666534d118a485c3f340d154308857640899f10faf686f6cfbd0028d232c8ba","Image":"base2:latest","Names":["/sick_euclid"],"Ports":[],"Status":"Exit 255"}
148
+ ,{"Command":"touch /test","Created":1393623716,"Id":"7c27079e7ae5aaca763c0f0ea72ef6f656409713031c8b51116de27612423912","Image":"base2:latest","Names":["/prickly_newton"],"Ports":[],"Status":"Exit 0"}
149
+ ,{"Command":"touch /test","Created":1393623713,"Id":"d9ca2f0d85c136ae72d03c4053c1175b103154bba20d493812ff8d2803534b8a","Image":"base2:latest","Names":["/boring_pare"],"Ports":[],"Status":"Exit 0"}
150
+ ,{"Command":"/bin/sh -c printf '#! /bin/sh\\nwhile true\\ndo\\ntrue\\ndone\\n' \u003e /while \u0026\u0026 chmod +x /while","Created":1393623705,"Id":"ec65707c842369bd6bc8ea61eee7f499e190be4a04b010370ed501d380c03317","Image":"base2:latest","Names":["/silly_pasteur"],"Ports":[],"Status":"Exit 0"}
151
+ ,{"Command":"rm -rf /root","Created":1393623703,"Id":"b308381c9274c9c2e398635eeca5988c015268bf7e2a558eee0498e25629adc7","Image":"base2:latest","Names":["/thirsty_albattani"],"Ports":[],"Status":"Exit 0"}
152
+ ,{"Command":true,"Created":1393623703,"Id":"1f4356ab785f38d193d074a67622f629b7f6abaa6dca0e9a415a544a91e987ce","Image":"base2:latest","Names":["/bob"],"Ports":[],"Status":"Exit 0"}
153
+ ,{"Command":true,"Created":1393623703,"Id":"9c286a4bdae3f4ee5c581a26c742d80642bedc4b48a00365f5723f197c592cf2","Image":"base2:latest","Names":["/trusting_torvalds"],"Ports":[],"Status":"Exit 0"}
154
+ ,{"Command":"cat /Dockerfile","Created":1393623608,"Id":"05904073890bad4e07d9d9aa50c618915abafa8f4fe69f757c4b02f18c4b1ba1","Image":"swipely/base2:latest","Names":["/pensive_davinci"],"Ports":[],"Status":"Exit 0"}
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"}
142
170
  ]
143
171
  http_version:
144
- recorded_at: Wed, 12 Feb 2014 17:05:55 GMT
172
+ recorded_at: Fri, 28 Feb 2014 21:42:33 GMT
145
173
  recorded_with: VCR 2.8.0