docker-api 1.11.2 → 1.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/docker/image.rb +10 -10
  4. data/lib/docker/version.rb +2 -2
  5. data/spec/docker/container_spec.rb +0 -8
  6. data/spec/docker/image_spec.rb +3 -3
  7. data/spec/docker_spec.rb +6 -4
  8. data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +6 -6
  9. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +7 -7
  10. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +7 -7
  11. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +7 -7
  12. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +77 -65
  13. data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +15 -15
  14. data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +15 -15
  15. data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +22 -24
  16. data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +17 -17
  17. data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +12 -12
  18. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +41 -41
  19. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +26 -26
  20. data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +13 -13
  21. data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +7 -7
  22. data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +17 -17
  23. data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +453693 -17
  24. data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +13 -13
  25. data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +13 -13
  26. data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +41 -35
  27. data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/returns_the_error_message.yml +11 -11
  28. data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +11 -11
  29. data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +42 -42
  30. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +16 -16
  31. 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 +46 -47
  32. data/spec/vcr/Docker_Container/_start/starts_the_container.yml +23 -23
  33. data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +45 -39
  34. data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +27 -23
  35. data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +16 -16
  36. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +12 -12
  37. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +16 -16
  38. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +13 -33
  39. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +6 -6
  40. 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
  41. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +6 -6
  42. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +6 -6
  43. 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 +11 -7
  44. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml +8 -196
  45. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +24 -20
  46. 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 +46 -30
  47. 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 +21 -669
  48. data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +7 -7
  49. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +9 -9
  50. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +27 -25
  51. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +12 -12
  52. data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +6 -6
  53. data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +27 -33
  54. data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +29 -878
  55. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +29 -45
  56. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +29 -51
  57. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +29 -28
  58. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +6 -6
  59. data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +32 -31
  60. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +11 -11
  61. data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +67 -227
  62. data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +61 -43
  63. data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +40 -203
  64. data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +22 -23
  65. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +19 -19
  66. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +19 -19
  67. 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
  68. data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +77 -72
  69. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +9 -9
  70. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 06dfcd341586f0162d84a1406ee99d22ca6b23bb
4
- data.tar.gz: 66c9b93a459fbe07b6b56cf80cc09e5ed15a0453
3
+ metadata.gz: f674334f3696be23602d5b034b0708d8e4397f43
4
+ data.tar.gz: ffd9edaae68211c2ba892bd149f697b00160bcc7
5
5
  SHA512:
6
- metadata.gz: 248bf4b414b08b6f2a386aeb13a1fe5e9e2e64a620b9c923ff23d14cd1ed4a42798e8363c02b08d49c3cea2db73bac7cdf8baea4b87110854de2a86cd731d577
7
- data.tar.gz: 5fd769391ab794293bac92344de1badee771f1360aaf50e15f7217f12e652a7efb3dce2a76fcba2c470c72728c944c557007d4fc28d4e954fcd27cd0b8706534
6
+ metadata.gz: f51d6900da3f6f294fc1206736097e4572081a6e811093d263887d1128bfb240ef3be5c880f2c4e92ab1c0fd6768bebfd4a6000243c450b998249c853d8ea9a9
7
+ data.tar.gz: c6bce084b08a3c9083c90a8d9645c8752c54e12a8b88ad2370356e1ef9edc775e286c08e4d8284c685d24d67ea8b309a8000edc1d3f4f37d34615ef9696dd8a5
data/README.md CHANGED
@@ -2,7 +2,7 @@ docker-api
2
2
  ==========
3
3
  [![Gem Version](https://badge.fury.io/rb/docker-api.png)](http://badge.fury.io/rb/docker-api) [![travis-ci](https://travis-ci.org/swipely/docker-api.png?branch=master)](https://travis-ci.org/swipely/docker-api) [![Code Climate](https://codeclimate.com/github/swipely/docker-api.png)](https://codeclimate.com/github/swipely/docker-api) [![Dependency Status](https://gemnasium.com/swipely/docker-api.png)](https://gemnasium.com/swipely/docker-api)
4
4
 
5
- This gem provides an object-oriented interface to the [Docker Remote API](http://docs.docker.io/en/latest/reference/api/docker_remote_api/). Every method listed there is implemented, with the exception of attaching to the STDIN of a Container. At the time of this writing, docker-api is meant to interface with Docker version 0.9.*.
5
+ This gem provides an object-oriented interface to the [Docker Remote API](http://docs.docker.io/en/latest/reference/api/docker_remote_api/). Every method listed there is implemented. At the time of this writing, docker-api is meant to interface with Docker version 0.11.*.
6
6
 
7
7
  If you're interested in using Docker to package your apps, we recommend the [dockly](https://github.com/swipely/dockly) gem. Dockly provides a simple DSL for describing Docker containers that install as Debian packages and are controlled by upstart scripts.
8
8
 
@@ -146,16 +146,16 @@ class Docker::Image
146
146
  raise Docker::Error::IOError, "Could not import '#{imp}'"
147
147
  end
148
148
 
149
- def import_stream(options = {}, connection = Docker.connection, &block)
150
- body = connection.post(
151
- '/images/create',
152
- options.merge('fromSrc' => '-'),
153
- :headers => { 'Content-Type' => 'application/tar',
154
- 'Transfer-Encoding' => 'chunked' },
155
- &block
156
- )
157
- new(connection, 'id'=> Docker::Util.parse_json(body)['status'])
158
- end
149
+ def import_stream(options = {}, connection = Docker.connection, &block)
150
+ body = connection.post(
151
+ '/images/create',
152
+ options.merge('fromSrc' => '-'),
153
+ :headers => { 'Content-Type' => 'application/tar',
154
+ 'Transfer-Encoding' => 'chunked' },
155
+ &block
156
+ )
157
+ new(connection, 'id'=> Docker::Util.parse_json(body)['status'])
158
+ end
159
159
 
160
160
  # Given a Dockerfile as a string, builds an Image.
161
161
  def build(commands, opts = {}, connection = Docker.connection, &block)
@@ -1,7 +1,7 @@
1
1
  module Docker
2
2
  # The version of the docker-api gem.
3
- VERSION = '1.11.2'
3
+ VERSION = '1.12.0'
4
4
 
5
5
  # The version of the compatible Docker remote API.
6
- API_VERSION = '1.10'
6
+ API_VERSION = '1.11'
7
7
  end
@@ -77,14 +77,6 @@ describe Docker::Container do
77
77
 
78
78
  it 'returns the changes as an array', :vcr do
79
79
  expect(changes).to eq [
80
- {
81
- "Path" => "/dev",
82
- "Kind" => 0
83
- },
84
- {
85
- "Path" => "/dev/kmsg",
86
- "Kind" => 0
87
- },
88
80
  {
89
81
  "Path" => "/root",
90
82
  "Kind" => 2
@@ -242,9 +242,9 @@ describe Docker::Image do
242
242
  let(:image) { subject.create('fromImage' => 'ubuntu') }
243
243
  let(:creds) {
244
244
  {
245
- :username => 'nahiluhmot',
246
- :password => '*********',
247
- :email => 'hulihan.tom159@gmail.com'
245
+ :username => 'tlunter',
246
+ :password => '************',
247
+ :email => 'tlunter@gmail.com'
248
248
  }
249
249
  }
250
250
 
@@ -93,7 +93,9 @@ describe Docker do
93
93
  subject.url = nil
94
94
  subject.options = nil
95
95
  end
96
- let(:expected) { %w[Arch GitCommit GoVersion KernelVersion Os Version] }
96
+ let(:expected) {
97
+ %w[ApiVersion Arch GitCommit GoVersion KernelVersion Os Version]
98
+ }
97
99
 
98
100
  let(:version) { subject.version }
99
101
  it 'returns the version as a Hash', :vcr do
@@ -137,9 +139,9 @@ describe Docker do
137
139
  # cassette to match these credentials
138
140
  let(:credentials) {
139
141
  {
140
- :username => 'test',
141
- :password => 'account',
142
- :email => 'test@test.com',
142
+ :username => 'tlunter',
143
+ :password => '************',
144
+ :email => 'tlunter@gmail.com',
143
145
  :serveraddress => 'https://index.docker.io/v1/'
144
146
  }
145
147
  }
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.10/auth
5
+ uri: unix:///var/run/docker.sock/v1.11/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":"tlunter","password":"************","email":"tlunter@gmail.com","serveraddress":"https://index.docker.io/v1/"}'
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.8.4
11
+ - Swipely/Docker-API 1.11.1
12
12
  Content-Type:
13
13
  - application/json
14
14
  response:
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Fri, 28 Feb 2014 22:10:15 GMT
22
+ - Thu, 26 Jun 2014 19:20:39 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: Fri, 28 Feb 2014 22:10:15 GMT
33
- recorded_with: VCR 2.8.0
32
+ recorded_at: Thu, 26 Jun 2014 19:20:39 GMT
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.10/info
5
+ uri: unix:///var/run/docker.sock/v1.11/info
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.9.1
11
+ - Swipely/Docker-API 1.11.1
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -21,15 +21,15 @@ http_interactions:
21
21
  Job-Name:
22
22
  - info
23
23
  Date:
24
- - Wed, 12 Mar 2014 13:32:20 GMT
24
+ - Thu, 26 Jun 2014 19:17:07 GMT
25
25
  Content-Length:
26
- - '693'
26
+ - '697'
27
27
  Connection:
28
28
  - close
29
29
  body:
30
30
  encoding: UTF-8
31
31
  string: |
32
- {"Containers":39,"Debug":0,"Driver":"devicemapper","DriverStatus":[["Pool Name","docker-8:4-12104-pool"],["Data file","/var/lib/docker/devicemapper/devicemapper/data"],["Metadata file","/var/lib/docker/devicemapper/devicemapper/metadata"],["Data Space Used","1631.1 Mb"],["Data Space Total","102400.0 Mb"],["Metadata Space Used","4.1 Mb"],["Metadata Space Total","2048.0 Mb"]],"ExecutionDriver":"native-0.1","IPv4Forwarding":1,"Images":25,"IndexServerAddress":"https://index.docker.io/v1/","InitPath":"/usr/lib/docker/dockerinit","InitSha1":"df6aa6b00e1e829a422f1a761d0fab5425291e07","KernelVersion":"3.13.6-1-ARCH","MemoryLimit":1,"NEventsListener":0,"NFd":20,"NGoroutines":20,"SwapLimit":0}
32
+ {"Containers":31,"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","9805.6 Mb"],["Data Space Total","102400.0 Mb"],["Metadata Space Used","16.1 Mb"],["Metadata Space Total","2048.0 Mb"]],"ExecutionDriver":"native-0.2","IPv4Forwarding":1,"Images":204,"IndexServerAddress":"https://index.docker.io/v1/","InitPath":"/usr/lib/docker/dockerinit","InitSha1":"728ea391473ec106b15a6486b3b1a2e8a07e4ff5","KernelVersion":"3.15.1-1-ARCH","MemoryLimit":1,"NEventsListener":0,"NFd":20,"NGoroutines":27,"SwapLimit":0}
33
33
  http_version:
34
- recorded_at: Wed, 12 Mar 2014 13:32:20 GMT
35
- recorded_with: VCR 2.8.0
34
+ recorded_at: Thu, 26 Jun 2014 19:17:07 GMT
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.10/info
5
+ uri: unix:///var/run/docker.sock/v1.11/info
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.9.1
11
+ - Swipely/Docker-API 1.11.1
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -21,15 +21,15 @@ http_interactions:
21
21
  Job-Name:
22
22
  - info
23
23
  Date:
24
- - Wed, 12 Mar 2014 13:32:21 GMT
24
+ - Thu, 26 Jun 2014 19:18:54 GMT
25
25
  Content-Length:
26
- - '693'
26
+ - '697'
27
27
  Connection:
28
28
  - close
29
29
  body:
30
30
  encoding: UTF-8
31
31
  string: |
32
- {"Containers":39,"Debug":0,"Driver":"devicemapper","DriverStatus":[["Pool Name","docker-8:4-12104-pool"],["Data file","/var/lib/docker/devicemapper/devicemapper/data"],["Metadata file","/var/lib/docker/devicemapper/devicemapper/metadata"],["Data Space Used","1631.8 Mb"],["Data Space Total","102400.0 Mb"],["Metadata Space Used","4.1 Mb"],["Metadata Space Total","2048.0 Mb"]],"ExecutionDriver":"native-0.1","IPv4Forwarding":1,"Images":25,"IndexServerAddress":"https://index.docker.io/v1/","InitPath":"/usr/lib/docker/dockerinit","InitSha1":"df6aa6b00e1e829a422f1a761d0fab5425291e07","KernelVersion":"3.13.6-1-ARCH","MemoryLimit":1,"NEventsListener":0,"NFd":19,"NGoroutines":19,"SwapLimit":0}
32
+ {"Containers":31,"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","9805.8 Mb"],["Data Space Total","102400.0 Mb"],["Metadata Space Used","16.1 Mb"],["Metadata Space Total","2048.0 Mb"]],"ExecutionDriver":"native-0.2","IPv4Forwarding":1,"Images":204,"IndexServerAddress":"https://index.docker.io/v1/","InitPath":"/usr/lib/docker/dockerinit","InitSha1":"728ea391473ec106b15a6486b3b1a2e8a07e4ff5","KernelVersion":"3.15.1-1-ARCH","MemoryLimit":1,"NEventsListener":0,"NFd":20,"NGoroutines":27,"SwapLimit":0}
33
33
  http_version:
34
- recorded_at: Wed, 12 Mar 2014 13:32:21 GMT
35
- recorded_with: VCR 2.8.0
34
+ recorded_at: Thu, 26 Jun 2014 19:18:54 GMT
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.10/version
5
+ uri: unix:///var/run/docker.sock/v1.11/version
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.9.1
11
+ - Swipely/Docker-API 1.11.1
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -21,15 +21,15 @@ http_interactions:
21
21
  Job-Name:
22
22
  - version
23
23
  Date:
24
- - Wed, 12 Mar 2014 13:32:20 GMT
24
+ - Thu, 26 Jun 2014 19:16:20 GMT
25
25
  Content-Length:
26
- - '128'
26
+ - '142'
27
27
  Connection:
28
28
  - close
29
29
  body:
30
30
  encoding: UTF-8
31
31
  string: |
32
- {"Arch":"amd64","GitCommit":"b5a544b","GoVersion":"go1.2.1","KernelVersion":"3.13.6-1-ARCH","Os":"linux","Version":"0.9.0-dev"}
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: Wed, 12 Mar 2014 13:32:20 GMT
35
- recorded_with: VCR 2.8.0
34
+ recorded_at: Thu, 26 Jun 2014 19:16:20 GMT
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.10/containers/create
5
+ uri: unix:///var/run/docker.sock/v1.11/containers/create
6
6
  body:
7
7
  encoding: UTF-8
8
- string: "{\"Cmd\":[\"ls\"],\"Image\":\"base\"}"
8
+ string: '{"Cmd":["ls"],"Image":"base"}'
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.9.1
11
+ - Swipely/Docker-API 1.11.1
12
12
  Content-Type:
13
13
  - application/json
14
14
  response:
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Wed, 12 Mar 2014 13:31:47 GMT
22
+ - Fri, 06 Jun 2014 13:37:00 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":"96dc9815df319fb1e8a01647bcade9eccf5b8fe0bf6f1c906409adc5063391bd","Warnings":null}
30
+ {"Id":"10fccd5d80b9d5e1464c8745961bb2bb53eeaeda179a5737c4ec3e2f0c2324e2","Warnings":null}
31
31
  http_version:
32
- recorded_at: Wed, 12 Mar 2014 13:31:47 GMT
32
+ recorded_at: Fri, 06 Jun 2014 13:37:00 GMT
33
33
  - request:
34
34
  method: get
35
- uri: unix:///var/run/docker.sock/v1.10/containers/json?all=true
35
+ uri: unix:///var/run/docker.sock/v1.11/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.9.1
41
+ - Swipely/Docker-API 1.11.1
42
42
  Content-Type:
43
43
  - text/plain
44
44
  response:
@@ -49,7 +49,7 @@ http_interactions:
49
49
  Content-Type:
50
50
  - application/json
51
51
  Date:
52
- - Wed, 12 Mar 2014 13:31:47 GMT
52
+ - Fri, 06 Jun 2014 13:37:00 GMT
53
53
  Connection:
54
54
  - close
55
55
  Transfer-Encoding:
@@ -57,43 +57,49 @@ http_interactions:
57
57
  body:
58
58
  encoding: UTF-8
59
59
  string: |-
60
- [{"Command":"ls","Created":1394631107,"Id":"96dc9815df319fb1e8a01647bcade9eccf5b8fe0bf6f1c906409adc5063391bd","Image":"base:latest","Names":["/angry_mccarthy"],"Ports":[],"Status":"Exit 0"}
61
- ,{"Command":"ls","Created":1394631107,"Id":"9b524a40ef7e4204495322507f3e34c27836bd0d4f37a30bea8efca3ba1f0038","Image":"base:latest","Names":["/romantic_davinci"],"Ports":[],"Status":"Exit 0"}
62
- ,{"Command":"date","Created":1394631106,"Id":"e5db8489f386c64097f8b2d23054d3285d6d39eff0e62ebdca8b0fec42864b7d","Image":"base:latest","Names":["/nostalgic_lovelace"],"Ports":[],"Status":"Exit 0"}
63
- ,{"Command":"true","Created":1394631106,"Id":"0ac223f4d407ad2e694bdfcaf63dfdeaa0d33485b1e8163308ceafc821dbc68c","Image":"base:latest","Names":["/lonely_bardeen"],"Ports":[],"Status":"Exit 0"}
64
- ,{"Command":"true","Created":1394631104,"Id":"d0b6d1a3338746fd6ff45fe24e9b112a370ca9490ad97d2ff30a6c38c171c110","Image":"base:latest","Names":["/tender_einstein"],"Ports":[],"Status":"Exit 0"}
65
- ,{"Command":"ls","Created":1394631104,"Id":"cab0110ae90373f3f6790a2305bef7b040581dabbc98adbebeb3368f436eee71","Image":"8564cd49afd7","Names":["/agitated_mccarthy"],"Ports":[],"Status":"Exit 0"}
66
- ,{"Command":"pwd","Created":1394631102,"Id":"c451a96c2eca033537cf7107dcaa291bbecf8ff64c27c9d2258f4d546a1c1855","Image":"base:latest","Names":["/backstabbing_poincare"],"Ports":[],"Status":"Exit 0"}
67
- ,{"Command":"lol not a real command","Created":1394631101,"Id":"8ae2accd54d66e14604e210feb17ba35c10bea922a66e18df8abfecebe74bb35","Image":"base:latest","Names":["/suspicious_franklin"],"Ports":[],"Status":"Exit 1"}
68
- ,{"Command":"sleep 5","Created":1394631101,"Id":"c587a897c24942f9101238a1508953c1d0de1bbd32f99544d7f3e0d342483adb","Image":"base:latest","Names":["/prickly_nobel"],"Ports":[],"Status":"Exit 0"}
69
- ,{"Command":"sleep 5","Created":1394631096,"Id":"6a6064d6270041cae49685ab25cf48af4339e3af2f60dc1d869970deed56ef7e","Image":"base:latest","Names":["/tender_torvalds"],"Ports":[],"Status":"Exit 0"}
70
- ,{"Command":"tar nonsense","Created":1394631095,"Id":"38022195052bcf048579fe6e2b6631396935b97b569fa1be6d74fca8ee2fcfe4","Image":"base:latest","Names":["/happy_ptolemy"],"Ports":[],"Status":"Exit 64"}
71
- ,{"Command":"sleep 50","Created":1394631094,"Id":"82f44f5c9e7c3af30763a3de5fb55523816fcee716cad97a3a37ad3573a46738","Image":"base:latest","Names":["/sad_pike"],"Ports":[],"Status":"Up 11 seconds"}
72
- ,{"Command":"ls","Created":1394631092,"Id":"dd173940ca2db820cab4cf1f951fc97e98786b953ce2e848a7a8b9c9a1800b6b","Image":"base:latest","Names":["/trusting_galileo"],"Ports":[],"Status":"Exit 0"}
73
- ,{"Command":"true","Created":1394631092,"Id":"0ab853c18a2a8eaa4513a6a017dc749d5d691f689c6bdd339d9a64087aee88c1","Image":"base:latest","Names":["/prickly_galileo"],"Ports":[],"Status":"Exit 2"}
74
- ,{"Command":"test -d /foo","Created":1394631091,"Id":"6c3645ba631b4370d9199983b9a5133e49edaf019a5944148971b1c2db53bf79","Image":"base:latest","Names":["/angry_lumiere"],"Ports":[],"Status":"Exit 0"}
75
- ,{"Command":"pwd","Created":1394631090,"Id":"345e4a1df616ce448e2d45cdb95e8a3f0560fba39ab27e816b244f003430d59f","Image":"base:latest","Names":["/desperate_darwin"],"Ports":[],"Status":"Exit 0"}
76
- ,{"Command":"pwd","Created":1394631090,"Id":"71488237068c3873ebd7ff4cc408b7de962b2a90b7c8b8ad519483b592e282db","Image":"base:latest","Names":["/hungry_curie"],"Ports":[],"Status":"Exit 0"}
77
- ,{"Command":"rm -rf / --no-preserve-root","Created":1394631087,"Id":"8c8e11746d819efcd1403d94058d28f20c326ad44f0f406cb86a569931f26a60","Image":"base:latest","Names":["/boring_mclean"],"Ports":[],"Status":"Exit 1"}
78
- ,{"Command":"touch /test","Created":1394631086,"Id":"f68efa48ea8d41a0edade5d966d712133d723c910ef01b96fc3d0a9fbad368fe","Image":"base:latest","Names":["/grave_hawking"],"Ports":[],"Status":"Exit 0"}
79
- ,{"Command":"touch /test","Created":1394631084,"Id":"2703dd3c331e8405de077d5ed9452e0fe27fe3bb9f54740dc34845e1d0ab5499","Image":"base:latest","Names":["/tender_bell"],"Ports":[],"Status":"Exit 0"}
80
- ,{"Command":"/while","Created":1394631081,"Id":"d2def324f3daa1989173223f03d22e789c4354aa99d80e7258068de9e911cb35","Image":"2e0a9a843f66","Names":["/stoic_brown"],"Ports":[],"Status":"Up 25 seconds"}
81
- ,{"Command":"/bin/sh -c printf '#! /bin/sh\nwhile true\ndo\ntrue\ndone\n' \u003e /while \u0026\u0026 chmod +x /while","Created":1394631079,"Id":"68f09ac82fcf7c76327180d3573d3a2b54ebe13afc528e29195642a9710d888e","Image":"base:latest","Names":["/determined_einstein"],"Ports":[],"Status":"Exit 0"}
82
- ,{"Command":"rm -rf /root","Created":1394631078,"Id":"5584a4b00578255194eea3b885d831e6ea0da94d56529f0dab97cd972471026c","Image":"base:latest","Names":["/thirsty_bardeen"],"Ports":[],"Status":"Exit 0"}
83
- ,{"Command":"true","Created":1394631078,"Id":"be31311878d52f79a24ae359a00d7859e80fe6bb429026a74ccbafa606b04782","Image":"base:latest","Names":["/bob"],"Ports":[],"Status":"Exit 0"}
84
- ,{"Command":"true","Created":1394631077,"Id":"b615f325b67d6bf74b31ce94f39dea0c1a9f2707b2f610bbdbf6e5dc779b4444","Image":"base:latest","Names":["/high_pasteur"],"Ports":[],"Status":"Exit 0"}
60
+ [{"Command":"ls","Created":1402061820,"Id":"10fccd5d80b9d5e1464c8745961bb2bb53eeaeda179a5737c4ec3e2f0c2324e2","Image":"base:latest","Names":["/agitated_brown"],"Ports":[],"Status":""}
61
+ ,{"Command":"ls","Created":1402061819,"Id":"864a3251d9c7a5a06d7bb64ed24bb790e1b3bcce9f91094d1d788b395821346e","Image":"base:latest","Names":["/clever_colden"],"Ports":[],"Status":""}
62
+ ,{"Command":"date","Created":1402061819,"Id":"a223b5b4fcd93f795ddb65df4ec1616ffa2e764120941d0dd65c7fe126bc1311","Image":"base:latest","Names":["/sad_wozniak"],"Ports":[],"Status":""}
63
+ ,{"Command":"true","Created":1402061819,"Id":"d837dc03361179b175961dd9231bb69611a98c8e9188c5d1f45005d9ec84455e","Image":"base:latest","Names":["/kickass_mestorf"],"Ports":[],"Status":"Exited (0) Less than a second ago"}
64
+ ,{"Command":"true","Created":1402061817,"Id":"bc8a010930c40c2b93ae67076bd83cba37a88201f1438aee70d4917c9ca1f2f3","Image":"base:latest","Names":["/nostalgic_sinoussi4"],"Ports":[],"Status":"Exited (0) 2 seconds ago"}
65
+ ,{"Command":"ls","Created":1402061816,"Id":"cdf087a3327652217345367963fa0c16177c742c13107b1702bcf3d21cf0591d","Image":"7364e1f83f7b","Names":["/determined_colden"],"Ports":[],"Status":"Exited (0) 3 seconds ago"}
66
+ ,{"Command":"lol not a real command","Created":1402061814,"Id":"e54a107e5ceda43c339a39ed8024a96f25acf5d52bffcc241e664bb12f7f8d18","Image":"base:latest","Names":["/prickly_perlman"],"Ports":[],"Status":"Exited (1) 5 seconds ago"}
67
+ ,{"Command":"pwd","Created":1402061814,"Id":"e069285efbe59702426c48608bd49e0e50ead091b8e97ad425e215ad9e6b3f7a","Image":"base:latest","Names":["/agitated_archimedes"],"Ports":[],"Status":"Exited (0) 5 seconds ago"}
68
+ ,{"Command":"sleep 5","Created":1402061813,"Id":"4725efd445a3d695fd1334972a0f09f963369f108a3823709ffe1cdadbf48635","Image":"base:latest","Names":["/suspicious_perlman"],"Ports":[],"Status":"Exited (0) 1 seconds ago"}
69
+ ,{"Command":"sleep 5","Created":1402061808,"Id":"aa7e2ecdf17a537bebbb26ebf03bb737a44e73ad3e0bc0c4291f70f5a788f561","Image":"base:latest","Names":["/silly_turing"],"Ports":[],"Status":"Exited (0) 6 seconds ago"}
70
+ ,{"Command":"tar nonsense","Created":1402061807,"Id":"c70cfabe185292f9f8ee870411426a5f395ddff7154b0d33c4856077251ef07b","Image":"base:latest","Names":["/backstabbing_nobel"],"Ports":[],"Status":"Exited (64) 12 seconds ago"}
71
+ ,{"Command":"sleep 50","Created":1402061806,"Id":"8f21d51b034b2312381b6fecb6f64daf4e27d9383adde881f293ba76a41b13e1","Image":"base:latest","Names":["/sharp_lalande"],"Ports":[],"Status":"Up 12 seconds"}
72
+ ,{"Command":"ls","Created":1402061805,"Id":"c843e3cc949ba97facdf6ce574af1e19abaed630a7a5118000f2baac202daf3f","Image":"base:latest","Names":["/pensive_hopper"],"Ports":[],"Status":""}
73
+ ,{"Command":"true","Created":1402061804,"Id":"443df8d63a3a3072d0bf8d556f798702446bb58240a20c7209943c4fd673cbb6","Image":"base:latest","Names":["/lonely_lumiere"],"Ports":[],"Status":"Exited (2) 15 seconds ago"}
74
+ ,{"Command":"pwd","Created":1402061803,"Id":"ca222127cb8b1cfd32b49f7bce67a65551ca95c06a39df9d533e526cdd6b3012","Image":"base:latest","Names":["/determined_bartik"],"Ports":[],"Status":"Exited (0) 16 seconds ago"}
75
+ ,{"Command":"test -d /foo","Created":1402061803,"Id":"931f5a5a5c2b4fad7b87e7348d08278321467f83bacf32c8c8a397f08c51646d","Image":"base:latest","Names":["/cranky_curie"],"Ports":[],"Status":"Exited (0) 16 seconds ago"}
76
+ ,{"Command":"pwd","Created":1402061802,"Id":"1cbce47c914fad3c7d384c91cae92c025e3ef68293fcc96cb100e6f88c9a2ef2","Image":"base:latest","Names":["/berserk_sammet"],"Ports":[],"Status":"Exited (0) 17 seconds ago"}
77
+ ,{"Command":"rm -rf / --no-preserve-root","Created":1402061800,"Id":"46a466141579783967dcbc035bc6399649bd43b7f4408ce4e709d233aac5ef14","Image":"base:latest","Names":["/grave_poincare"],"Ports":[],"Status":"Exited (1) 18 seconds ago"}
78
+ ,{"Command":"/while","Created":1402061799,"Id":"74553200d912dda35c0f8641028d3e42faaf6e41b4337a4e202328414bb2da5e","Image":"5964d75bfbd2","Names":["/angry_brown"],"Ports":[],"Status":"Up 20 seconds"}
79
+ ,{"Command":"/bin/sh -c 'printf '#! /bin/sh\nwhile true\ndo\ntrue\ndone\n' \u003e /while \u0026\u0026 chmod +x /while'","Created":1402061795,"Id":"9bae4f8c6a162a4751230b334d7a1883fc05898c5a8674fb2e5f74d13b5fd535","Image":"base:latest","Names":["/stupefied_darwin"],"Ports":[],"Status":"Exited (0) 24 seconds ago"}
80
+ ,{"Command":"rm -rf /root","Created":1402061793,"Id":"e2aa3bf983f31a26fa4ea31f915f33dbb800210fe5155f3e5ec2b7ef2f6f011a","Image":"base:latest","Names":["/agitated_lumiere"],"Ports":[],"Status":"Exited (0) 26 seconds ago"}
81
+ ,{"Command":"echo hello","Created":1402061792,"Id":"3b94c2244b65ee461a8de220f689efc4f5139952c3acfbcc62b54754fc2d42af","Image":"base:latest","Names":["/loving_mccarthy"],"Ports":[],"Status":""}
82
+ ,{"Command":"true","Created":1402061792,"Id":"b2fffac62786c5b22eebc6e89dcc6146f6d5c7c2d1c87f4047c224594f9fd626","Image":"base:latest","Names":["/bob"],"Ports":[],"Status":""}
83
+ ,{"Command":"echo hello","Created":1402061792,"Id":"43a9245ac3f67d2150845dbe4bb014d1b33f6fe7755f53c0795b793abec025e6","Image":"base:latest","Names":["/nostalgic_brattain"],"Ports":[],"Status":""}
84
+ ,{"Command":"true","Created":1402061791,"Id":"9f7808dd7512fa74bd22f748b04c02694ac13f9fdb3936ddf73858cdfc667627","Image":"base:latest","Names":["/berserk_albattani"],"Ports":[],"Status":""}
85
+ ,{"Command":"bash","Created":1401993112,"Id":"a4a956e5908713eeeeacd438d9b1af76aee3a2d2cfd286509879d66688a51a96","Image":"base:latest","Names":["/distracted_davinci"],"Ports":[],"Status":"Exited (0) 19 hours ago"}
86
+ ,{"Command":"pwd","Created":1401992998,"Id":"84417dce0437109b3da550a5e9b26c53cd3c470a10f140665f50936c4cbc6e5c","Image":"cd20e353a62d","Names":["/nostalgic_sinoussi"],"Ports":[],"Status":"Exited (0) 19 hours ago"}
87
+ ,{"Command":"bash","Created":1401992997,"Id":"3fa30cf9b82e719a9e599350e25321ead36454995621c18da0873991911b5dcf","Image":"base:latest","Names":["/jolly_leakey"],"Ports":[],"Status":"Exited (0) 19 hours ago"}
88
+ ,{"Command":"true","Created":1401992995,"Id":"75b8e7c8f01a5ce68062a91fa05b7aea1a6c71a030207ae1ad266633a6cdd4cc","Image":"base:latest","Names":["/sad_wright"],"Ports":[],"Status":""}
89
+ ,{"Command":"bash","Created":1401992994,"Id":"a39a9b9e48ea2a4e0e7448ce2e895284911dad63e1e4a5cf0f4ee23ea11f62a6","Image":"base:latest","Names":["/distracted_yonath"],"Ports":[],"Status":"Exited (0) 19 hours ago"}
90
+ ,{"Command":"touch /test","Created":1401992992,"Id":"bbe024cccc9898f753a96119eb761d447e4d5d750b45c833a573aec71cc2392e","Image":"base:latest","Names":["/prickly_heisenberg"],"Ports":[],"Status":"Exited (0) 19 hours ago"}
85
91
  ]
86
92
  http_version:
87
- recorded_at: Wed, 12 Mar 2014 13:31:47 GMT
93
+ recorded_at: Fri, 06 Jun 2014 13:37:00 GMT
88
94
  - request:
89
95
  method: get
90
- uri: unix:///var/run/docker.sock/v1.10/containers/json?all=true
96
+ uri: unix:///var/run/docker.sock/v1.11/containers/json?all=true
91
97
  body:
92
98
  encoding: US-ASCII
93
99
  string: ''
94
100
  headers:
95
101
  User-Agent:
96
- - Swipely/Docker-API 1.9.1
102
+ - Swipely/Docker-API 1.11.1
97
103
  Content-Type:
98
104
  - text/plain
99
105
  response:
@@ -104,7 +110,7 @@ http_interactions:
104
110
  Content-Type:
105
111
  - application/json
106
112
  Date:
107
- - Wed, 12 Mar 2014 13:31:47 GMT
113
+ - Fri, 06 Jun 2014 13:37:00 GMT
108
114
  Connection:
109
115
  - close
110
116
  Transfer-Encoding:
@@ -112,32 +118,38 @@ http_interactions:
112
118
  body:
113
119
  encoding: UTF-8
114
120
  string: |-
115
- [{"Command":"ls","Created":1394631107,"Id":"96dc9815df319fb1e8a01647bcade9eccf5b8fe0bf6f1c906409adc5063391bd","Image":"base:latest","Names":["/angry_mccarthy"],"Ports":[],"Status":"Exit 0"}
116
- ,{"Command":"ls","Created":1394631107,"Id":"9b524a40ef7e4204495322507f3e34c27836bd0d4f37a30bea8efca3ba1f0038","Image":"base:latest","Names":["/romantic_davinci"],"Ports":[],"Status":"Exit 0"}
117
- ,{"Command":"date","Created":1394631106,"Id":"e5db8489f386c64097f8b2d23054d3285d6d39eff0e62ebdca8b0fec42864b7d","Image":"base:latest","Names":["/nostalgic_lovelace"],"Ports":[],"Status":"Exit 0"}
118
- ,{"Command":"true","Created":1394631106,"Id":"0ac223f4d407ad2e694bdfcaf63dfdeaa0d33485b1e8163308ceafc821dbc68c","Image":"base:latest","Names":["/lonely_bardeen"],"Ports":[],"Status":"Exit 0"}
119
- ,{"Command":"true","Created":1394631104,"Id":"d0b6d1a3338746fd6ff45fe24e9b112a370ca9490ad97d2ff30a6c38c171c110","Image":"base:latest","Names":["/tender_einstein"],"Ports":[],"Status":"Exit 0"}
120
- ,{"Command":"ls","Created":1394631104,"Id":"cab0110ae90373f3f6790a2305bef7b040581dabbc98adbebeb3368f436eee71","Image":"8564cd49afd7","Names":["/agitated_mccarthy"],"Ports":[],"Status":"Exit 0"}
121
- ,{"Command":"pwd","Created":1394631102,"Id":"c451a96c2eca033537cf7107dcaa291bbecf8ff64c27c9d2258f4d546a1c1855","Image":"base:latest","Names":["/backstabbing_poincare"],"Ports":[],"Status":"Exit 0"}
122
- ,{"Command":"lol not a real command","Created":1394631101,"Id":"8ae2accd54d66e14604e210feb17ba35c10bea922a66e18df8abfecebe74bb35","Image":"base:latest","Names":["/suspicious_franklin"],"Ports":[],"Status":"Exit 1"}
123
- ,{"Command":"sleep 5","Created":1394631101,"Id":"c587a897c24942f9101238a1508953c1d0de1bbd32f99544d7f3e0d342483adb","Image":"base:latest","Names":["/prickly_nobel"],"Ports":[],"Status":"Exit 0"}
124
- ,{"Command":"sleep 5","Created":1394631096,"Id":"6a6064d6270041cae49685ab25cf48af4339e3af2f60dc1d869970deed56ef7e","Image":"base:latest","Names":["/tender_torvalds"],"Ports":[],"Status":"Exit 0"}
125
- ,{"Command":"tar nonsense","Created":1394631095,"Id":"38022195052bcf048579fe6e2b6631396935b97b569fa1be6d74fca8ee2fcfe4","Image":"base:latest","Names":["/happy_ptolemy"],"Ports":[],"Status":"Exit 64"}
126
- ,{"Command":"sleep 50","Created":1394631094,"Id":"82f44f5c9e7c3af30763a3de5fb55523816fcee716cad97a3a37ad3573a46738","Image":"base:latest","Names":["/sad_pike"],"Ports":[],"Status":"Up 11 seconds"}
127
- ,{"Command":"ls","Created":1394631092,"Id":"dd173940ca2db820cab4cf1f951fc97e98786b953ce2e848a7a8b9c9a1800b6b","Image":"base:latest","Names":["/trusting_galileo"],"Ports":[],"Status":"Exit 0"}
128
- ,{"Command":"true","Created":1394631092,"Id":"0ab853c18a2a8eaa4513a6a017dc749d5d691f689c6bdd339d9a64087aee88c1","Image":"base:latest","Names":["/prickly_galileo"],"Ports":[],"Status":"Exit 2"}
129
- ,{"Command":"test -d /foo","Created":1394631091,"Id":"6c3645ba631b4370d9199983b9a5133e49edaf019a5944148971b1c2db53bf79","Image":"base:latest","Names":["/angry_lumiere"],"Ports":[],"Status":"Exit 0"}
130
- ,{"Command":"pwd","Created":1394631090,"Id":"345e4a1df616ce448e2d45cdb95e8a3f0560fba39ab27e816b244f003430d59f","Image":"base:latest","Names":["/desperate_darwin"],"Ports":[],"Status":"Exit 0"}
131
- ,{"Command":"pwd","Created":1394631090,"Id":"71488237068c3873ebd7ff4cc408b7de962b2a90b7c8b8ad519483b592e282db","Image":"base:latest","Names":["/hungry_curie"],"Ports":[],"Status":"Exit 0"}
132
- ,{"Command":"rm -rf / --no-preserve-root","Created":1394631087,"Id":"8c8e11746d819efcd1403d94058d28f20c326ad44f0f406cb86a569931f26a60","Image":"base:latest","Names":["/boring_mclean"],"Ports":[],"Status":"Exit 1"}
133
- ,{"Command":"touch /test","Created":1394631086,"Id":"f68efa48ea8d41a0edade5d966d712133d723c910ef01b96fc3d0a9fbad368fe","Image":"base:latest","Names":["/grave_hawking"],"Ports":[],"Status":"Exit 0"}
134
- ,{"Command":"touch /test","Created":1394631084,"Id":"2703dd3c331e8405de077d5ed9452e0fe27fe3bb9f54740dc34845e1d0ab5499","Image":"base:latest","Names":["/tender_bell"],"Ports":[],"Status":"Exit 0"}
135
- ,{"Command":"/while","Created":1394631081,"Id":"d2def324f3daa1989173223f03d22e789c4354aa99d80e7258068de9e911cb35","Image":"2e0a9a843f66","Names":["/stoic_brown"],"Ports":[],"Status":"Up 25 seconds"}
136
- ,{"Command":"/bin/sh -c printf '#! /bin/sh\nwhile true\ndo\ntrue\ndone\n' \u003e /while \u0026\u0026 chmod +x /while","Created":1394631079,"Id":"68f09ac82fcf7c76327180d3573d3a2b54ebe13afc528e29195642a9710d888e","Image":"base:latest","Names":["/determined_einstein"],"Ports":[],"Status":"Exit 0"}
137
- ,{"Command":"rm -rf /root","Created":1394631078,"Id":"5584a4b00578255194eea3b885d831e6ea0da94d56529f0dab97cd972471026c","Image":"base:latest","Names":["/thirsty_bardeen"],"Ports":[],"Status":"Exit 0"}
138
- ,{"Command":"true","Created":1394631078,"Id":"be31311878d52f79a24ae359a00d7859e80fe6bb429026a74ccbafa606b04782","Image":"base:latest","Names":["/bob"],"Ports":[],"Status":"Exit 0"}
139
- ,{"Command":"true","Created":1394631077,"Id":"b615f325b67d6bf74b31ce94f39dea0c1a9f2707b2f610bbdbf6e5dc779b4444","Image":"base:latest","Names":["/high_pasteur"],"Ports":[],"Status":"Exit 0"}
121
+ [{"Command":"ls","Created":1402061820,"Id":"10fccd5d80b9d5e1464c8745961bb2bb53eeaeda179a5737c4ec3e2f0c2324e2","Image":"base:latest","Names":["/agitated_brown"],"Ports":[],"Status":""}
122
+ ,{"Command":"ls","Created":1402061819,"Id":"864a3251d9c7a5a06d7bb64ed24bb790e1b3bcce9f91094d1d788b395821346e","Image":"base:latest","Names":["/clever_colden"],"Ports":[],"Status":""}
123
+ ,{"Command":"date","Created":1402061819,"Id":"a223b5b4fcd93f795ddb65df4ec1616ffa2e764120941d0dd65c7fe126bc1311","Image":"base:latest","Names":["/sad_wozniak"],"Ports":[],"Status":""}
124
+ ,{"Command":"true","Created":1402061819,"Id":"d837dc03361179b175961dd9231bb69611a98c8e9188c5d1f45005d9ec84455e","Image":"base:latest","Names":["/kickass_mestorf"],"Ports":[],"Status":"Exited (0) Less than a second ago"}
125
+ ,{"Command":"true","Created":1402061817,"Id":"bc8a010930c40c2b93ae67076bd83cba37a88201f1438aee70d4917c9ca1f2f3","Image":"base:latest","Names":["/nostalgic_sinoussi4"],"Ports":[],"Status":"Exited (0) 2 seconds ago"}
126
+ ,{"Command":"ls","Created":1402061816,"Id":"cdf087a3327652217345367963fa0c16177c742c13107b1702bcf3d21cf0591d","Image":"7364e1f83f7b","Names":["/determined_colden"],"Ports":[],"Status":"Exited (0) 3 seconds ago"}
127
+ ,{"Command":"lol not a real command","Created":1402061814,"Id":"e54a107e5ceda43c339a39ed8024a96f25acf5d52bffcc241e664bb12f7f8d18","Image":"base:latest","Names":["/prickly_perlman"],"Ports":[],"Status":"Exited (1) 5 seconds ago"}
128
+ ,{"Command":"pwd","Created":1402061814,"Id":"e069285efbe59702426c48608bd49e0e50ead091b8e97ad425e215ad9e6b3f7a","Image":"base:latest","Names":["/agitated_archimedes"],"Ports":[],"Status":"Exited (0) 5 seconds ago"}
129
+ ,{"Command":"sleep 5","Created":1402061813,"Id":"4725efd445a3d695fd1334972a0f09f963369f108a3823709ffe1cdadbf48635","Image":"base:latest","Names":["/suspicious_perlman"],"Ports":[],"Status":"Exited (0) 1 seconds ago"}
130
+ ,{"Command":"sleep 5","Created":1402061808,"Id":"aa7e2ecdf17a537bebbb26ebf03bb737a44e73ad3e0bc0c4291f70f5a788f561","Image":"base:latest","Names":["/silly_turing"],"Ports":[],"Status":"Exited (0) 6 seconds ago"}
131
+ ,{"Command":"tar nonsense","Created":1402061807,"Id":"c70cfabe185292f9f8ee870411426a5f395ddff7154b0d33c4856077251ef07b","Image":"base:latest","Names":["/backstabbing_nobel"],"Ports":[],"Status":"Exited (64) 12 seconds ago"}
132
+ ,{"Command":"sleep 50","Created":1402061806,"Id":"8f21d51b034b2312381b6fecb6f64daf4e27d9383adde881f293ba76a41b13e1","Image":"base:latest","Names":["/sharp_lalande"],"Ports":[],"Status":"Up 12 seconds"}
133
+ ,{"Command":"ls","Created":1402061805,"Id":"c843e3cc949ba97facdf6ce574af1e19abaed630a7a5118000f2baac202daf3f","Image":"base:latest","Names":["/pensive_hopper"],"Ports":[],"Status":""}
134
+ ,{"Command":"true","Created":1402061804,"Id":"443df8d63a3a3072d0bf8d556f798702446bb58240a20c7209943c4fd673cbb6","Image":"base:latest","Names":["/lonely_lumiere"],"Ports":[],"Status":"Exited (2) 15 seconds ago"}
135
+ ,{"Command":"pwd","Created":1402061803,"Id":"ca222127cb8b1cfd32b49f7bce67a65551ca95c06a39df9d533e526cdd6b3012","Image":"base:latest","Names":["/determined_bartik"],"Ports":[],"Status":"Exited (0) 16 seconds ago"}
136
+ ,{"Command":"test -d /foo","Created":1402061803,"Id":"931f5a5a5c2b4fad7b87e7348d08278321467f83bacf32c8c8a397f08c51646d","Image":"base:latest","Names":["/cranky_curie"],"Ports":[],"Status":"Exited (0) 16 seconds ago"}
137
+ ,{"Command":"pwd","Created":1402061802,"Id":"1cbce47c914fad3c7d384c91cae92c025e3ef68293fcc96cb100e6f88c9a2ef2","Image":"base:latest","Names":["/berserk_sammet"],"Ports":[],"Status":"Exited (0) 17 seconds ago"}
138
+ ,{"Command":"rm -rf / --no-preserve-root","Created":1402061800,"Id":"46a466141579783967dcbc035bc6399649bd43b7f4408ce4e709d233aac5ef14","Image":"base:latest","Names":["/grave_poincare"],"Ports":[],"Status":"Exited (1) 18 seconds ago"}
139
+ ,{"Command":"/while","Created":1402061799,"Id":"74553200d912dda35c0f8641028d3e42faaf6e41b4337a4e202328414bb2da5e","Image":"5964d75bfbd2","Names":["/angry_brown"],"Ports":[],"Status":"Up 20 seconds"}
140
+ ,{"Command":"/bin/sh -c 'printf '#! /bin/sh\nwhile true\ndo\ntrue\ndone\n' \u003e /while \u0026\u0026 chmod +x /while'","Created":1402061795,"Id":"9bae4f8c6a162a4751230b334d7a1883fc05898c5a8674fb2e5f74d13b5fd535","Image":"base:latest","Names":["/stupefied_darwin"],"Ports":[],"Status":"Exited (0) 24 seconds ago"}
141
+ ,{"Command":"rm -rf /root","Created":1402061793,"Id":"e2aa3bf983f31a26fa4ea31f915f33dbb800210fe5155f3e5ec2b7ef2f6f011a","Image":"base:latest","Names":["/agitated_lumiere"],"Ports":[],"Status":"Exited (0) 26 seconds ago"}
142
+ ,{"Command":"echo hello","Created":1402061792,"Id":"3b94c2244b65ee461a8de220f689efc4f5139952c3acfbcc62b54754fc2d42af","Image":"base:latest","Names":["/loving_mccarthy"],"Ports":[],"Status":""}
143
+ ,{"Command":"true","Created":1402061792,"Id":"b2fffac62786c5b22eebc6e89dcc6146f6d5c7c2d1c87f4047c224594f9fd626","Image":"base:latest","Names":["/bob"],"Ports":[],"Status":""}
144
+ ,{"Command":"echo hello","Created":1402061792,"Id":"43a9245ac3f67d2150845dbe4bb014d1b33f6fe7755f53c0795b793abec025e6","Image":"base:latest","Names":["/nostalgic_brattain"],"Ports":[],"Status":""}
145
+ ,{"Command":"true","Created":1402061791,"Id":"9f7808dd7512fa74bd22f748b04c02694ac13f9fdb3936ddf73858cdfc667627","Image":"base:latest","Names":["/berserk_albattani"],"Ports":[],"Status":""}
146
+ ,{"Command":"bash","Created":1401993112,"Id":"a4a956e5908713eeeeacd438d9b1af76aee3a2d2cfd286509879d66688a51a96","Image":"base:latest","Names":["/distracted_davinci"],"Ports":[],"Status":"Exited (0) 19 hours ago"}
147
+ ,{"Command":"pwd","Created":1401992998,"Id":"84417dce0437109b3da550a5e9b26c53cd3c470a10f140665f50936c4cbc6e5c","Image":"cd20e353a62d","Names":["/nostalgic_sinoussi"],"Ports":[],"Status":"Exited (0) 19 hours ago"}
148
+ ,{"Command":"bash","Created":1401992997,"Id":"3fa30cf9b82e719a9e599350e25321ead36454995621c18da0873991911b5dcf","Image":"base:latest","Names":["/jolly_leakey"],"Ports":[],"Status":"Exited (0) 19 hours ago"}
149
+ ,{"Command":"true","Created":1401992995,"Id":"75b8e7c8f01a5ce68062a91fa05b7aea1a6c71a030207ae1ad266633a6cdd4cc","Image":"base:latest","Names":["/sad_wright"],"Ports":[],"Status":""}
150
+ ,{"Command":"bash","Created":1401992994,"Id":"a39a9b9e48ea2a4e0e7448ce2e895284911dad63e1e4a5cf0f4ee23ea11f62a6","Image":"base:latest","Names":["/distracted_yonath"],"Ports":[],"Status":"Exited (0) 19 hours ago"}
151
+ ,{"Command":"touch /test","Created":1401992992,"Id":"bbe024cccc9898f753a96119eb761d447e4d5d750b45c833a573aec71cc2392e","Image":"base:latest","Names":["/prickly_heisenberg"],"Ports":[],"Status":"Exited (0) 19 hours ago"}
140
152
  ]
141
153
  http_version:
142
- recorded_at: Wed, 12 Mar 2014 13:31:47 GMT
143
- recorded_with: VCR 2.8.0
154
+ recorded_at: Fri, 06 Jun 2014 13:37:00 GMT
155
+ recorded_with: VCR 2.9.2