docker-client 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/.rspec +2 -0
- data/.rvmrc +1 -0
- data/Gemfile +4 -0
- data/Guardfile +9 -0
- data/LICENSE.txt +22 -0
- data/MIT-LICENSE +21 -0
- data/README.md +87 -0
- data/Rakefile +15 -0
- data/docker.gemspec +40 -0
- data/lib/docker.rb +10 -0
- data/lib/docker/api.rb +32 -0
- data/lib/docker/connection.rb +83 -0
- data/lib/docker/error.rb +9 -0
- data/lib/docker/error/bad_parameter_error.rb +7 -0
- data/lib/docker/error/container_not_found.rb +7 -0
- data/lib/docker/error/internal_server_error.rb +7 -0
- data/lib/docker/error/not_found_error.rb +7 -0
- data/lib/docker/resource.rb +8 -0
- data/lib/docker/resource/base.rb +23 -0
- data/lib/docker/resource/container.rb +131 -0
- data/lib/docker/resource/image.rb +10 -0
- data/lib/docker/version.rb +3 -0
- data/spec/cassettes/Docker_Connection/returns_a_valid_response_for_a_basic_request.yml +40 -0
- data/spec/cassettes/Docker_Connection/returns_a_valid_response_for_get_request.yml +105 -0
- data/spec/cassettes/Docker_Connection/returns_a_valid_response_for_post_request.yml +30 -0
- data/spec/cassettes/Docker_Connection/returns_status_404_for_non_existent_path.yml +31 -0
- data/spec/cassettes/Docker_Connection/sets_given_query_parameters.yml +31 -0
- data/spec/cassettes/Docker_Connection/sets_given_request_headers.yml +33 -0
- data/spec/cassettes/Docker_Resource_Container/changes/inspects_the_container_s_filesystem_changes.yml +33 -0
- data/spec/cassettes/Docker_Resource_Container/create/raises_an_exception_when_called_with_invalid_options.yml +34 -0
- data/spec/cassettes/Docker_Resource_Container/create/with_many_settings.yml +36 -0
- data/spec/cassettes/Docker_Resource_Container/create/with_minimal_settings.yml +34 -0
- data/spec/cassettes/Docker_Resource_Container/kill/raises_an_exception_for_an_unknow_container.yml +31 -0
- data/spec/cassettes/Docker_Resource_Container/kill/the_container.yml +30 -0
- data/spec/cassettes/Docker_Resource_Container/lists/all_running_containers.yml +46 -0
- data/spec/cassettes/Docker_Resource_Container/lists/limit_last_created_containers.yml +34 -0
- data/spec/cassettes/Docker_Resource_Container/lists/non-running_processes_too.yml +114 -0
- data/spec/cassettes/Docker_Resource_Container/lists/processes_before_a_certain_created_container.yml +110 -0
- data/spec/cassettes/Docker_Resource_Container/lists/processes_since_a_certain_created_container.yml +34 -0
- data/spec/cassettes/Docker_Resource_Container/logs/returns_the_stderr_of_a_container.yml +25 -0
- data/spec/cassettes/Docker_Resource_Container/logs/returns_the_stdout_of_a_container.yml +25 -0
- data/spec/cassettes/Docker_Resource_Container/remove/deletes_the_container.yml +30 -0
- data/spec/cassettes/Docker_Resource_Container/remove/raises_an_exception_with_an_invalid_container.yml +31 -0
- data/spec/cassettes/Docker_Resource_Container/restarts/raises_an_exception_for_an_unknown_container.yml +31 -0
- data/spec/cassettes/Docker_Resource_Container/restarts/the_container.yml +30 -0
- data/spec/cassettes/Docker_Resource_Container/shows/the_low_level_details.yml +48 -0
- data/spec/cassettes/Docker_Resource_Container/start/brings_a_container_into_state_running.yml +30 -0
- data/spec/cassettes/Docker_Resource_Container/start/raises_an_exception_for_an_unknown_container.yml +31 -0
- data/spec/cassettes/Docker_Resource_Container/stop/halts_a_container.yml +30 -0
- data/spec/cassettes/Docker_Resource_Container/stop/raises_an_exception_for_an_unknown_container.yml +31 -0
- data/spec/cassettes/Docker_Resource_Container/wait/blocks_until_the_container_stops.yml +31 -0
- data/spec/cassettes/Docker_Resource_Container/wait/raises_an_exception_for_an_unknown_container.yml +31 -0
- data/spec/cassettes/test_setup/create_container_connection_post.yml +33 -0
- data/spec/cassettes/test_setup/create_container_container_changes.yml +33 -0
- data/spec/cassettes/test_setup/create_container_container_kill.yml +34 -0
- data/spec/cassettes/test_setup/create_container_container_lists1.yml +34 -0
- data/spec/cassettes/test_setup/create_container_container_lists2.yml +33 -0
- data/spec/cassettes/test_setup/create_container_container_logs.yml +33 -0
- data/spec/cassettes/test_setup/create_container_container_remove.yml +33 -0
- data/spec/cassettes/test_setup/create_container_container_restarts.yml +34 -0
- data/spec/cassettes/test_setup/create_container_container_shows.yml +33 -0
- data/spec/cassettes/test_setup/create_container_container_start.yml +33 -0
- data/spec/cassettes/test_setup/create_container_container_stop.yml +34 -0
- data/spec/cassettes/test_setup/create_container_container_wait.yml +33 -0
- data/spec/cassettes/test_setup/delete_container.yml +405 -0
- data/spec/cassettes/test_setup/start_container.yml +235 -0
- data/spec/cassettes/test_setup/wait_on_container.yml +63 -0
- data/spec/docker/api_spec.rb +37 -0
- data/spec/docker/connection_spec.rb +81 -0
- data/spec/docker/resource/container_spec.rb +288 -0
- data/spec/helpers.rb +48 -0
- data/spec/spec_helper.rb +31 -0
- metadata +361 -0
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://10.0.5.5:4243/containers/create
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ! '{"Cmd":["env"],"Image":"base"}'
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- application/json
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 201
|
15
|
+
message: !binary |-
|
16
|
+
Q3JlYXRlZA==
|
17
|
+
headers:
|
18
|
+
!binary "RGF0ZQ==":
|
19
|
+
- !binary |-
|
20
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNToxMyBHTVQ=
|
21
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
22
|
+
- !binary |-
|
23
|
+
Y2h1bmtlZA==
|
24
|
+
!binary "Q29udGVudC1UeXBl":
|
25
|
+
- !binary |-
|
26
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
27
|
+
body:
|
28
|
+
encoding: ASCII-8BIT
|
29
|
+
string: !binary |-
|
30
|
+
eyJJZCI6IjJlMzExYzEyMWEyOCIsIldhcm5pbmdzIjpudWxsfQ==
|
31
|
+
http_version:
|
32
|
+
recorded_at: Sat, 25 May 2013 16:05:15 GMT
|
33
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://10.0.5.5:4243/containers/create
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ! '{"Cmd":["/bin/sh","-c","echo stdout; echo stderr 1>&2"],"Image":"base"}'
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- application/json
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 201
|
15
|
+
message: !binary |-
|
16
|
+
Q3JlYXRlZA==
|
17
|
+
headers:
|
18
|
+
!binary "RGF0ZQ==":
|
19
|
+
- !binary |-
|
20
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNToyNCBHTVQ=
|
21
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
22
|
+
- !binary |-
|
23
|
+
Y2h1bmtlZA==
|
24
|
+
!binary "Q29udGVudC1UeXBl":
|
25
|
+
- !binary |-
|
26
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
27
|
+
body:
|
28
|
+
encoding: ASCII-8BIT
|
29
|
+
string: !binary |-
|
30
|
+
eyJJZCI6IjE2Nzk1MWYwMjU4MSIsIldhcm5pbmdzIjpudWxsfQ==
|
31
|
+
http_version:
|
32
|
+
recorded_at: Sat, 25 May 2013 16:05:26 GMT
|
33
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://10.0.5.5:4243/containers/create
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ! '{"Volumes":{"/var/lib/app":{}},"Cmd":["env"],"Image":"base"}'
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- application/json
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 201
|
15
|
+
message: !binary |-
|
16
|
+
Q3JlYXRlZA==
|
17
|
+
headers:
|
18
|
+
!binary "RGF0ZQ==":
|
19
|
+
- !binary |-
|
20
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNToxMiBHTVQ=
|
21
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
22
|
+
- !binary |-
|
23
|
+
Y2h1bmtlZA==
|
24
|
+
!binary "Q29udGVudC1UeXBl":
|
25
|
+
- !binary |-
|
26
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
27
|
+
body:
|
28
|
+
encoding: ASCII-8BIT
|
29
|
+
string: !binary |-
|
30
|
+
eyJJZCI6IjEyM2E0NWZiOWY5MSIsIldhcm5pbmdzIjpudWxsfQ==
|
31
|
+
http_version:
|
32
|
+
recorded_at: Sat, 25 May 2013 16:05:15 GMT
|
33
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,34 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://10.0.5.5:4243/containers/create
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ! '{"Cmd":["/bin/sh","-c","while true; do echo hello world; sleep 1;
|
9
|
+
done"],"Image":"base"}'
|
10
|
+
headers:
|
11
|
+
Content-Type:
|
12
|
+
- application/json
|
13
|
+
response:
|
14
|
+
status:
|
15
|
+
code: 201
|
16
|
+
message: !binary |-
|
17
|
+
Q3JlYXRlZA==
|
18
|
+
headers:
|
19
|
+
!binary "RGF0ZQ==":
|
20
|
+
- !binary |-
|
21
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNTozMyBHTVQ=
|
22
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
23
|
+
- !binary |-
|
24
|
+
Y2h1bmtlZA==
|
25
|
+
!binary "Q29udGVudC1UeXBl":
|
26
|
+
- !binary |-
|
27
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
28
|
+
body:
|
29
|
+
encoding: ASCII-8BIT
|
30
|
+
string: !binary |-
|
31
|
+
eyJJZCI6IjM3MDA2NDFkOTNkZSIsIldhcm5pbmdzIjpudWxsfQ==
|
32
|
+
http_version:
|
33
|
+
recorded_at: Sat, 25 May 2013 16:05:35 GMT
|
34
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://10.0.5.5:4243/containers/create
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ! '{"Cmd":["env"],"Image":"base"}'
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- application/json
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 201
|
15
|
+
message: !binary |-
|
16
|
+
Q3JlYXRlZA==
|
17
|
+
headers:
|
18
|
+
!binary "RGF0ZQ==":
|
19
|
+
- !binary |-
|
20
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNToxNiBHTVQ=
|
21
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
22
|
+
- !binary |-
|
23
|
+
Y2h1bmtlZA==
|
24
|
+
!binary "Q29udGVudC1UeXBl":
|
25
|
+
- !binary |-
|
26
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
27
|
+
body:
|
28
|
+
encoding: ASCII-8BIT
|
29
|
+
string: !binary |-
|
30
|
+
eyJJZCI6IjdlNmM2YzVjMmIzYiIsIldhcm5pbmdzIjpudWxsfQ==
|
31
|
+
http_version:
|
32
|
+
recorded_at: Sat, 25 May 2013 16:05:19 GMT
|
33
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://10.0.5.5:4243/containers/create
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ! '{"Cmd":["env"],"Image":"base"}'
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- application/json
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 201
|
15
|
+
message: !binary |-
|
16
|
+
Q3JlYXRlZA==
|
17
|
+
headers:
|
18
|
+
!binary "RGF0ZQ==":
|
19
|
+
- !binary |-
|
20
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNToyNCBHTVQ=
|
21
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
22
|
+
- !binary |-
|
23
|
+
Y2h1bmtlZA==
|
24
|
+
!binary "Q29udGVudC1UeXBl":
|
25
|
+
- !binary |-
|
26
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
27
|
+
body:
|
28
|
+
encoding: ASCII-8BIT
|
29
|
+
string: !binary |-
|
30
|
+
eyJJZCI6IjFkNzdhMzI1N2VkOCIsIldhcm5pbmdzIjpudWxsfQ==
|
31
|
+
http_version:
|
32
|
+
recorded_at: Sat, 25 May 2013 16:05:27 GMT
|
33
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,34 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://10.0.5.5:4243/containers/create
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ! '{"Cmd":["/bin/sh","-c","while true; do echo hello world; sleep 1;
|
9
|
+
done"],"Image":"base"}'
|
10
|
+
headers:
|
11
|
+
Content-Type:
|
12
|
+
- application/json
|
13
|
+
response:
|
14
|
+
status:
|
15
|
+
code: 201
|
16
|
+
message: !binary |-
|
17
|
+
Q3JlYXRlZA==
|
18
|
+
headers:
|
19
|
+
!binary "RGF0ZQ==":
|
20
|
+
- !binary |-
|
21
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNToyNSBHTVQ=
|
22
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
23
|
+
- !binary |-
|
24
|
+
Y2h1bmtlZA==
|
25
|
+
!binary "Q29udGVudC1UeXBl":
|
26
|
+
- !binary |-
|
27
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
28
|
+
body:
|
29
|
+
encoding: ASCII-8BIT
|
30
|
+
string: !binary |-
|
31
|
+
eyJJZCI6Ijk1ZmJlY2VkN2E5NyIsIldhcm5pbmdzIjpudWxsfQ==
|
32
|
+
http_version:
|
33
|
+
recorded_at: Sat, 25 May 2013 16:05:27 GMT
|
34
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://10.0.5.5:4243/containers/create
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ! '{"Cmd":["sleep","3"],"Image":"base"}'
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- application/json
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 201
|
15
|
+
message: !binary |-
|
16
|
+
Q3JlYXRlZA==
|
17
|
+
headers:
|
18
|
+
!binary "RGF0ZQ==":
|
19
|
+
- !binary |-
|
20
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNToyMCBHTVQ=
|
21
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
22
|
+
- !binary |-
|
23
|
+
Y2h1bmtlZA==
|
24
|
+
!binary "Q29udGVudC1UeXBl":
|
25
|
+
- !binary |-
|
26
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
27
|
+
body:
|
28
|
+
encoding: ASCII-8BIT
|
29
|
+
string: !binary |-
|
30
|
+
eyJJZCI6IjQ5OWM1YzhhYzQ4YSIsIldhcm5pbmdzIjpudWxsfQ==
|
31
|
+
http_version:
|
32
|
+
recorded_at: Sat, 25 May 2013 16:05:22 GMT
|
33
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,405 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: delete
|
5
|
+
uri: http://10.0.5.5:4243/containers/12433dcd5b7a?v=true
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- application/json
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 204
|
15
|
+
message: !binary |-
|
16
|
+
Tm8gQ29udGVudA==
|
17
|
+
headers:
|
18
|
+
!binary "RGF0ZQ==":
|
19
|
+
- !binary |-
|
20
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNToxNiBHTVQ=
|
21
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
22
|
+
- !binary |-
|
23
|
+
Y2h1bmtlZA==
|
24
|
+
!binary "Q29udGVudC1UeXBl":
|
25
|
+
- !binary |-
|
26
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
27
|
+
body:
|
28
|
+
encoding: ASCII-8BIT
|
29
|
+
string: !binary ""
|
30
|
+
http_version:
|
31
|
+
recorded_at: Sat, 25 May 2013 16:05:19 GMT
|
32
|
+
- request:
|
33
|
+
method: delete
|
34
|
+
uri: http://10.0.5.5:4243/containers/2e311c121a28?v=true
|
35
|
+
body:
|
36
|
+
encoding: US-ASCII
|
37
|
+
string: ''
|
38
|
+
headers:
|
39
|
+
Content-Type:
|
40
|
+
- application/json
|
41
|
+
response:
|
42
|
+
status:
|
43
|
+
code: 204
|
44
|
+
message: !binary |-
|
45
|
+
Tm8gQ29udGVudA==
|
46
|
+
headers:
|
47
|
+
!binary "RGF0ZQ==":
|
48
|
+
- !binary |-
|
49
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNToxNiBHTVQ=
|
50
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
51
|
+
- !binary |-
|
52
|
+
Y2h1bmtlZA==
|
53
|
+
!binary "Q29udGVudC1UeXBl":
|
54
|
+
- !binary |-
|
55
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
56
|
+
body:
|
57
|
+
encoding: ASCII-8BIT
|
58
|
+
string: !binary ""
|
59
|
+
http_version:
|
60
|
+
recorded_at: Sat, 25 May 2013 16:05:19 GMT
|
61
|
+
- request:
|
62
|
+
method: delete
|
63
|
+
uri: http://10.0.5.5:4243/containers/7e6c6c5c2b3b?v=true
|
64
|
+
body:
|
65
|
+
encoding: US-ASCII
|
66
|
+
string: ''
|
67
|
+
headers:
|
68
|
+
Content-Type:
|
69
|
+
- application/json
|
70
|
+
response:
|
71
|
+
status:
|
72
|
+
code: 204
|
73
|
+
message: !binary |-
|
74
|
+
Tm8gQ29udGVudA==
|
75
|
+
headers:
|
76
|
+
!binary "RGF0ZQ==":
|
77
|
+
- !binary |-
|
78
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNToxNyBHTVQ=
|
79
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
80
|
+
- !binary |-
|
81
|
+
Y2h1bmtlZA==
|
82
|
+
!binary "Q29udGVudC1UeXBl":
|
83
|
+
- !binary |-
|
84
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
85
|
+
body:
|
86
|
+
encoding: ASCII-8BIT
|
87
|
+
string: !binary ""
|
88
|
+
http_version:
|
89
|
+
recorded_at: Sat, 25 May 2013 16:05:19 GMT
|
90
|
+
- request:
|
91
|
+
method: delete
|
92
|
+
uri: http://10.0.5.5:4243/containers/e6fa2f7eb0b6?v=true
|
93
|
+
body:
|
94
|
+
encoding: US-ASCII
|
95
|
+
string: ''
|
96
|
+
headers:
|
97
|
+
Content-Type:
|
98
|
+
- application/json
|
99
|
+
response:
|
100
|
+
status:
|
101
|
+
code: 204
|
102
|
+
message: !binary |-
|
103
|
+
Tm8gQ29udGVudA==
|
104
|
+
headers:
|
105
|
+
!binary "RGF0ZQ==":
|
106
|
+
- !binary |-
|
107
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNToyMCBHTVQ=
|
108
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
109
|
+
- !binary |-
|
110
|
+
Y2h1bmtlZA==
|
111
|
+
!binary "Q29udGVudC1UeXBl":
|
112
|
+
- !binary |-
|
113
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
114
|
+
body:
|
115
|
+
encoding: ASCII-8BIT
|
116
|
+
string: !binary ""
|
117
|
+
http_version:
|
118
|
+
recorded_at: Sat, 25 May 2013 16:05:22 GMT
|
119
|
+
- request:
|
120
|
+
method: delete
|
121
|
+
uri: http://10.0.5.5:4243/containers/499c5c8ac48a?v=true
|
122
|
+
body:
|
123
|
+
encoding: US-ASCII
|
124
|
+
string: ''
|
125
|
+
headers:
|
126
|
+
Content-Type:
|
127
|
+
- application/json
|
128
|
+
response:
|
129
|
+
status:
|
130
|
+
code: 204
|
131
|
+
message: !binary |-
|
132
|
+
Tm8gQ29udGVudA==
|
133
|
+
headers:
|
134
|
+
!binary "RGF0ZQ==":
|
135
|
+
- !binary |-
|
136
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNToyNCBHTVQ=
|
137
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
138
|
+
- !binary |-
|
139
|
+
Y2h1bmtlZA==
|
140
|
+
!binary "Q29udGVudC1UeXBl":
|
141
|
+
- !binary |-
|
142
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
143
|
+
body:
|
144
|
+
encoding: ASCII-8BIT
|
145
|
+
string: !binary ""
|
146
|
+
http_version:
|
147
|
+
recorded_at: Sat, 25 May 2013 16:05:26 GMT
|
148
|
+
- request:
|
149
|
+
method: delete
|
150
|
+
uri: http://10.0.5.5:4243/containers/167951f02581?v=true
|
151
|
+
body:
|
152
|
+
encoding: US-ASCII
|
153
|
+
string: ''
|
154
|
+
headers:
|
155
|
+
Content-Type:
|
156
|
+
- application/json
|
157
|
+
response:
|
158
|
+
status:
|
159
|
+
code: 204
|
160
|
+
message: !binary |-
|
161
|
+
Tm8gQ29udGVudA==
|
162
|
+
headers:
|
163
|
+
!binary "RGF0ZQ==":
|
164
|
+
- !binary |-
|
165
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNToyNCBHTVQ=
|
166
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
167
|
+
- !binary |-
|
168
|
+
Y2h1bmtlZA==
|
169
|
+
!binary "Q29udGVudC1UeXBl":
|
170
|
+
- !binary |-
|
171
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
172
|
+
body:
|
173
|
+
encoding: ASCII-8BIT
|
174
|
+
string: !binary ""
|
175
|
+
http_version:
|
176
|
+
recorded_at: Sat, 25 May 2013 16:05:27 GMT
|
177
|
+
- request:
|
178
|
+
method: delete
|
179
|
+
uri: http://10.0.5.5:4243/containers/1d77a3257ed8?v=true
|
180
|
+
body:
|
181
|
+
encoding: US-ASCII
|
182
|
+
string: ''
|
183
|
+
headers:
|
184
|
+
Content-Type:
|
185
|
+
- application/json
|
186
|
+
response:
|
187
|
+
status:
|
188
|
+
code: 204
|
189
|
+
message: !binary |-
|
190
|
+
Tm8gQ29udGVudA==
|
191
|
+
headers:
|
192
|
+
!binary "RGF0ZQ==":
|
193
|
+
- !binary |-
|
194
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNToyNSBHTVQ=
|
195
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
196
|
+
- !binary |-
|
197
|
+
Y2h1bmtlZA==
|
198
|
+
!binary "Q29udGVudC1UeXBl":
|
199
|
+
- !binary |-
|
200
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
201
|
+
body:
|
202
|
+
encoding: ASCII-8BIT
|
203
|
+
string: !binary ""
|
204
|
+
http_version:
|
205
|
+
recorded_at: Sat, 25 May 2013 16:05:27 GMT
|
206
|
+
- request:
|
207
|
+
method: delete
|
208
|
+
uri: http://10.0.5.5:4243/containers/95fbeced7a97?v=true
|
209
|
+
body:
|
210
|
+
encoding: US-ASCII
|
211
|
+
string: ''
|
212
|
+
headers:
|
213
|
+
Content-Type:
|
214
|
+
- application/json
|
215
|
+
response:
|
216
|
+
status:
|
217
|
+
code: 204
|
218
|
+
message: !binary |-
|
219
|
+
Tm8gQ29udGVudA==
|
220
|
+
headers:
|
221
|
+
!binary "RGF0ZQ==":
|
222
|
+
- !binary |-
|
223
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNTozMSBHTVQ=
|
224
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
225
|
+
- !binary |-
|
226
|
+
Y2h1bmtlZA==
|
227
|
+
!binary "Q29udGVudC1UeXBl":
|
228
|
+
- !binary |-
|
229
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
230
|
+
body:
|
231
|
+
encoding: ASCII-8BIT
|
232
|
+
string: !binary ""
|
233
|
+
http_version:
|
234
|
+
recorded_at: Sat, 25 May 2013 16:05:33 GMT
|
235
|
+
- request:
|
236
|
+
method: delete
|
237
|
+
uri: http://10.0.5.5:4243/containers/a8eb3552f203?v=true
|
238
|
+
body:
|
239
|
+
encoding: US-ASCII
|
240
|
+
string: ''
|
241
|
+
headers: {}
|
242
|
+
response:
|
243
|
+
status:
|
244
|
+
code: 204
|
245
|
+
message: !binary |-
|
246
|
+
Tm8gQ29udGVudA==
|
247
|
+
headers:
|
248
|
+
!binary "RGF0ZQ==":
|
249
|
+
- !binary |-
|
250
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNTozMSBHTVQ=
|
251
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
252
|
+
- !binary |-
|
253
|
+
Y2h1bmtlZA==
|
254
|
+
!binary "Q29udGVudC1UeXBl":
|
255
|
+
- !binary |-
|
256
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
257
|
+
body:
|
258
|
+
encoding: ASCII-8BIT
|
259
|
+
string: !binary ""
|
260
|
+
http_version:
|
261
|
+
recorded_at: Sat, 25 May 2013 16:05:33 GMT
|
262
|
+
- request:
|
263
|
+
method: delete
|
264
|
+
uri: http://10.0.5.5:4243/containers/4adae41f4ddb?v=true
|
265
|
+
body:
|
266
|
+
encoding: US-ASCII
|
267
|
+
string: ''
|
268
|
+
headers: {}
|
269
|
+
response:
|
270
|
+
status:
|
271
|
+
code: 204
|
272
|
+
message: !binary |-
|
273
|
+
Tm8gQ29udGVudA==
|
274
|
+
headers:
|
275
|
+
!binary "RGF0ZQ==":
|
276
|
+
- !binary |-
|
277
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNTozMSBHTVQ=
|
278
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
279
|
+
- !binary |-
|
280
|
+
Y2h1bmtlZA==
|
281
|
+
!binary "Q29udGVudC1UeXBl":
|
282
|
+
- !binary |-
|
283
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
284
|
+
body:
|
285
|
+
encoding: ASCII-8BIT
|
286
|
+
string: !binary ""
|
287
|
+
http_version:
|
288
|
+
recorded_at: Sat, 25 May 2013 16:05:33 GMT
|
289
|
+
- request:
|
290
|
+
method: delete
|
291
|
+
uri: http://10.0.5.5:4243/containers/9f79b401cf57?v=true
|
292
|
+
body:
|
293
|
+
encoding: US-ASCII
|
294
|
+
string: ''
|
295
|
+
headers:
|
296
|
+
Content-Type:
|
297
|
+
- application/json
|
298
|
+
response:
|
299
|
+
status:
|
300
|
+
code: 204
|
301
|
+
message: !binary |-
|
302
|
+
Tm8gQ29udGVudA==
|
303
|
+
headers:
|
304
|
+
!binary "RGF0ZQ==":
|
305
|
+
- !binary |-
|
306
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNTozMiBHTVQ=
|
307
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
308
|
+
- !binary |-
|
309
|
+
Y2h1bmtlZA==
|
310
|
+
!binary "Q29udGVudC1UeXBl":
|
311
|
+
- !binary |-
|
312
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
313
|
+
body:
|
314
|
+
encoding: ASCII-8BIT
|
315
|
+
string: !binary ""
|
316
|
+
http_version:
|
317
|
+
recorded_at: Sat, 25 May 2013 16:05:34 GMT
|
318
|
+
- request:
|
319
|
+
method: delete
|
320
|
+
uri: http://10.0.5.5:4243/containers/8fab97b08092?v=true
|
321
|
+
body:
|
322
|
+
encoding: US-ASCII
|
323
|
+
string: ''
|
324
|
+
headers:
|
325
|
+
Content-Type:
|
326
|
+
- application/json
|
327
|
+
response:
|
328
|
+
status:
|
329
|
+
code: 204
|
330
|
+
message: !binary |-
|
331
|
+
Tm8gQ29udGVudA==
|
332
|
+
headers:
|
333
|
+
!binary "RGF0ZQ==":
|
334
|
+
- !binary |-
|
335
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNTozMyBHTVQ=
|
336
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
337
|
+
- !binary |-
|
338
|
+
Y2h1bmtlZA==
|
339
|
+
!binary "Q29udGVudC1UeXBl":
|
340
|
+
- !binary |-
|
341
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
342
|
+
body:
|
343
|
+
encoding: ASCII-8BIT
|
344
|
+
string: !binary ""
|
345
|
+
http_version:
|
346
|
+
recorded_at: Sat, 25 May 2013 16:05:35 GMT
|
347
|
+
- request:
|
348
|
+
method: delete
|
349
|
+
uri: http://10.0.5.5:4243/containers/3700641d93de?v=true
|
350
|
+
body:
|
351
|
+
encoding: US-ASCII
|
352
|
+
string: ''
|
353
|
+
headers:
|
354
|
+
Content-Type:
|
355
|
+
- application/json
|
356
|
+
response:
|
357
|
+
status:
|
358
|
+
code: 204
|
359
|
+
message: !binary |-
|
360
|
+
Tm8gQ29udGVudA==
|
361
|
+
headers:
|
362
|
+
!binary "RGF0ZQ==":
|
363
|
+
- !binary |-
|
364
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNTo0MCBHTVQ=
|
365
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
366
|
+
- !binary |-
|
367
|
+
Y2h1bmtlZA==
|
368
|
+
!binary "Q29udGVudC1UeXBl":
|
369
|
+
- !binary |-
|
370
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
371
|
+
body:
|
372
|
+
encoding: ASCII-8BIT
|
373
|
+
string: !binary ""
|
374
|
+
http_version:
|
375
|
+
recorded_at: Sat, 25 May 2013 16:05:43 GMT
|
376
|
+
- request:
|
377
|
+
method: delete
|
378
|
+
uri: http://10.0.5.5:4243/containers/b8439f302512?v=true
|
379
|
+
body:
|
380
|
+
encoding: US-ASCII
|
381
|
+
string: ''
|
382
|
+
headers:
|
383
|
+
Content-Type:
|
384
|
+
- application/json
|
385
|
+
response:
|
386
|
+
status:
|
387
|
+
code: 204
|
388
|
+
message: !binary |-
|
389
|
+
Tm8gQ29udGVudA==
|
390
|
+
headers:
|
391
|
+
!binary "RGF0ZQ==":
|
392
|
+
- !binary |-
|
393
|
+
U2F0LCAyNSBNYXkgMjAxMyAxNjowNTo0MSBHTVQ=
|
394
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
395
|
+
- !binary |-
|
396
|
+
Y2h1bmtlZA==
|
397
|
+
!binary "Q29udGVudC1UeXBl":
|
398
|
+
- !binary |-
|
399
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
400
|
+
body:
|
401
|
+
encoding: ASCII-8BIT
|
402
|
+
string: !binary ""
|
403
|
+
http_version:
|
404
|
+
recorded_at: Sat, 25 May 2013 16:05:43 GMT
|
405
|
+
recorded_with: VCR 2.5.0
|