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
@@ -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\":[\"pwd\"],\"Image\":\"base\"}"
8
+ string: '{"Cmd":["pwd"],"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:30 GMT
22
+ - Fri, 06 Jun 2014 13:36:43 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":"71488237068c3873ebd7ff4cc408b7de962b2a90b7c8b8ad519483b592e282db","Warnings":null}
30
+ {"Id":"1cbce47c914fad3c7d384c91cae92c025e3ef68293fcc96cb100e6f88c9a2ef2","Warnings":null}
31
31
  http_version:
32
- recorded_at: Wed, 12 Mar 2014 13:31:30 GMT
32
+ recorded_at: Fri, 06 Jun 2014 13:36:43 GMT
33
33
  - request:
34
34
  method: post
35
- uri: unix:///var/run/docker.sock/v1.10/containers/71488237068c3873ebd7ff4cc408b7de962b2a90b7c8b8ad519483b592e282db/start
35
+ uri: unix:///var/run/docker.sock/v1.11/containers/1cbce47c914fad3c7d384c91cae92c025e3ef68293fcc96cb100e6f88c9a2ef2/start
36
36
  body:
37
37
  encoding: UTF-8
38
- string: "{}"
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
  - application/json
44
44
  response:
@@ -47,7 +47,7 @@ http_interactions:
47
47
  message:
48
48
  headers:
49
49
  Date:
50
- - Wed, 12 Mar 2014 13:31:30 GMT
50
+ - Fri, 06 Jun 2014 13:36:43 GMT
51
51
  Content-Length:
52
52
  - '0'
53
53
  Content-Type:
@@ -58,16 +58,16 @@ http_interactions:
58
58
  encoding: UTF-8
59
59
  string: ''
60
60
  http_version:
61
- recorded_at: Wed, 12 Mar 2014 13:31:30 GMT
61
+ recorded_at: Fri, 06 Jun 2014 13:36:43 GMT
62
62
  - request:
63
63
  method: post
64
- uri: unix:///var/run/docker.sock/v1.10/containers/71488237068c3873ebd7ff4cc408b7de962b2a90b7c8b8ad519483b592e282db/attach?stderr=true&stdout=true&stream=true
64
+ uri: unix:///var/run/docker.sock/v1.11/containers/1cbce47c914fad3c7d384c91cae92c025e3ef68293fcc96cb100e6f88c9a2ef2/attach?stderr=true&stdout=true&stream=true
65
65
  body:
66
66
  encoding: US-ASCII
67
67
  string: ''
68
68
  headers:
69
69
  User-Agent:
70
- - Swipely/Docker-API 1.9.1
70
+ - Swipely/Docker-API 1.11.1
71
71
  Content-Type:
72
72
  - text/plain
73
73
  response:
@@ -82,5 +82,5 @@ http_interactions:
82
82
  string: !binary |-
83
83
  AQAAAAAAAAIvCg==
84
84
  http_version:
85
- recorded_at: Wed, 12 Mar 2014 13:31:30 GMT
86
- recorded_with: VCR 2.8.0
85
+ recorded_at: Fri, 06 Jun 2014 13:36:43 GMT
86
+ 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\":[\"pwd\"],\"Image\":\"base\"}"
8
+ string: '{"Cmd":["pwd"],"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:31 GMT
22
+ - Fri, 06 Jun 2014 13:36:43 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":"345e4a1df616ce448e2d45cdb95e8a3f0560fba39ab27e816b244f003430d59f","Warnings":null}
30
+ {"Id":"ca222127cb8b1cfd32b49f7bce67a65551ca95c06a39df9d533e526cdd6b3012","Warnings":null}
31
31
  http_version:
32
- recorded_at: Wed, 12 Mar 2014 13:31:31 GMT
32
+ recorded_at: Fri, 06 Jun 2014 13:36:43 GMT
33
33
  - request:
34
34
  method: post
35
- uri: unix:///var/run/docker.sock/v1.10/containers/345e4a1df616ce448e2d45cdb95e8a3f0560fba39ab27e816b244f003430d59f/start
35
+ uri: unix:///var/run/docker.sock/v1.11/containers/ca222127cb8b1cfd32b49f7bce67a65551ca95c06a39df9d533e526cdd6b3012/start
36
36
  body:
37
37
  encoding: UTF-8
38
- string: "{}"
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
  - application/json
44
44
  response:
@@ -47,7 +47,7 @@ http_interactions:
47
47
  message:
48
48
  headers:
49
49
  Date:
50
- - Wed, 12 Mar 2014 13:31:31 GMT
50
+ - Fri, 06 Jun 2014 13:36:43 GMT
51
51
  Content-Length:
52
52
  - '0'
53
53
  Content-Type:
@@ -58,16 +58,16 @@ http_interactions:
58
58
  encoding: UTF-8
59
59
  string: ''
60
60
  http_version:
61
- recorded_at: Wed, 12 Mar 2014 13:31:31 GMT
61
+ recorded_at: Fri, 06 Jun 2014 13:36:43 GMT
62
62
  - request:
63
63
  method: post
64
- uri: unix:///var/run/docker.sock/v1.10/containers/345e4a1df616ce448e2d45cdb95e8a3f0560fba39ab27e816b244f003430d59f/attach?stderr=true&stdout=true&stream=true
64
+ uri: unix:///var/run/docker.sock/v1.11/containers/ca222127cb8b1cfd32b49f7bce67a65551ca95c06a39df9d533e526cdd6b3012/attach?stderr=true&stdout=true&stream=true
65
65
  body:
66
66
  encoding: US-ASCII
67
67
  string: ''
68
68
  headers:
69
69
  User-Agent:
70
- - Swipely/Docker-API 1.9.1
70
+ - Swipely/Docker-API 1.11.1
71
71
  Content-Type:
72
72
  - text/plain
73
73
  response:
@@ -82,5 +82,5 @@ http_interactions:
82
82
  string: !binary |-
83
83
  AQAAAAAAAAIvCg==
84
84
  http_version:
85
- recorded_at: Wed, 12 Mar 2014 13:31:31 GMT
86
- recorded_with: VCR 2.8.0
85
+ recorded_at: Fri, 06 Jun 2014 13:36:43 GMT
86
+ 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\":[\"rm\",\"-rf\",\"/root\"],\"Image\":\"base\"}"
8
+ string: '{"Cmd":["rm","-rf","/root"],"Image":"base"}'
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 21:41:43 GMT
22
+ - Fri, 06 Jun 2014 13:36: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":"b308381c9274c9c2e398635eeca5988c015268bf7e2a558eee0498e25629adc7","Warnings":null}
30
+ {"Id":"e2aa3bf983f31a26fa4ea31f915f33dbb800210fe5155f3e5ec2b7ef2f6f011a","Warnings":null}
31
31
  http_version:
32
- recorded_at: Fri, 28 Feb 2014 21:41:43 GMT
32
+ recorded_at: Fri, 06 Jun 2014 13:36:33 GMT
33
33
  - request:
34
34
  method: post
35
- uri: unix:///var/run/docker.sock/v1.10/containers/b308381c9274c9c2e398635eeca5988c015268bf7e2a558eee0498e25629adc7/start
35
+ uri: unix:///var/run/docker.sock/v1.11/containers/e2aa3bf983f31a26fa4ea31f915f33dbb800210fe5155f3e5ec2b7ef2f6f011a/start
36
36
  body:
37
37
  encoding: UTF-8
38
- string: "{}"
38
+ string: '{}'
39
39
  headers:
40
40
  User-Agent:
41
- - Swipely/Docker-API 1.8.4
41
+ - Swipely/Docker-API 1.11.1
42
42
  Content-Type:
43
43
  - application/json
44
44
  response:
@@ -47,7 +47,7 @@ http_interactions:
47
47
  message:
48
48
  headers:
49
49
  Date:
50
- - Fri, 28 Feb 2014 21:41:44 GMT
50
+ - Fri, 06 Jun 2014 13:36:33 GMT
51
51
  Content-Length:
52
52
  - '0'
53
53
  Content-Type:
@@ -58,16 +58,16 @@ http_interactions:
58
58
  encoding: UTF-8
59
59
  string: ''
60
60
  http_version:
61
- recorded_at: Fri, 28 Feb 2014 21:41:44 GMT
61
+ recorded_at: Fri, 06 Jun 2014 13:36:33 GMT
62
62
  - request:
63
63
  method: post
64
- uri: unix:///var/run/docker.sock/v1.10/containers/b308381c9274c9c2e398635eeca5988c015268bf7e2a558eee0498e25629adc7/wait
64
+ uri: unix:///var/run/docker.sock/v1.11/containers/e2aa3bf983f31a26fa4ea31f915f33dbb800210fe5155f3e5ec2b7ef2f6f011a/wait
65
65
  body:
66
66
  encoding: US-ASCII
67
67
  string: ''
68
68
  headers:
69
69
  User-Agent:
70
- - Swipely/Docker-API 1.8.4
70
+ - Swipely/Docker-API 1.11.1
71
71
  Content-Type:
72
72
  - text/plain
73
73
  response:
@@ -78,7 +78,7 @@ http_interactions:
78
78
  Content-Type:
79
79
  - application/json
80
80
  Date:
81
- - Fri, 28 Feb 2014 21:41:45 GMT
81
+ - Fri, 06 Jun 2014 13:36:33 GMT
82
82
  Content-Length:
83
83
  - '17'
84
84
  Connection:
@@ -88,16 +88,16 @@ http_interactions:
88
88
  string: |
89
89
  {"StatusCode":0}
90
90
  http_version:
91
- recorded_at: Fri, 28 Feb 2014 21:41:45 GMT
91
+ recorded_at: Fri, 06 Jun 2014 13:36:33 GMT
92
92
  - request:
93
93
  method: get
94
- uri: unix:///var/run/docker.sock/v1.10/containers/b308381c9274c9c2e398635eeca5988c015268bf7e2a558eee0498e25629adc7/changes
94
+ uri: unix:///var/run/docker.sock/v1.11/containers/e2aa3bf983f31a26fa4ea31f915f33dbb800210fe5155f3e5ec2b7ef2f6f011a/changes
95
95
  body:
96
96
  encoding: US-ASCII
97
97
  string: ''
98
98
  headers:
99
99
  User-Agent:
100
- - Swipely/Docker-API 1.8.4
100
+ - Swipely/Docker-API 1.11.1
101
101
  Content-Type:
102
102
  - text/plain
103
103
  response:
@@ -108,18 +108,16 @@ http_interactions:
108
108
  Content-Type:
109
109
  - application/json
110
110
  Date:
111
- - Fri, 28 Feb 2014 21:41:45 GMT
111
+ - Fri, 06 Jun 2014 13:36:35 GMT
112
112
  Content-Length:
113
- - '85'
113
+ - '28'
114
114
  Connection:
115
115
  - close
116
116
  body:
117
117
  encoding: UTF-8
118
118
  string: |-
119
- [{"Kind":0,"Path":"/dev"}
120
- ,{"Kind":0,"Path":"/dev/kmsg"}
121
- ,{"Kind":2,"Path":"/root"}
119
+ [{"Kind":2,"Path":"/root"}
122
120
  ]
123
121
  http_version:
124
- recorded_at: Fri, 28 Feb 2014 21:41:45 GMT
125
- recorded_with: VCR 2.8.0
122
+ recorded_at: Fri, 06 Jun 2014 13:36:35 GMT
123
+ 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\":[\"true\"],\"Image\":\"base\"}"
8
+ string: '{"Cmd":["true"],"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:45 GMT
22
+ - Fri, 06 Jun 2014 13:36:57 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":"d0b6d1a3338746fd6ff45fe24e9b112a370ca9490ad97d2ff30a6c38c171c110","Warnings":null}
30
+ {"Id":"bc8a010930c40c2b93ae67076bd83cba37a88201f1438aee70d4917c9ca1f2f3","Warnings":null}
31
31
  http_version:
32
- recorded_at: Wed, 12 Mar 2014 13:31:45 GMT
32
+ recorded_at: Fri, 06 Jun 2014 13:36:57 GMT
33
33
  - request:
34
34
  method: post
35
- uri: unix:///var/run/docker.sock/v1.10/containers/d0b6d1a3338746fd6ff45fe24e9b112a370ca9490ad97d2ff30a6c38c171c110/start
35
+ uri: unix:///var/run/docker.sock/v1.11/containers/bc8a010930c40c2b93ae67076bd83cba37a88201f1438aee70d4917c9ca1f2f3/start
36
36
  body:
37
37
  encoding: UTF-8
38
- string: "{}"
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
  - application/json
44
44
  response:
@@ -47,7 +47,7 @@ http_interactions:
47
47
  message:
48
48
  headers:
49
49
  Date:
50
- - Wed, 12 Mar 2014 13:31:45 GMT
50
+ - Fri, 06 Jun 2014 13:36:57 GMT
51
51
  Content-Length:
52
52
  - '0'
53
53
  Content-Type:
@@ -58,16 +58,16 @@ http_interactions:
58
58
  encoding: UTF-8
59
59
  string: ''
60
60
  http_version:
61
- recorded_at: Wed, 12 Mar 2014 13:31:45 GMT
61
+ recorded_at: Fri, 06 Jun 2014 13:36:57 GMT
62
62
  - request:
63
63
  method: post
64
- uri: unix:///var/run/docker.sock/v1.10/commit?container=d0b6d1a3
64
+ uri: unix:///var/run/docker.sock/v1.11/commit?container=bc8a0109
65
65
  body:
66
66
  encoding: UTF-8
67
67
  string: 'null'
68
68
  headers:
69
69
  User-Agent:
70
- - Swipely/Docker-API 1.9.1
70
+ - Swipely/Docker-API 1.11.1
71
71
  Content-Type:
72
72
  - application/json
73
73
  response:
@@ -78,7 +78,7 @@ http_interactions:
78
78
  Content-Type:
79
79
  - application/json
80
80
  Date:
81
- - Wed, 12 Mar 2014 13:31:46 GMT
81
+ - Fri, 06 Jun 2014 13:36:59 GMT
82
82
  Content-Length:
83
83
  - '74'
84
84
  Connection:
@@ -86,7 +86,7 @@ http_interactions:
86
86
  body:
87
87
  encoding: UTF-8
88
88
  string: |
89
- {"Id":"11967a8e57f5a4535fc81770a3645f10ec7abf92f22308fcb15288bd30a043f7"}
89
+ {"Id":"533a0267fec78da1e15f091420d9a25c16bfee2a2d9f55ae59d52bc8634a9939"}
90
90
  http_version:
91
- recorded_at: Wed, 12 Mar 2014 13:31:46 GMT
92
- recorded_with: VCR 2.8.0
91
+ recorded_at: Fri, 06 Jun 2014 13:36:59 GMT
92
+ 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\":[\"true\"],\"Image\":\"base\"}"
8
+ string: '{"Cmd":["true"],"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:46 GMT
22
+ - Fri, 06 Jun 2014 13:36:59 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":"0ac223f4d407ad2e694bdfcaf63dfdeaa0d33485b1e8163308ceafc821dbc68c","Warnings":null}
30
+ {"Id":"d837dc03361179b175961dd9231bb69611a98c8e9188c5d1f45005d9ec84455e","Warnings":null}
31
31
  http_version:
32
- recorded_at: Wed, 12 Mar 2014 13:31:46 GMT
32
+ recorded_at: Fri, 06 Jun 2014 13:36:59 GMT
33
33
  - request:
34
34
  method: post
35
- uri: unix:///var/run/docker.sock/v1.10/containers/0ac223f4d407ad2e694bdfcaf63dfdeaa0d33485b1e8163308ceafc821dbc68c/start
35
+ uri: unix:///var/run/docker.sock/v1.11/containers/d837dc03361179b175961dd9231bb69611a98c8e9188c5d1f45005d9ec84455e/start
36
36
  body:
37
37
  encoding: UTF-8
38
- string: "{}"
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
  - application/json
44
44
  response:
@@ -47,7 +47,7 @@ http_interactions:
47
47
  message:
48
48
  headers:
49
49
  Date:
50
- - Wed, 12 Mar 2014 13:31:46 GMT
50
+ - Fri, 06 Jun 2014 13:36:59 GMT
51
51
  Content-Length:
52
52
  - '0'
53
53
  Content-Type:
@@ -58,5 +58,5 @@ http_interactions:
58
58
  encoding: UTF-8
59
59
  string: ''
60
60
  http_version:
61
- recorded_at: Wed, 12 Mar 2014 13:31:46 GMT
62
- recorded_with: VCR 2.8.0
61
+ recorded_at: Fri, 06 Jun 2014 13:36:59 GMT
62
+ recorded_with: VCR 2.9.2