docker-api 1.6.0 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +4 -4
  2. data/.cane +0 -1
  3. data/README.md +6 -7
  4. data/docker-api.gemspec +3 -4
  5. data/lib/docker.rb +10 -5
  6. data/lib/docker/connection.rb +2 -0
  7. data/lib/docker/container.rb +39 -4
  8. data/lib/docker/error.rb +6 -0
  9. data/lib/docker/event.rb +40 -0
  10. data/lib/docker/image.rb +37 -13
  11. data/lib/docker/util.rb +25 -1
  12. data/lib/docker/version.rb +2 -2
  13. data/spec/docker/container_spec.rb +37 -19
  14. data/spec/docker/event_spec.rb +79 -0
  15. data/spec/docker/image_spec.rb +89 -30
  16. data/spec/docker/util_spec.rb +83 -0
  17. data/spec/docker_spec.rb +47 -2
  18. data/spec/fixtures/{Dockerfile → build_from_dir/Dockerfile} +0 -0
  19. data/spec/fixtures/top/Dockerfile +2 -0
  20. data/spec/support/vcr.rb +1 -4
  21. data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +33 -0
  22. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +7 -7
  23. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +6 -6
  24. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +6 -6
  25. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +27 -97
  26. data/spec/vcr/Docker_Container/_attach/yields_each_chunk.yml +18 -19
  27. data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +22 -22
  28. data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +18 -18
  29. data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +178 -0
  30. data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +54 -24
  31. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +27 -60
  32. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +27 -60
  33. 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
  34. data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +16 -46
  35. data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +24 -17
  36. data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +14 -14
  37. data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +36 -49
  38. data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +43 -43
  39. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +17 -17
  40. 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 +47 -47
  41. data/spec/vcr/Docker_Container/_start/starts_the_container.yml +25 -25
  42. data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +40 -53
  43. data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +89 -25
  44. data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +17 -17
  45. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +12 -12
  46. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +17 -17
  47. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +12 -12
  48. 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 +110 -0
  49. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/{builds_an_image.yml → without_query_parameters/builds_an_image.yml} +5 -5
  50. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +7 -9
  51. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +121 -0
  52. 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 +151 -0
  53. 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
  54. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +10 -10
  55. data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +53 -109
  56. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +32 -68
  57. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +5 -5
  58. data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +40 -68
  59. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +10 -10
  60. data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +161 -0
  61. data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +17 -17
  62. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +23 -24
  63. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +23 -24
  64. 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 +148 -0
  65. 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 +68 -0
  66. data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +13 -11
  67. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +10 -10
  68. metadata +32 -24
@@ -2,32 +2,32 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://unix/v1.4/info
5
+ uri: unix:///var/run/docker.sock/v1.6/info
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.5.4
11
+ - Swipely/Docker-API 1.6.0
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
15
15
  status:
16
16
  code: 200
17
- message: ''
17
+ message:
18
18
  headers:
19
19
  !binary "Q29udGVudC1UeXBl":
20
20
  - !binary |-
21
21
  YXBwbGljYXRpb24vanNvbg==
22
22
  !binary "Q29udGVudC1MZW5ndGg=":
23
23
  - !binary |-
24
- MjM2
24
+ MjM1
25
25
  !binary "RGF0ZQ==":
26
26
  - !binary |-
27
- TW9uLCAwNyBPY3QgMjAxMyAxNTowMTowNSBHTVQ=
27
+ RnJpLCAyNSBPY3QgMjAxMyAxNjoyNDo0NyBHTVQ=
28
28
  body:
29
29
  encoding: US-ASCII
30
- string: ! '{"Debug":false,"Containers":4,"Images":2,"NFd":9,"NGoroutines":13,"MemoryLimit":true,"IPv4Forwarding":true,"LXCVersion":"0.9.0","NEventsListener":306,"KernelVersion":"3.8.0-27-generic","IndexServerAddress":"https://index.docker.io/v1/"}'
30
+ string: ! '{"Debug":false,"Containers":8,"Images":9,"NFd":9,"NGoroutines":12,"MemoryLimit":true,"IPv4Forwarding":true,"LXCVersion":"0.9.0","NEventsListener":12,"KernelVersion":"3.8.0-27-generic","IndexServerAddress":"https://index.docker.io/v1/"}'
31
31
  http_version:
32
- recorded_at: Mon, 07 Oct 2013 15:01:05 GMT
32
+ recorded_at: Fri, 25 Oct 2013 16:24:47 GMT
33
33
  recorded_with: VCR 2.6.0
@@ -2,19 +2,19 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://unix/v1.4/info
5
+ uri: unix:///var/run/docker.sock/v1.6/info
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.5.4
11
+ - Swipely/Docker-API 1.6.0
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
15
15
  status:
16
16
  code: 200
17
- message: ''
17
+ message:
18
18
  headers:
19
19
  !binary "Q29udGVudC1UeXBl":
20
20
  - !binary |-
@@ -24,10 +24,10 @@ http_interactions:
24
24
  MjM2
25
25
  !binary "RGF0ZQ==":
26
26
  - !binary |-
27
- TW9uLCAwNyBPY3QgMjAxMyAxNTowMTowNSBHTVQ=
27
+ RnJpLCAyNSBPY3QgMjAxMyAxNjoyNDo0NyBHTVQ=
28
28
  body:
29
29
  encoding: US-ASCII
30
- string: ! '{"Debug":false,"Containers":4,"Images":2,"NFd":9,"NGoroutines":13,"MemoryLimit":true,"IPv4Forwarding":true,"LXCVersion":"0.9.0","NEventsListener":306,"KernelVersion":"3.8.0-27-generic","IndexServerAddress":"https://index.docker.io/v1/"}'
30
+ string: ! '{"Debug":false,"Containers":8,"Images":9,"NFd":10,"NGoroutines":13,"MemoryLimit":true,"IPv4Forwarding":true,"LXCVersion":"0.9.0","NEventsListener":12,"KernelVersion":"3.8.0-27-generic","IndexServerAddress":"https://index.docker.io/v1/"}'
31
31
  http_version:
32
- recorded_at: Mon, 07 Oct 2013 15:01:05 GMT
32
+ recorded_at: Fri, 25 Oct 2013 16:24:47 GMT
33
33
  recorded_with: VCR 2.6.0
@@ -2,19 +2,19 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://unix/v1.4/version
5
+ uri: unix:///var/run/docker.sock/v1.6/version
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.5.4
11
+ - Swipely/Docker-API 1.6.0
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
15
15
  status:
16
16
  code: 200
17
- message: ''
17
+ message:
18
18
  headers:
19
19
  !binary "Q29udGVudC1UeXBl":
20
20
  - !binary |-
@@ -24,10 +24,10 @@ http_interactions:
24
24
  NjM=
25
25
  !binary "RGF0ZQ==":
26
26
  - !binary |-
27
- TW9uLCAwNyBPY3QgMjAxMyAxNDo1ODo1OSBHTVQ=
27
+ RnJpLCAyNSBPY3QgMjAxMyAxNTo1NTozNyBHTVQ=
28
28
  body:
29
29
  encoding: US-ASCII
30
- string: ! '{"Version":"0.6.3","GitCommit":"b0a49a3","GoVersion":"go1.1.2"}'
30
+ string: ! '{"Version":"0.6.4","GitCommit":"2f74b1c","GoVersion":"go1.1.2"}'
31
31
  http_version:
32
- recorded_at: Mon, 07 Oct 2013 14:58:59 GMT
32
+ recorded_at: Fri, 25 Oct 2013 15:55:37 GMT
33
33
  recorded_with: VCR 2.6.0
@@ -2,164 +2,94 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://unix/v1.4/containers/create
5
+ uri: unix:///var/run/docker.sock/v1.6/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.5.4
11
+ - Swipely/Docker-API 1.6.0
12
12
  Content-Type:
13
13
  - application/json
14
14
  response:
15
15
  status:
16
16
  code: 201
17
- message: ''
17
+ message:
18
18
  headers:
19
19
  !binary "Q29udGVudC1UeXBl":
20
20
  - !binary |-
21
21
  YXBwbGljYXRpb24vanNvbg==
22
22
  !binary "Q29udGVudC1MZW5ndGg=":
23
23
  - !binary |-
24
- NjU=
24
+ MjE=
25
25
  !binary "RGF0ZQ==":
26
26
  - !binary |-
27
- TW9uLCAwNyBPY3QgMjAxMyAwMDo0Nzo0MCBHTVQ=
27
+ TW9uLCAyOCBPY3QgMjAxMyAxNDozNTozNiBHTVQ=
28
28
  body:
29
29
  encoding: US-ASCII
30
- string: ! '{"Id":"cee0d40e01b5","Warnings":["IPv4 forwarding is disabled."]}'
30
+ string: ! '{"Id":"86e7cfd11b94"}'
31
31
  http_version:
32
- recorded_at: Mon, 07 Oct 2013 00:47:40 GMT
32
+ recorded_at: Mon, 28 Oct 2013 14:35:36 GMT
33
33
  - request:
34
34
  method: get
35
- uri: http://unix/v1.4/containers/json?all=true
35
+ uri: unix:///var/run/docker.sock/v1.6/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.5.4
41
+ - Swipely/Docker-API 1.6.0
42
42
  Content-Type:
43
43
  - text/plain
44
44
  response:
45
45
  status:
46
46
  code: 200
47
- message: ''
47
+ message:
48
48
  headers:
49
49
  !binary "Q29udGVudC1UeXBl":
50
50
  - !binary |-
51
51
  YXBwbGljYXRpb24vanNvbg==
52
- !binary "RGF0ZQ==":
52
+ !binary "Q29udGVudC1MZW5ndGg=":
53
53
  - !binary |-
54
- TW9uLCAwNyBPY3QgMjAxMyAwMDo0Nzo0MCBHTVQ=
55
- !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
54
+ MTkx
55
+ !binary "RGF0ZQ==":
56
56
  - !binary |-
57
- Y2h1bmtlZA==
57
+ TW9uLCAyOCBPY3QgMjAxMyAxNDozNTozNiBHTVQ=
58
58
  body:
59
59
  encoding: US-ASCII
60
- string: ! '[{"Id":"cee0d40e01b5ae9b9691a9c8b0a03e8310967b16f2c497d0c5d66c9d249bcd5d","Image":"base:latest","Command":"ls
61
- ","Created":1381106860,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"8f9ec1ca0abac4a5867d0c06b3af1ac860637b5c929b61d5aad0f4a5151627e7","Image":"base:latest","Command":"date
62
- ","Created":1381106860,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b22a5da9949c1726aefe8cd68248fe96f75f86909ba37ce6e3a49b22a24ad643","Image":"base:latest","Command":"true
63
- ","Created":1381106860,"Status":"Up Less than a second","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9e72eb4c5f37e773dae080f57d3f155ce2037a0db3b5ad82710e5f8163dfa793","Image":"4f950dcbd5a5","Command":"ls
64
- ","Created":1381106859,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0f51f2f337bcc9ab09042e66a13a2739ecb4b3b30633efaeed499bb4d593953d","Image":"base:latest","Command":"pwd
65
- ","Created":1381106859,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"bdf4626c3ebaa117308ebf8c444c5d4a8a65e50c222c1f02aaaa5b59501b1df5","Image":"base:latest","Command":"lol
66
- not a real command","Created":1381106858,"Status":"Exit 127","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"afa24d92d7f82eda37e160bf81a28895bbba59080f04a3bcc1a5f18954e001c5","Image":"base:latest","Command":"sleep
67
- 5","Created":1381106858,"Status":"Up 1 seconds","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d25daa9afbd8a6684b73aaa962d5c3ef0c4f60547e701d5749f1ed960d49169b","Image":"base:latest","Command":"sleep
68
- 5","Created":1381106853,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f68f3c9e97242ccb87844ab69a39566de5d6f7ef950447582a86adfa038643b9","Image":"base:latest","Command":"tar
69
- nonsense","Created":1381106852,"Status":"Exit 64","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"fb0967fb2ba3f9db4b468f6a70ca832f3b26d72fab3ef704d55416c7952c5d19","Image":"base:latest","Command":"sleep
70
- 50","Created":1381106842,"Status":"Up 7 seconds","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"7bf405f5e6fb22c495316077dc7d3b25fe89d508319b66a4a95e7307798dd84a","Image":"base:latest","Command":"ls
71
- ","Created":1381106842,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b5691a48ef64433160a6219e3347cd41ed6240b9a7e79bdc90d1b60e22b5310a","Image":"base:latest","Command":"true
72
- ","Created":1381106841,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4519385a528a788dce0728ed1baff4f929cc7fda10b77edeac22418b7ed4f0ad","Image":"base:latest","Command":"test
73
- -d /foo","Created":1381106841,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f401329d4fd9fdfea6a1f469f4520f5ce6c7a9e69c28f02fc43636a6290a37ed","Image":"base:latest","Command":"pwd
74
- ","Created":1381106840,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"cfb96be8490d42fe733cdf0d8e9ff682170591b9f25f6629bc5817fcb3e18745","Image":"base:latest","Command":"rm
75
- -rf / --no-preserve-root","Created":1381106839,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"fb0f786f06056afb6dcb2cf5ece6e1b6a6544780b030619eb7b0f97b6156636b","Image":"base:latest","Command":"ls
76
- ","Created":1381106839,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6082b8bb44b4bb2a9156fdaf612c9e9c36cff44c3713ac9bb7c52cbae283d5a9","Image":"base:latest","Command":"ls
77
- ","Created":1381106837,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0b545bc9f0f0f207207b62f7f19ea1c3e3d93993aefa38e14c66f06ce5559279","Image":"base:latest","Command":"ls
78
- ","Created":1381106835,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a48a01e35c11a17d3554c2bba3cbda19058f36a057957c6349125bdc78f8a8a7","Image":"base:latest","Command":"find
79
- / -name ''*''","Created":1381106833,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3aecf08d8d31d3e0c39dea5406011006558f88150763cf60e1b8765af4cc0b60","Image":"base:latest","Command":"rm
80
- -rf /root","Created":1381106833,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"92c0a16f7ae5b7e1bef65ae08370c88e90fb17071df512c3a6b2aaba79660a85","Image":"base:latest","Command":"true
81
- ","Created":1381106833,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"549668c1c28b1ad827cc3404a675a3391123964c3fc802a11f1612c2eb9cec36","Image":"base:latest","Command":"true
82
- ","Created":1381106696,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d6649215449a197bbbc187a5e93790eaf170e4b379e28a0337feef8322d5a282","Image":"jbgi/arch-base:latest","Command":"/bin/sh
83
- -lc ping tlunter.com","Created":1375557384,"Status":"Exit 2","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"69591ebe41657405c64a48a31d0a2df2cf1ff9ea1b1cf9714175d3e6cc67ea36","Image":"jbgi/arch-base:latest","Command":"/bin/sh
84
- -lc ping tlunter.com","Created":1375557372,"Status":"Exit 255","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"704f0cb84b6eff28f052491552d3633c331a746f563cb5bb023bc282b160fb4d","Image":"jbgi/arch-base:latest","Command":"/bin/sh
85
- -lc ping tlunter.com","Created":1375556720,"Status":"Exit 2","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1b3a69caf5fca0fec4a379b03e0be9e80ba17070b723746378320a8008204651","Image":"jbgi/arch-base:latest","Command":"/bin/sh
86
- -lc ping tlunter.com","Created":1375556426,"Status":"Exit 2","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d505d659d2db270faafe0f0e95f7713aff64d3d453a28d6bc182821efd294227","Image":"jbgi/arch-base:latest","Command":"/bin/sh
87
- -lc which ping","Created":1375556419,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f476389ebc0169584d7afd8eda7d5abd3b86b80dc2dab1964418289b38112c16","Image":"jbgi/arch-base:latest","Command":"/bin/sh
88
- -lc ls && ping google.com","Created":1375556408,"Status":"Exit 2","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c31d70d336b7604ef5ef50e731c6a66b2f8217ca80716cce0fe2402dd60030a5","Image":"jbgi/arch-base:latest","Command":"/bin/sh
89
- -lc ls","Created":1375556402,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5804cf327f8edc031eb0169ac3c436629a4bfd16a873991234705be03561ea7e","Image":"jbgi/arch-base:latest","Command":"/bin/sh
90
- -lc ping google.com","Created":1375556382,"Status":"Exit 2","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6ade424558f79beb13249a860cfeb6181ddc5c8c4a1c679ffcb97df80eca971d","Image":"jbgi/arch-base:latest","Command":"/bin/sh
91
- -lc ip addr","Created":1375556375,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"dcab42058c9912fdf00152e560844c81633e22cd867866668566d9846e68ff7f","Image":"jbgi/arch-base:latest","Command":"/bin/sh
92
- -lc ip addr","Created":1375556346,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d7ddbde44c7f39f0bd5d390fc3749deb1493496caabcb094f19c5d43505b3332","Image":"jbgi/arch-base:latest","Command":"/bin/sh
93
- -lc pacman -Syu","Created":1375556330,"Status":"Exit -127","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1617294e19c3b56f936165a44106550eba167585e95588ca53be18f13cc3871b","Image":"jbgi/arch-base:latest","Command":"/bin/bash
94
- ","Created":1375556154,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"7bac043a74338151d1a3d991132687705d2a6cc8d1377ffbfeb92b04eb2201b0","Image":"jbgi/arch-base:latest","Command":"/bin/bash
95
- ","Created":1375556101,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"aba819a380a1e95ba68516d72c3c7483a316dbb180401595a9dadbb1322ef1b6","Image":"jbgi/arch-base:latest","Command":"/bin/bash
96
- ","Created":1375556096,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0}]'
60
+ string: ! '[{"Id":"86e7cfd11b94c982d011dc6b9f5414dae7f92065f8ad444ec5254fc92ed6ffd3","Image":"base:latest","Command":"ls
61
+ ","Created":1382970936,"Status":"Exit 0","Ports":null,"SizeRw":0,"SizeRootFs":0}]'
97
62
  http_version:
98
- recorded_at: Mon, 07 Oct 2013 00:47:40 GMT
63
+ recorded_at: Mon, 28 Oct 2013 14:35:36 GMT
99
64
  - request:
100
65
  method: get
101
- uri: http://unix/v1.4/containers/json?all=true
66
+ uri: unix:///var/run/docker.sock/v1.6/containers/json?all=true
102
67
  body:
103
68
  encoding: US-ASCII
104
69
  string: ''
105
70
  headers:
106
71
  User-Agent:
107
- - Swipely/Docker-API 1.5.4
72
+ - Swipely/Docker-API 1.6.0
108
73
  Content-Type:
109
74
  - text/plain
110
75
  response:
111
76
  status:
112
77
  code: 200
113
- message: ''
78
+ message:
114
79
  headers:
115
80
  !binary "Q29udGVudC1UeXBl":
116
81
  - !binary |-
117
82
  YXBwbGljYXRpb24vanNvbg==
118
- !binary "RGF0ZQ==":
83
+ !binary "Q29udGVudC1MZW5ndGg=":
119
84
  - !binary |-
120
- TW9uLCAwNyBPY3QgMjAxMyAwMDo0Nzo0MCBHTVQ=
121
- !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
85
+ MTkx
86
+ !binary "RGF0ZQ==":
122
87
  - !binary |-
123
- Y2h1bmtlZA==
88
+ TW9uLCAyOCBPY3QgMjAxMyAxNDozNTozNiBHTVQ=
124
89
  body:
125
90
  encoding: US-ASCII
126
- string: ! '[{"Id":"cee0d40e01b5ae9b9691a9c8b0a03e8310967b16f2c497d0c5d66c9d249bcd5d","Image":"base:latest","Command":"ls
127
- ","Created":1381106860,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"8f9ec1ca0abac4a5867d0c06b3af1ac860637b5c929b61d5aad0f4a5151627e7","Image":"base:latest","Command":"date
128
- ","Created":1381106860,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b22a5da9949c1726aefe8cd68248fe96f75f86909ba37ce6e3a49b22a24ad643","Image":"base:latest","Command":"true
129
- ","Created":1381106860,"Status":"Up Less than a second","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9e72eb4c5f37e773dae080f57d3f155ce2037a0db3b5ad82710e5f8163dfa793","Image":"4f950dcbd5a5","Command":"ls
130
- ","Created":1381106859,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0f51f2f337bcc9ab09042e66a13a2739ecb4b3b30633efaeed499bb4d593953d","Image":"base:latest","Command":"pwd
131
- ","Created":1381106859,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"bdf4626c3ebaa117308ebf8c444c5d4a8a65e50c222c1f02aaaa5b59501b1df5","Image":"base:latest","Command":"lol
132
- not a real command","Created":1381106858,"Status":"Exit 127","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"afa24d92d7f82eda37e160bf81a28895bbba59080f04a3bcc1a5f18954e001c5","Image":"base:latest","Command":"sleep
133
- 5","Created":1381106858,"Status":"Up 1 seconds","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d25daa9afbd8a6684b73aaa962d5c3ef0c4f60547e701d5749f1ed960d49169b","Image":"base:latest","Command":"sleep
134
- 5","Created":1381106853,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f68f3c9e97242ccb87844ab69a39566de5d6f7ef950447582a86adfa038643b9","Image":"base:latest","Command":"tar
135
- nonsense","Created":1381106852,"Status":"Exit 64","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"fb0967fb2ba3f9db4b468f6a70ca832f3b26d72fab3ef704d55416c7952c5d19","Image":"base:latest","Command":"sleep
136
- 50","Created":1381106842,"Status":"Up 7 seconds","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"7bf405f5e6fb22c495316077dc7d3b25fe89d508319b66a4a95e7307798dd84a","Image":"base:latest","Command":"ls
137
- ","Created":1381106842,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b5691a48ef64433160a6219e3347cd41ed6240b9a7e79bdc90d1b60e22b5310a","Image":"base:latest","Command":"true
138
- ","Created":1381106841,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4519385a528a788dce0728ed1baff4f929cc7fda10b77edeac22418b7ed4f0ad","Image":"base:latest","Command":"test
139
- -d /foo","Created":1381106841,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f401329d4fd9fdfea6a1f469f4520f5ce6c7a9e69c28f02fc43636a6290a37ed","Image":"base:latest","Command":"pwd
140
- ","Created":1381106840,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"cfb96be8490d42fe733cdf0d8e9ff682170591b9f25f6629bc5817fcb3e18745","Image":"base:latest","Command":"rm
141
- -rf / --no-preserve-root","Created":1381106839,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"fb0f786f06056afb6dcb2cf5ece6e1b6a6544780b030619eb7b0f97b6156636b","Image":"base:latest","Command":"ls
142
- ","Created":1381106839,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6082b8bb44b4bb2a9156fdaf612c9e9c36cff44c3713ac9bb7c52cbae283d5a9","Image":"base:latest","Command":"ls
143
- ","Created":1381106837,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0b545bc9f0f0f207207b62f7f19ea1c3e3d93993aefa38e14c66f06ce5559279","Image":"base:latest","Command":"ls
144
- ","Created":1381106835,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a48a01e35c11a17d3554c2bba3cbda19058f36a057957c6349125bdc78f8a8a7","Image":"base:latest","Command":"find
145
- / -name ''*''","Created":1381106833,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3aecf08d8d31d3e0c39dea5406011006558f88150763cf60e1b8765af4cc0b60","Image":"base:latest","Command":"rm
146
- -rf /root","Created":1381106833,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"92c0a16f7ae5b7e1bef65ae08370c88e90fb17071df512c3a6b2aaba79660a85","Image":"base:latest","Command":"true
147
- ","Created":1381106833,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"549668c1c28b1ad827cc3404a675a3391123964c3fc802a11f1612c2eb9cec36","Image":"base:latest","Command":"true
148
- ","Created":1381106696,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d6649215449a197bbbc187a5e93790eaf170e4b379e28a0337feef8322d5a282","Image":"jbgi/arch-base:latest","Command":"/bin/sh
149
- -lc ping tlunter.com","Created":1375557384,"Status":"Exit 2","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"69591ebe41657405c64a48a31d0a2df2cf1ff9ea1b1cf9714175d3e6cc67ea36","Image":"jbgi/arch-base:latest","Command":"/bin/sh
150
- -lc ping tlunter.com","Created":1375557372,"Status":"Exit 255","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"704f0cb84b6eff28f052491552d3633c331a746f563cb5bb023bc282b160fb4d","Image":"jbgi/arch-base:latest","Command":"/bin/sh
151
- -lc ping tlunter.com","Created":1375556720,"Status":"Exit 2","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1b3a69caf5fca0fec4a379b03e0be9e80ba17070b723746378320a8008204651","Image":"jbgi/arch-base:latest","Command":"/bin/sh
152
- -lc ping tlunter.com","Created":1375556426,"Status":"Exit 2","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d505d659d2db270faafe0f0e95f7713aff64d3d453a28d6bc182821efd294227","Image":"jbgi/arch-base:latest","Command":"/bin/sh
153
- -lc which ping","Created":1375556419,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f476389ebc0169584d7afd8eda7d5abd3b86b80dc2dab1964418289b38112c16","Image":"jbgi/arch-base:latest","Command":"/bin/sh
154
- -lc ls && ping google.com","Created":1375556408,"Status":"Exit 2","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c31d70d336b7604ef5ef50e731c6a66b2f8217ca80716cce0fe2402dd60030a5","Image":"jbgi/arch-base:latest","Command":"/bin/sh
155
- -lc ls","Created":1375556402,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5804cf327f8edc031eb0169ac3c436629a4bfd16a873991234705be03561ea7e","Image":"jbgi/arch-base:latest","Command":"/bin/sh
156
- -lc ping google.com","Created":1375556382,"Status":"Exit 2","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6ade424558f79beb13249a860cfeb6181ddc5c8c4a1c679ffcb97df80eca971d","Image":"jbgi/arch-base:latest","Command":"/bin/sh
157
- -lc ip addr","Created":1375556375,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"dcab42058c9912fdf00152e560844c81633e22cd867866668566d9846e68ff7f","Image":"jbgi/arch-base:latest","Command":"/bin/sh
158
- -lc ip addr","Created":1375556346,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d7ddbde44c7f39f0bd5d390fc3749deb1493496caabcb094f19c5d43505b3332","Image":"jbgi/arch-base:latest","Command":"/bin/sh
159
- -lc pacman -Syu","Created":1375556330,"Status":"Exit -127","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1617294e19c3b56f936165a44106550eba167585e95588ca53be18f13cc3871b","Image":"jbgi/arch-base:latest","Command":"/bin/bash
160
- ","Created":1375556154,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"7bac043a74338151d1a3d991132687705d2a6cc8d1377ffbfeb92b04eb2201b0","Image":"jbgi/arch-base:latest","Command":"/bin/bash
161
- ","Created":1375556101,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"aba819a380a1e95ba68516d72c3c7483a316dbb180401595a9dadbb1322ef1b6","Image":"jbgi/arch-base:latest","Command":"/bin/bash
162
- ","Created":1375556096,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0}]'
91
+ string: ! '[{"Id":"86e7cfd11b94c982d011dc6b9f5414dae7f92065f8ad444ec5254fc92ed6ffd3","Image":"base:latest","Command":"ls
92
+ ","Created":1382970936,"Status":"Exit 0","Ports":null,"SizeRw":0,"SizeRootFs":0}]'
163
93
  http_version:
164
- recorded_at: Mon, 07 Oct 2013 00:47:40 GMT
94
+ recorded_at: Mon, 28 Oct 2013 14:35:36 GMT
165
95
  recorded_with: VCR 2.6.0
@@ -2,49 +2,49 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://unix/v1.4/containers/create
5
+ uri: unix:///var/run/docker.sock/v1.6/containers/create
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: ! '{"Cmd":["pwd"],"Image":"base"}'
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.5.4
11
+ - Swipely/Docker-API 1.6.0
12
12
  Content-Type:
13
13
  - application/json
14
14
  response:
15
15
  status:
16
16
  code: 201
17
- message: ''
17
+ message:
18
18
  headers:
19
19
  !binary "Q29udGVudC1UeXBl":
20
20
  - !binary |-
21
21
  YXBwbGljYXRpb24vanNvbg==
22
22
  !binary "Q29udGVudC1MZW5ndGg=":
23
23
  - !binary |-
24
- NjU=
24
+ MjE=
25
25
  !binary "RGF0ZQ==":
26
26
  - !binary |-
27
- TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzoyMCBHTVQ=
27
+ V2VkLCAzMCBPY3QgMjAxMyAxNjo1ODo1MyBHTVQ=
28
28
  body:
29
29
  encoding: US-ASCII
30
- string: ! '{"Id":"f401329d4fd9","Warnings":["IPv4 forwarding is disabled."]}'
30
+ string: ! '{"Id":"8fcf3ea9f6de"}'
31
31
  http_version:
32
- recorded_at: Mon, 07 Oct 2013 00:47:20 GMT
32
+ recorded_at: Wed, 30 Oct 2013 16:58:53 GMT
33
33
  - request:
34
34
  method: post
35
- uri: http://unix/v1.4/containers/f401329d4fd9/start
35
+ uri: unix:///var/run/docker.sock/v1.6/containers/8fcf3ea9f6de/start
36
36
  body:
37
37
  encoding: UTF-8
38
38
  string: ! '{}'
39
39
  headers:
40
40
  User-Agent:
41
- - Swipely/Docker-API 1.5.4
41
+ - Swipely/Docker-API 1.6.0
42
42
  Content-Type:
43
43
  - application/json
44
44
  response:
45
45
  status:
46
46
  code: 204
47
- message: ''
47
+ message:
48
48
  headers:
49
49
  !binary "Q29udGVudC1UeXBl":
50
50
  - !binary |-
@@ -54,36 +54,35 @@ http_interactions:
54
54
  MA==
55
55
  !binary "RGF0ZQ==":
56
56
  - !binary |-
57
- TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzoyMCBHTVQ=
57
+ V2VkLCAzMCBPY3QgMjAxMyAxNjo1ODo1MyBHTVQ=
58
58
  body:
59
59
  encoding: US-ASCII
60
60
  string: ''
61
61
  http_version:
62
- recorded_at: Mon, 07 Oct 2013 00:47:20 GMT
62
+ recorded_at: Wed, 30 Oct 2013 16:58:53 GMT
63
63
  - request:
64
64
  method: post
65
- uri: http://unix/v1.4/containers/f401329d4fd9/attach?stdout=true&stream=true
65
+ uri: unix:///var/run/docker.sock/v1.6/containers/8fcf3ea9f6de/attach?stderr=true&stdout=true&stream=true
66
66
  body:
67
67
  encoding: US-ASCII
68
68
  string: ''
69
69
  headers:
70
70
  User-Agent:
71
- - Swipely/Docker-API 1.5.4
71
+ - Swipely/Docker-API 1.6.0
72
72
  Content-Type:
73
73
  - text/plain
74
74
  response:
75
75
  status:
76
76
  code: 200
77
- message: ''
77
+ message:
78
78
  headers:
79
79
  !binary "Q29udGVudC1UeXBl":
80
80
  - !binary |-
81
81
  YXBwbGljYXRpb24vdm5kLmRvY2tlci5yYXctc3RyZWFt
82
82
  body:
83
83
  encoding: US-ASCII
84
- string: ! '/
85
-
86
- '
84
+ string: !binary |-
85
+ AQAAAAAAAAIvCg==
87
86
  http_version:
88
- recorded_at: Mon, 07 Oct 2013 00:47:21 GMT
87
+ recorded_at: Wed, 30 Oct 2013 16:58:54 GMT
89
88
  recorded_with: VCR 2.6.0
@@ -2,49 +2,49 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://unix/v1.4/containers/create
5
+ uri: unix:///var/run/docker.sock/v1.6/containers/create
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: ! '{"Cmd":["rm","-rf","/root"],"Image":"base"}'
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.5.4
11
+ - Swipely/Docker-API 1.6.0
12
12
  Content-Type:
13
13
  - application/json
14
14
  response:
15
15
  status:
16
16
  code: 201
17
- message: ''
17
+ message:
18
18
  headers:
19
19
  !binary "Q29udGVudC1UeXBl":
20
20
  - !binary |-
21
21
  YXBwbGljYXRpb24vanNvbg==
22
22
  !binary "Q29udGVudC1MZW5ndGg=":
23
23
  - !binary |-
24
- NjU=
24
+ MjE=
25
25
  !binary "RGF0ZQ==":
26
26
  - !binary |-
27
- TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzoxMyBHTVQ=
27
+ RnJpLCAyNSBPY3QgMjAxMyAxNjoyODo1MyBHTVQ=
28
28
  body:
29
29
  encoding: US-ASCII
30
- string: ! '{"Id":"3aecf08d8d31","Warnings":["IPv4 forwarding is disabled."]}'
30
+ string: ! '{"Id":"1375718e85e4"}'
31
31
  http_version:
32
- recorded_at: Mon, 07 Oct 2013 00:47:13 GMT
32
+ recorded_at: Fri, 25 Oct 2013 16:28:53 GMT
33
33
  - request:
34
34
  method: post
35
- uri: http://unix/v1.4/containers/3aecf08d8d31/start
35
+ uri: unix:///var/run/docker.sock/v1.6/containers/1375718e85e4/start
36
36
  body:
37
37
  encoding: UTF-8
38
38
  string: ! '{}'
39
39
  headers:
40
40
  User-Agent:
41
- - Swipely/Docker-API 1.5.4
41
+ - Swipely/Docker-API 1.6.0
42
42
  Content-Type:
43
43
  - application/json
44
44
  response:
45
45
  status:
46
46
  code: 204
47
- message: ''
47
+ message:
48
48
  headers:
49
49
  !binary "Q29udGVudC1UeXBl":
50
50
  - !binary |-
@@ -54,27 +54,27 @@ http_interactions:
54
54
  MA==
55
55
  !binary "RGF0ZQ==":
56
56
  - !binary |-
57
- TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzoxMyBHTVQ=
57
+ RnJpLCAyNSBPY3QgMjAxMyAxNjoyODo1MyBHTVQ=
58
58
  body:
59
59
  encoding: US-ASCII
60
60
  string: ''
61
61
  http_version:
62
- recorded_at: Mon, 07 Oct 2013 00:47:13 GMT
62
+ recorded_at: Fri, 25 Oct 2013 16:28:53 GMT
63
63
  - request:
64
64
  method: post
65
- uri: http://unix/v1.4/containers/3aecf08d8d31/wait
65
+ uri: unix:///var/run/docker.sock/v1.6/containers/1375718e85e4/wait
66
66
  body:
67
67
  encoding: US-ASCII
68
68
  string: ''
69
69
  headers:
70
70
  User-Agent:
71
- - Swipely/Docker-API 1.5.4
71
+ - Swipely/Docker-API 1.6.0
72
72
  Content-Type:
73
73
  - text/plain
74
74
  response:
75
75
  status:
76
76
  code: 200
77
- message: ''
77
+ message:
78
78
  headers:
79
79
  !binary "Q29udGVudC1UeXBl":
80
80
  - !binary |-
@@ -84,27 +84,27 @@ http_interactions:
84
84
  MTY=
85
85
  !binary "RGF0ZQ==":
86
86
  - !binary |-
87
- TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzoxMyBHTVQ=
87
+ RnJpLCAyNSBPY3QgMjAxMyAxNjoyODo1MyBHTVQ=
88
88
  body:
89
89
  encoding: US-ASCII
90
90
  string: ! '{"StatusCode":0}'
91
91
  http_version:
92
- recorded_at: Mon, 07 Oct 2013 00:47:13 GMT
92
+ recorded_at: Fri, 25 Oct 2013 16:28:53 GMT
93
93
  - request:
94
94
  method: get
95
- uri: http://unix/v1.4/containers/3aecf08d8d31/changes
95
+ uri: unix:///var/run/docker.sock/v1.6/containers/1375718e85e4/changes
96
96
  body:
97
97
  encoding: US-ASCII
98
98
  string: ''
99
99
  headers:
100
100
  User-Agent:
101
- - Swipely/Docker-API 1.5.4
101
+ - Swipely/Docker-API 1.6.0
102
102
  Content-Type:
103
103
  - text/plain
104
104
  response:
105
105
  status:
106
106
  code: 200
107
- message: ''
107
+ message:
108
108
  headers:
109
109
  !binary "Q29udGVudC1UeXBl":
110
110
  - !binary |-
@@ -114,10 +114,10 @@ http_interactions:
114
114
  ODI=
115
115
  !binary "RGF0ZQ==":
116
116
  - !binary |-
117
- TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzoxMyBHTVQ=
117
+ RnJpLCAyNSBPY3QgMjAxMyAxNjoyODo1MyBHTVQ=
118
118
  body:
119
119
  encoding: US-ASCII
120
120
  string: ! '[{"Path":"/root","Kind":2},{"Path":"/dev","Kind":0},{"Path":"/dev/kmsg","Kind":1}]'
121
121
  http_version:
122
- recorded_at: Mon, 07 Oct 2013 00:47:13 GMT
122
+ recorded_at: Fri, 25 Oct 2013 16:28:53 GMT
123
123
  recorded_with: VCR 2.6.0