docker-api 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. data/README.md +2 -0
  2. data/lib/docker.rb +12 -2
  3. data/lib/docker/connection.rb +42 -49
  4. data/lib/docker/container.rb +12 -20
  5. data/lib/docker/error.rb +3 -0
  6. data/lib/docker/image.rb +21 -47
  7. data/lib/docker/model.rb +17 -14
  8. data/lib/docker/util.rb +12 -0
  9. data/lib/docker/version.rb +5 -1
  10. data/spec/docker/connection_spec.rb +56 -30
  11. data/spec/docker/container_spec.rb +81 -201
  12. data/spec/docker/image_spec.rb +48 -157
  13. data/spec/docker/util_spec.rb +43 -0
  14. data/spec/docker_spec.rb +15 -0
  15. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +10 -8
  16. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +33 -0
  17. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +10 -8
  18. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +857 -17
  19. data/spec/vcr/Docker_Container/_attach/{when_the_HTTP_response_status_is_200/yields_each_chunk.yml → yields_each_chunk.yml} +9 -9
  20. data/spec/vcr/Docker_Container/_changes/{when_the_HTTP_response_status_is_200/returns_the_changes_as_an_array.yml → returns_the_changes_as_an_array.yml} +13 -13
  21. data/spec/vcr/Docker_Container/_commit/{when_the_HTTP_response_status_is_200/creates_a_new_Image_from_the_Container_s_changes.yml → creates_a_new_Image_from_the_Container_s_changes.yml} +12 -12
  22. data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist_and_the_body_is_a_Hash/when_the_HTTP_request_returns_a_200/sets_the_id.yml +4 -4
  23. data/spec/vcr/Docker_Container/_export/{when_the_HTTP_response_status_is_200/yields_each_chunk.yml → yields_each_chunk.yml} +11 -11
  24. data/spec/vcr/Docker_Container/_json/{when_the_HTTP_response_status_is_200/returns_the_description_as_a_Hash.yml → returns_the_description_as_a_Hash.yml} +8 -8
  25. data/spec/vcr/Docker_Container/_kill/{when_the_HTTP_response_status_is_204/kills_the_container.yml → kills_the_container.yml} +436 -16
  26. data/spec/vcr/Docker_Container/_restart/{when_the_HTTP_response_status_is_204/restarts_the_container.yml → restarts_the_container.yml} +29 -29
  27. data/spec/vcr/Docker_Container/_start/{when_the_HTTP_response_status_is_200/starts_the_container.yml → starts_the_container.yml} +12 -12
  28. data/spec/vcr/Docker_Container/_stop/{when_the_HTTP_response_status_is_204/stops_the_container.yml → stops_the_container.yml} +440 -20
  29. data/spec/vcr/Docker_Container/_wait/{when_the_HTTP_response_status_is_200/waits_for_the_command_to_finish.yml → waits_for_the_command_to_finish.yml} +10 -10
  30. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +65 -0
  31. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/builds_an_image.yml +9 -5
  32. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +9 -5
  33. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/builds_the_image.yml +17 -15
  34. data/spec/vcr/Docker_Image/{_create_/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/when_the_HTTP_request_returns_a_200 → _create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash}/sets_the_id.yml +4 -2
  35. data/spec/vcr/Docker_Image/_history/{when_the_Image_has_been_created/when_the_HTTP_response_status_is_200/returns_the_history_of_the_Image.yml → returns_the_history_of_the_Image.yml} +7 -5
  36. data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +6 -6
  37. data/spec/vcr/Docker_Image/_insert/{when_the_Image_has_been_created/when_the_HTTP_response_status_is_200/inserts_the_url_s_file_into_a_new_Image.yml → inserts_the_url_s_file_into_a_new_Image.yml} +30 -29
  38. data/spec/vcr/Docker_Image/_json/{when_the_Image_has_been_created/when_the_HTTP_response_status_is_200/returns_additional_information_about_image_image.yml → returns_additional_information_about_image_image.yml} +7 -5
  39. data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +95 -0
  40. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +14 -12
  41. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +14 -12
  42. data/spec/vcr/Docker_Image/_search/{when_the_HTTP_response_is_a_200/materializes_each_Image_into_a_Docker_Image.yml → materializes_each_Image_into_a_Docker_Image.yml} +4 -34
  43. data/spec/vcr/Docker_Image/_tag/{when_the_Image_has_been_created/when_the_HTTP_response_status_is_200/tags_the_image_with_the_repo_name.yml → tags_the_image_with_the_repo_name.yml} +7 -5
  44. metadata +43 -56
  45. data/spec/vcr/Docker_Image/_all/when_the_HTTP_response_is_a_200/materializes_each_Image_into_a_Docker_Image.yml +0 -63
  46. data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/when_the_HTTP_request_returns_a_200/sets_the_id.yml +0 -33
  47. data/spec/vcr/Docker_Image/_history/when_the_HTTP_response_status_is_200/returns_the_history_of_the_Image.yml +0 -63
  48. data/spec/vcr/Docker_Image/_insert/when_the_HTTP_response_status_is_200/inserts_the_url_s_file_into_a_new_Image.yml +0 -220
  49. data/spec/vcr/Docker_Image/_json/when_the_HTTP_response_status_is_200/returns_additional_information_about_image_image.yml +0 -63
  50. data/spec/vcr/Docker_Image/_remove/when_the_HTTP_response_status_is_204/removes_the_Image.yml +0 -93
  51. data/spec/vcr/Docker_Image/_remove/when_the_Image_has_been_created/when_the_HTTP_response_status_is_204/nils_out_the_id.yml +0 -63
  52. data/spec/vcr/Docker_Image/_remove/when_the_Image_has_been_created/when_the_HTTP_response_status_is_204/removes_the_Image.yml +0 -63
  53. data/spec/vcr/Docker_Image/_run/when_the_Image_has_been_created/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +0 -119
  54. data/spec/vcr/Docker_Image/_run/when_the_Image_has_been_created/when_the_argument_is_an_Array/creates_a_new_Container.yml +0 -119
  55. data/spec/vcr/Docker_Image/_tag/when_the_HTTP_response_status_is_200/tags_the_image_with_the_repo_name.yml +0 -63
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://localhost:4243/containers/create
5
+ uri: http://localhost:4243/v1.3/containers/create
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: ! '{"Cmd":["uname","-r"],"Image":"base"}'
@@ -24,15 +24,15 @@ http_interactions:
24
24
  MjE=
25
25
  !binary "RGF0ZQ==":
26
26
  - !binary |-
27
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MToxMiBHTVQ=
27
+ V2VkLCAyNiBKdW4gMjAxMyAxODowOTo1MCBHTVQ=
28
28
  body:
29
29
  encoding: US-ASCII
30
- string: ! '{"Id":"f1b6a203102c"}'
30
+ string: ! '{"Id":"81398655b7a2"}'
31
31
  http_version:
32
- recorded_at: Mon, 24 Jun 2013 19:41:12 GMT
32
+ recorded_at: Wed, 26 Jun 2013 18:09:50 GMT
33
33
  - request:
34
34
  method: post
35
- uri: http://localhost:4243/containers/f1b6a203102c/start
35
+ uri: http://localhost:4243/v1.3/containers/81398655b7a2/start
36
36
  body:
37
37
  encoding: US-ASCII
38
38
  string: ''
@@ -54,15 +54,15 @@ http_interactions:
54
54
  MA==
55
55
  !binary "RGF0ZQ==":
56
56
  - !binary |-
57
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MToxMiBHTVQ=
57
+ V2VkLCAyNiBKdW4gMjAxMyAxODowOTo1MCBHTVQ=
58
58
  body:
59
59
  encoding: US-ASCII
60
60
  string: ''
61
61
  http_version:
62
- recorded_at: Mon, 24 Jun 2013 19:41:12 GMT
62
+ recorded_at: Wed, 26 Jun 2013 18:09:50 GMT
63
63
  - request:
64
64
  method: post
65
- uri: http://localhost:4243/containers/f1b6a203102c/attach?stdout=true&stream=true
65
+ uri: http://localhost:4243/v1.3/containers/81398655b7a2/attach?stdout=true&stream=true
66
66
  body:
67
67
  encoding: US-ASCII
68
68
  string: ''
@@ -85,5 +85,5 @@ http_interactions:
85
85
 
86
86
  '
87
87
  http_version:
88
- recorded_at: Mon, 24 Jun 2013 19:41:12 GMT
88
+ recorded_at: Wed, 26 Jun 2013 18:09:51 GMT
89
89
  recorded_with: VCR 2.5.0
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://localhost:4243/containers/create
5
+ uri: http://localhost:4243/v1.3/containers/create
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: ! '{"Cmd":["true"],"Image":"base"}'
@@ -24,15 +24,15 @@ http_interactions:
24
24
  MjE=
25
25
  !binary "RGF0ZQ==":
26
26
  - !binary |-
27
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MTowMCBHTVQ=
27
+ V2VkLCAyNiBKdW4gMjAxMyAxODowOTo0NyBHTVQ=
28
28
  body:
29
29
  encoding: US-ASCII
30
- string: ! '{"Id":"6183d70df92e"}'
30
+ string: ! '{"Id":"0eefbdc27421"}'
31
31
  http_version:
32
- recorded_at: Mon, 24 Jun 2013 19:41:00 GMT
32
+ recorded_at: Wed, 26 Jun 2013 18:09:47 GMT
33
33
  - request:
34
34
  method: post
35
- uri: http://localhost:4243/containers/6183d70df92e/start
35
+ uri: http://localhost:4243/v1.3/containers/0eefbdc27421/start
36
36
  body:
37
37
  encoding: US-ASCII
38
38
  string: ''
@@ -54,15 +54,15 @@ http_interactions:
54
54
  MA==
55
55
  !binary "RGF0ZQ==":
56
56
  - !binary |-
57
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MTowMCBHTVQ=
57
+ V2VkLCAyNiBKdW4gMjAxMyAxODowOTo0NyBHTVQ=
58
58
  body:
59
59
  encoding: US-ASCII
60
60
  string: ''
61
61
  http_version:
62
- recorded_at: Mon, 24 Jun 2013 19:41:00 GMT
62
+ recorded_at: Wed, 26 Jun 2013 18:09:47 GMT
63
63
  - request:
64
64
  method: post
65
- uri: http://localhost:4243/containers/6183d70df92e/wait
65
+ uri: http://localhost:4243/v1.3/containers/0eefbdc27421/wait
66
66
  body:
67
67
  encoding: US-ASCII
68
68
  string: ''
@@ -84,15 +84,15 @@ http_interactions:
84
84
  MTY=
85
85
  !binary "RGF0ZQ==":
86
86
  - !binary |-
87
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MTowMCBHTVQ=
87
+ V2VkLCAyNiBKdW4gMjAxMyAxODowOTo0OCBHTVQ=
88
88
  body:
89
89
  encoding: US-ASCII
90
90
  string: ! '{"StatusCode":0}'
91
91
  http_version:
92
- recorded_at: Mon, 24 Jun 2013 19:41:00 GMT
92
+ recorded_at: Wed, 26 Jun 2013 18:09:48 GMT
93
93
  - request:
94
94
  method: get
95
- uri: http://localhost:4243/containers/6183d70df92e/changes
95
+ uri: http://localhost:4243/v1.3/containers/0eefbdc27421/changes
96
96
  body:
97
97
  encoding: US-ASCII
98
98
  string: ''
@@ -114,10 +114,10 @@ http_interactions:
114
114
  NTY=
115
115
  !binary "RGF0ZQ==":
116
116
  - !binary |-
117
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MTowMCBHTVQ=
117
+ V2VkLCAyNiBKdW4gMjAxMyAxODowOTo0OCBHTVQ=
118
118
  body:
119
119
  encoding: US-ASCII
120
120
  string: ! '[{"Path":"/dev","Kind":0},{"Path":"/dev/kmsg","Kind":1}]'
121
121
  http_version:
122
- recorded_at: Mon, 24 Jun 2013 19:41:00 GMT
122
+ recorded_at: Wed, 26 Jun 2013 18:09:48 GMT
123
123
  recorded_with: VCR 2.5.0
@@ -2,10 +2,10 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://localhost:4243/containers/create
5
+ uri: http://localhost:4243/v1.3/containers/create
6
6
  body:
7
7
  encoding: UTF-8
8
- string: ! '{"Cmd":["ls"],"Image":"base"}'
8
+ string: ! '{"Cmd":["true"],"Image":"base"}'
9
9
  headers:
10
10
  Content-Type:
11
11
  - text/plain
@@ -24,15 +24,15 @@ http_interactions:
24
24
  MjE=
25
25
  !binary "RGF0ZQ==":
26
26
  - !binary |-
27
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MToxNiBHTVQ=
27
+ V2VkLCAyNiBKdW4gMjAxMyAxODoxMDowNiBHTVQ=
28
28
  body:
29
29
  encoding: US-ASCII
30
- string: ! '{"Id":"01b05de7bdec"}'
30
+ string: ! '{"Id":"a6fa364fc109"}'
31
31
  http_version:
32
- recorded_at: Mon, 24 Jun 2013 19:41:16 GMT
32
+ recorded_at: Wed, 26 Jun 2013 18:10:06 GMT
33
33
  - request:
34
34
  method: post
35
- uri: http://localhost:4243/containers/01b05de7bdec/start
35
+ uri: http://localhost:4243/v1.3/containers/a6fa364fc109/start
36
36
  body:
37
37
  encoding: US-ASCII
38
38
  string: ''
@@ -54,15 +54,15 @@ http_interactions:
54
54
  MA==
55
55
  !binary "RGF0ZQ==":
56
56
  - !binary |-
57
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MToxNiBHTVQ=
57
+ V2VkLCAyNiBKdW4gMjAxMyAxODoxMDowNiBHTVQ=
58
58
  body:
59
59
  encoding: US-ASCII
60
60
  string: ''
61
61
  http_version:
62
- recorded_at: Mon, 24 Jun 2013 19:41:16 GMT
62
+ recorded_at: Wed, 26 Jun 2013 18:10:06 GMT
63
63
  - request:
64
64
  method: post
65
- uri: http://localhost:4243/commit?container=01b05de7
65
+ uri: http://localhost:4243/v1.3/commit?container=a6fa364f
66
66
  body:
67
67
  encoding: US-ASCII
68
68
  string: ''
@@ -84,10 +84,10 @@ http_interactions:
84
84
  MjE=
85
85
  !binary "RGF0ZQ==":
86
86
  - !binary |-
87
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MToxNiBHTVQ=
87
+ V2VkLCAyNiBKdW4gMjAxMyAxODoxMDowNiBHTVQ=
88
88
  body:
89
89
  encoding: US-ASCII
90
- string: ! '{"Id":"844edba54d0d"}'
90
+ string: ! '{"Id":"eb0d94457679"}'
91
91
  http_version:
92
- recorded_at: Mon, 24 Jun 2013 19:41:16 GMT
92
+ recorded_at: Wed, 26 Jun 2013 18:10:06 GMT
93
93
  recorded_with: VCR 2.5.0
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://localhost:4243/containers/create
5
+ uri: http://localhost:4243/v1.3/containers/create
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: ! '{"Hostname":"","User":"","Memory":0,"MemorySwap":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":null,"Cmd":["date"],"Dns":null,"Image":"base","Volumes":{},"VolumesFrom":""}'
@@ -24,10 +24,10 @@ http_interactions:
24
24
  MjE=
25
25
  !binary "RGF0ZQ==":
26
26
  - !binary |-
27
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MToxNiBHTVQ=
27
+ V2VkLCAyNiBKdW4gMjAxMyAxODoxMDowNyBHTVQ=
28
28
  body:
29
29
  encoding: US-ASCII
30
- string: ! '{"Id":"a233fce67287"}'
30
+ string: ! '{"Id":"cb24f1c8b1f9"}'
31
31
  http_version:
32
- recorded_at: Mon, 24 Jun 2013 19:41:16 GMT
32
+ recorded_at: Wed, 26 Jun 2013 18:10:07 GMT
33
33
  recorded_with: VCR 2.5.0
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://localhost:4243/containers/create
5
+ uri: http://localhost:4243/v1.3/containers/create
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: ! '{"Cmd":["rm","-rf","/","--no-preserve-root"],"Image":"base"}'
@@ -24,15 +24,15 @@ http_interactions:
24
24
  MjE=
25
25
  !binary "RGF0ZQ==":
26
26
  - !binary |-
27
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MTowMSBHTVQ=
27
+ V2VkLCAyNiBKdW4gMjAxMyAxODowOTo0OCBHTVQ=
28
28
  body:
29
29
  encoding: US-ASCII
30
- string: ! '{"Id":"bd9836835f4b"}'
30
+ string: ! '{"Id":"0c87cfe6ea62"}'
31
31
  http_version:
32
- recorded_at: Mon, 24 Jun 2013 19:41:01 GMT
32
+ recorded_at: Wed, 26 Jun 2013 18:09:48 GMT
33
33
  - request:
34
34
  method: post
35
- uri: http://localhost:4243/containers/bd9836835f4b/start
35
+ uri: http://localhost:4243/v1.3/containers/0c87cfe6ea62/start
36
36
  body:
37
37
  encoding: US-ASCII
38
38
  string: ''
@@ -54,15 +54,15 @@ http_interactions:
54
54
  MA==
55
55
  !binary "RGF0ZQ==":
56
56
  - !binary |-
57
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MTowMSBHTVQ=
57
+ V2VkLCAyNiBKdW4gMjAxMyAxODowOTo0OCBHTVQ=
58
58
  body:
59
59
  encoding: US-ASCII
60
60
  string: ''
61
61
  http_version:
62
- recorded_at: Mon, 24 Jun 2013 19:41:01 GMT
62
+ recorded_at: Wed, 26 Jun 2013 18:09:48 GMT
63
63
  - request:
64
64
  method: get
65
- uri: http://localhost:4243/containers/bd9836835f4b/export
65
+ uri: http://localhost:4243/v1.3/containers/0c87cfe6ea62/export
66
66
  body:
67
67
  encoding: US-ASCII
68
68
  string: ''
@@ -81,7 +81,7 @@ http_interactions:
81
81
  YXBwbGljYXRpb24vb2N0ZXQtc3RyZWFt
82
82
  !binary "RGF0ZQ==":
83
83
  - !binary |-
84
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MTowMSBHTVQ=
84
+ V2VkLCAyNiBKdW4gMjAxMyAxODowOTo0OCBHTVQ=
85
85
  !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
86
86
  - !binary |-
87
87
  Y2h1bmtlZA==
@@ -91,7 +91,7 @@ http_interactions:
91
91
  Li8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
92
92
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
93
93
  AAAAAAAAAAAAADAwMDA3NTUAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDAw
94
- ADEyMTYyMTIwMzE1ADAwNzcwMgAgNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
94
+ ADEyMTYyNjI3MTU0ADAwNzcxNwAgNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
95
95
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
96
96
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhciAgAHJvb3QA
97
97
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcm9vdAAAAAAAAAAAAAAAAAAA
@@ -107,5 +107,5 @@ http_interactions:
107
107
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
108
108
  AAAAAHVzdGFyICAAcm9vdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABy
109
109
  http_version:
110
- recorded_at: Mon, 24 Jun 2013 19:41:03 GMT
110
+ recorded_at: Wed, 26 Jun 2013 18:09:50 GMT
111
111
  recorded_with: VCR 2.5.0
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://localhost:4243/containers/create
5
+ uri: http://localhost:4243/v1.3/containers/create
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: ! '{"Cmd":["true"],"Image":"base"}'
@@ -24,15 +24,15 @@ http_interactions:
24
24
  MjE=
25
25
  !binary "RGF0ZQ==":
26
26
  - !binary |-
27
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MTowMCBHTVQ=
27
+ V2VkLCAyNiBKdW4gMjAxMyAxODowOTo0NyBHTVQ=
28
28
  body:
29
29
  encoding: US-ASCII
30
- string: ! '{"Id":"d90fd373b91a"}'
30
+ string: ! '{"Id":"8c51e1503f11"}'
31
31
  http_version:
32
- recorded_at: Mon, 24 Jun 2013 19:41:00 GMT
32
+ recorded_at: Wed, 26 Jun 2013 18:09:47 GMT
33
33
  - request:
34
34
  method: get
35
- uri: http://localhost:4243/containers/d90fd373b91a/json
35
+ uri: http://localhost:4243/v1.3/containers/8c51e1503f11/json
36
36
  body:
37
37
  encoding: US-ASCII
38
38
  string: ''
@@ -54,10 +54,10 @@ http_interactions:
54
54
  ODc5
55
55
  !binary "RGF0ZQ==":
56
56
  - !binary |-
57
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MTowMCBHTVQ=
57
+ V2VkLCAyNiBKdW4gMjAxMyAxODowOTo0NyBHTVQ=
58
58
  body:
59
59
  encoding: US-ASCII
60
- string: ! '{"ID":"d90fd373b91a26382b2c467a0dec93f600c46414c9cf0de57a894c5a23f801d4","Created":"2013-06-24T15:41:00.329072644-04:00","Path":"true","Args":[],"Config":{"Hostname":"d90fd373b91a","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":null,"Cmd":["true"],"Dns":null,"Image":"base","Volumes":null,"VolumesFrom":""},"State":{"Running":false,"Pid":0,"ExitCode":0,"StartedAt":"0001-01-01T00:00:00Z","Ghost":false},"Image":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","NetworkSettings":{"IPAddress":"","IPPrefixLen":0,"Gateway":"","Bridge":"","PortMapping":null},"SysInitPath":"/usr/bin/docker","ResolvConfPath":"/var/lib/docker/containers/d90fd373b91a26382b2c467a0dec93f600c46414c9cf0de57a894c5a23f801d4/resolv.conf","Volumes":null}'
60
+ string: ! '{"ID":"8c51e1503f11e9b01ee13dceb7b67e23d8f8ca22bd68ea6930644e0f1449f841","Created":"2013-06-26T14:09:47.703500127-04:00","Path":"true","Args":[],"Config":{"Hostname":"8c51e1503f11","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":null,"Cmd":["true"],"Dns":null,"Image":"base","Volumes":null,"VolumesFrom":""},"State":{"Running":false,"Pid":0,"ExitCode":0,"StartedAt":"0001-01-01T00:00:00Z","Ghost":false},"Image":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","NetworkSettings":{"IPAddress":"","IPPrefixLen":0,"Gateway":"","Bridge":"","PortMapping":null},"SysInitPath":"/usr/bin/docker","ResolvConfPath":"/var/lib/docker/containers/8c51e1503f11e9b01ee13dceb7b67e23d8f8ca22bd68ea6930644e0f1449f841/resolv.conf","Volumes":null}'
61
61
  http_version:
62
- recorded_at: Mon, 24 Jun 2013 19:41:00 GMT
62
+ recorded_at: Wed, 26 Jun 2013 18:09:47 GMT
63
63
  recorded_with: VCR 2.5.0
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://localhost:4243/containers/create
5
+ uri: http://localhost:4243/v1.3/containers/create
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: ! '{"Cmd":["ls"],"Image":"base"}'
@@ -24,15 +24,15 @@ http_interactions:
24
24
  MjE=
25
25
  !binary "RGF0ZQ==":
26
26
  - !binary |-
27
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MToxNCBHTVQ=
27
+ V2VkLCAyNiBKdW4gMjAxMyAxODowOTo1MyBHTVQ=
28
28
  body:
29
29
  encoding: US-ASCII
30
- string: ! '{"Id":"3aa973ff6265"}'
30
+ string: ! '{"Id":"7ace4aa10dd3"}'
31
31
  http_version:
32
- recorded_at: Mon, 24 Jun 2013 19:41:14 GMT
32
+ recorded_at: Wed, 26 Jun 2013 18:09:53 GMT
33
33
  - request:
34
34
  method: post
35
- uri: http://localhost:4243/containers/3aa973ff6265/kill
35
+ uri: http://localhost:4243/v1.3/containers/7ace4aa10dd3/kill
36
36
  body:
37
37
  encoding: US-ASCII
38
38
  string: ''
@@ -54,15 +54,15 @@ http_interactions:
54
54
  MA==
55
55
  !binary "RGF0ZQ==":
56
56
  - !binary |-
57
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MToxNCBHTVQ=
57
+ V2VkLCAyNiBKdW4gMjAxMyAxODowOTo1MyBHTVQ=
58
58
  body:
59
59
  encoding: US-ASCII
60
60
  string: ''
61
61
  http_version:
62
- recorded_at: Mon, 24 Jun 2013 19:41:14 GMT
62
+ recorded_at: Wed, 26 Jun 2013 18:09:53 GMT
63
63
  - request:
64
64
  method: get
65
- uri: http://localhost:4243/containers/json
65
+ uri: http://localhost:4243/v1.3/containers/json
66
66
  body:
67
67
  encoding: US-ASCII
68
68
  string: ''
@@ -84,15 +84,15 @@ http_interactions:
84
84
  Mg==
85
85
  !binary "RGF0ZQ==":
86
86
  - !binary |-
87
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MToxNCBHTVQ=
87
+ V2VkLCAyNiBKdW4gMjAxMyAxODowOTo1MyBHTVQ=
88
88
  body:
89
89
  encoding: US-ASCII
90
90
  string: ! '[]'
91
91
  http_version:
92
- recorded_at: Mon, 24 Jun 2013 19:41:14 GMT
92
+ recorded_at: Wed, 26 Jun 2013 18:09:53 GMT
93
93
  - request:
94
94
  method: get
95
- uri: http://localhost:4243/containers/json?all=true
95
+ uri: http://localhost:4243/v1.3/containers/json?all=true
96
96
  body:
97
97
  encoding: US-ASCII
98
98
  string: ''
@@ -111,13 +111,433 @@ http_interactions:
111
111
  YXBwbGljYXRpb24vanNvbg==
112
112
  !binary "RGF0ZQ==":
113
113
  - !binary |-
114
- TW9uLCAyNCBKdW4gMjAxMyAxOTo0MToxNCBHTVQ=
114
+ V2VkLCAyNiBKdW4gMjAxMyAxODowOTo1NCBHTVQ=
115
115
  !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
116
116
  - !binary |-
117
117
  Y2h1bmtlZA==
118
118
  body:
119
119
  encoding: US-ASCII
120
- string: ! '[{"Id":"3aa973ff6265d623d51b881916b8c6701320151dd5ec0970edc64ab0a703aea6","Image":"base2:latest","Command":"ls
120
+ string: ! '[{"Id":"7ace4aa10dd35b86d0fd25ee086679a36c9cdf73237740310f822d956ab2e4a9","Image":"base2:latest","Command":"ls
121
+ ","Created":1372270193,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e66a37faa3a5ea8af1ae5658eee9761a2e35d63b055cc7d1c30adfd05acddac5","Image":"base2:latest","Command":"true
122
+ ","Created":1372270191,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d9c65f66161c65692f880df0251c8783b2ef53f05c53d13dd2fae63bc9c640a9","Image":"base2:latest","Command":"true
123
+ ","Created":1372270191,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"81398655b7a2a119389f00ef7001c97e690f6892a28edb1bd59747e9e790fc43","Image":"base2:latest","Command":"uname
124
+ -r","Created":1372270190,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0c87cfe6ea626a3f7d7facc08ea9b053c8fbca8d0d831af0caf04b091093da0f","Image":"base2:latest","Command":"rm
125
+ -rf / --no-preserve-root","Created":1372270188,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0eefbdc274217aedfa6e6bd1022a9bc15231bdf99eb11701e01261a34d7d95f4","Image":"base2:latest","Command":"true
126
+ ","Created":1372270187,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"8c51e1503f11e9b01ee13dceb7b67e23d8f8ca22bd68ea6930644e0f1449f841","Image":"base2:latest","Command":"true
127
+ ","Created":1372270187,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f683581910783ed2732eaa4dacaed2f0efb66b9e428704dafbf037bd04883b07","Image":"base2:latest","Command":"tar
128
+ nonsense","Created":1372269612,"Status":"Exit 64","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"8f4657811bb18bb77dcffdde546e98efcd6cf7f7662d97c7ecb993ffdc58dfdf","Image":"base2:latest","Command":"true
129
+ ","Created":1372269612,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6a108de1f9ee09cb04e83483a23b53adcb8af603960e66d62adfd8f3ee2af721","Image":"base2:latest","Command":"tar
130
+ nonsense","Created":1372269572,"Status":"Exit 64","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"53646e974e1ff50b355e2d2deaaf577c88bf551e26f0f53f74c233985c5cbad0","Image":"base2:latest","Command":"true
131
+ ","Created":1372269572,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"843fa5873133dc8089cc47357b9f1c25106a61790700ae537804c40f3573c61f","Image":"base2:latest","Command":"true
132
+ ","Created":1372269489,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d14375865966dcc9cf2815fb844d67914b64508e4b8a9542c7d1ad559e0d7723","Image":"base2:latest","Command":"true
133
+ ","Created":1372269481,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f15d60aee895ec6da04b6eca7bf8b880ebd6bfe627c70a7938b1d8b5e56484fd","Image":"base2:latest","Command":"true
134
+ ","Created":1372269462,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e88853cc89ad4e4046b156220bc3c26e0dc389ab92bbf9f543ff702127cff4ee","Image":"base2:latest","Command":"true
135
+ ","Created":1372269400,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"024fb1e7d23e1c1a93239b02d9903a6b9aa40e1c011c0b3c65e7a0e32bdecec0","Image":"base2:latest","Command":"true
136
+ ","Created":1372269394,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4e9b6be5d8c02d71a8659812c844dffb861091fdc52dfd0648bf2d039baef7ef","Image":"base2:latest","Command":"true
137
+ ","Created":1372269360,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"29008f442e92f9372a7016b0f123099e3ed40f2ebdcd12022b333c642714bb6c","Image":"base2:latest","Command":"true
138
+ ","Created":1372269348,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"28c83d5d0f5968a59341cac09b15f5529ac7d7b9cd75d58ad49be6d3b1c661e1","Image":"base2:latest","Command":"true
139
+ ","Created":1372269238,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3a0a9b5aa009182cbe67bc2601fb0327b6855c8ccef3139869e175e7ec10e23a","Image":"base2:latest","Command":"true
140
+ ","Created":1372269230,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"fdf782783f7040e98d1eb61a4d3116002dbf76fb585828cfdbe3ec4b88e34333","Image":"base2:latest","Command":"true
141
+ ","Created":1372269166,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"eb25c9c59af2d537084244fc2b4fc3e834f7e9c621b16fffac8202953a28d74d","Image":"base2:latest","Command":"true
142
+ ","Created":1372269153,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"976d58160410832f6512a346c4c8728ff394b136e026d7b23ce96375c92f751a","Image":"base2:latest","Command":"true
143
+ ","Created":1372268862,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"cfb13e387992a944c1fda51242e3af7a0bd2b40c4d459b5b65d36bb63682ca69","Image":"base2:latest","Command":"true
144
+ ","Created":1372268851,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"40c500567a8d8cbcd99d24e7a89e239897aaed52fa842d6006adc69977e044f2","Image":"base2:latest","Command":"true
145
+ ","Created":1372268035,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"81f7aba7652dd0e328af1142a6ea425fe67abaff99d119b4a750810f149fee02","Image":"base2:latest","Command":"ls
146
+ ","Created":1372268001,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9565e24743094b893d718674f04bc1ea349d59222285c5daef14872db03b0e70","Image":"base2:latest","Command":"ls
147
+ ","Created":1372267972,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"444b2e89c9106543ae791678a92b40a2bf2302d2800a72589af05d7af3aa82f3","Image":"base2:latest","Command":"tar
148
+ lol","Created":1372267846,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3ddbadada72e63498bfc9032094a9bae8000d27024c7ee357b6b7034f2bb1a86","Image":"base2:latest","Command":"tar
149
+ lol","Created":1372267681,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"7138a8bec8cfd179e5613a5b7e4697bf0b2071de0e083e5db11c9222eb99cd4e","Image":"base2:latest","Command":"ls
150
+ ","Created":1372267664,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d448ba1b54dffe330f6e6e9fea86367db9e16d8c788937a24437a9b30d7a4ef3","Image":"base2:latest","Command":"ls
151
+ ","Created":1372267646,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0aeb27e40cd84c6c5d95c9631978d913c08695e6852d02f0c94430add0729a52","Image":"base2:latest","Command":"ls
152
+ ","Created":1372267602,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b1ef34112916c7be950c087f7fb8944f05257eaf5437f77670fc5a0935db2972","Image":"base2:latest","Command":"tar
153
+ lol","Created":1372267437,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"59b4220d625246fc60da401d46b3b8b40ad8b9234e583dc6e4c930a1055252c5","Image":"base2:latest","Command":"ls
154
+ ","Created":1372267402,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"54882333d2173cda8a628b8f53cd949ba756418a842edbb6e1c965a12aef8a4e","Image":"base2:latest","Command":"tar
155
+ nonsense","Created":1372267287,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0530d92dd3fd392752e98589cbec9444f2e960da8bb06fd1bee517e4a4df1a1b","Image":"base2:latest","Command":"true
156
+ ","Created":1372267287,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4647d1a0c9bef1d724a4ad3d089be8270e0dfba04d4471a075667a083231b8cd","Image":"base2:latest","Command":"tar
157
+ nonsense","Created":1372267236,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9eeced6bca5f2f84196f2ddac0076798118d03d91bff5b5adbc953db2aad8740","Image":"base2:latest","Command":"true
158
+ ","Created":1372267236,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4c8e419342ad857a2263cd61cf8acbb8679f8c867271ffbea6bdee106d8ce66b","Image":"base2:latest","Command":"tar
159
+ nonsense","Created":1372267150,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"055e76959218ec485ba0fd580210008b6735ccce9481d5c224015f489683e215","Image":"base2:latest","Command":"true
160
+ ","Created":1372267150,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3a70c0f81c78c06c996851305227cb58227deabb8ff0d6d6d33184367b7bb318","Image":"base2:latest","Command":"true
161
+ ","Created":1372266493,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"be16e4240dea1456a15d91e1d9efb5554f958c5710a52e8701002f45572c89b5","Image":"base2:latest","Command":"true
162
+ ","Created":1372266469,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c4fb52a533978191af079cffff9916bd2e31c8ee76bd27a17c03f150c6fa952e","Image":"base2:latest","Command":"true
163
+ ","Created":1372266468,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e03f6c54227b7bcea94b8e6489662519b2edc16c9462eab58f4634b58bf0ee14","Image":"base2:latest","Command":"true
164
+ ","Created":1372266455,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"00b93fb56b04d090baef1b196341fd58b85907e9a0c42be0cec7d86dabdd2366","Image":"base2:latest","Command":"ls
165
+ ","Created":1372266430,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a2cd273301cd82211357ff479e73274d57ae54ade351aee4ed1a8d6b8e03b127","Image":"base2:latest","Command":"tar
166
+ nonsense","Created":1372266343,"Status":"Exit 64","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4cd386353a013d8546e859907ac2494bc86d4a308dca81d9cebb45ff5a2042e0","Image":"base2:latest","Command":"sleep
167
+ 50","Created":1372266291,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e3c8c013e5c1a399853c3f26bf06e4134a5f4f6ebd0509be80863f620e3b7243","Image":"base2:latest","Command":"ls
168
+ ","Created":1372266247,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"98a81d1269ee9e696323724406df6588dcfd7d8268c7519f50f180541b9e5776","Image":"base2:latest","Command":"true
169
+ ","Created":1372266205,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6057ba9ded4941415e4b755131b80caedf33a11c7dcb7e2bcf020b060539c5d3","Image":"base2:latest","Command":"true
170
+ ","Created":1372266191,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c2727c4f976c00d6d0193bef639c214c73cf741881457f530409d5cfa607a79f","Image":"base2:latest","Command":"true
171
+ ","Created":1372266152,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5319982d45162542ef249a9e0e5c19268af1c021f24f255fbb3bfead7a978daa","Image":"base2:latest","Command":"uname
172
+ -r","Created":1372266117,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"cb978f0d2638539cab5e672eb37c63882521efde45fe2c90c7c935bba69958d7","Image":"base2:latest","Command":"rm
173
+ -rf / --no-preserve-root","Created":1372265990,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e96caf481f10673feda6490c0771d3df86a69692fb163fd05726b1f2ebe9f347","Image":"base2:latest","Command":"rm
174
+ -rf / --no-preserve-root","Created":1372265980,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a406a01063c06294cc1b24e1bf0dabf0ad174975258d8c566ca3a204ab08ea13","Image":"base2:latest","Command":"true
175
+ ","Created":1372265920,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"668d7ce02a53f9aa5dccaf4dca5b8fdb20bf46f9175f82c81f75af7c3db86d92","Image":"base2:latest","Command":"true
176
+ ","Created":1372265899,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"68a82847dd8164223491d4c30d51bf7b8df2858ca44bcdef026e4337abb246e6","Image":"base2:latest","Command":"true
177
+ ","Created":1372265879,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5ca1495cc190cc34df012df3d3325a0062992f43d503a97a55c2ba7d44c71e77","Image":"base2:latest","Command":"true
178
+ ","Created":1372265472,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"fc2ce15c1ea12c8f0a8ef0f3bd5877e9782134a9a2c5b52b7324f8ab76fad4c0","Image":"base2:latest","Command":"true
179
+ ","Created":1372265429,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f105dbcb2c1c0e4153a3e416e4ed82fffa49a0c93f6e16b2d290be5e5f1bec67","Image":"base2:latest","Command":"true
180
+ ","Created":1372265228,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6f012f6bb25c3ce268275163a88750631f74ec1e3f3d03a987c85af474efcc08","Image":"base2:latest","Command":"ls
181
+ ","Created":1372265075,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"88b52ebc4b1f180c4b5b2962b83d7b5b4219626860933b34b473f2df4171c52d","Image":"base2:latest","Command":"ls
182
+ ","Created":1372265063,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d8d14c4a8691a9ebf4becb816271c755009abca3810473b55817146321daeb04","Image":"base2:latest","Command":"date
183
+ ","Created":1372265042,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"77c9bb1d7b29eceab8d3a313eb93a0ba67a44c003023b9403a168c6a50409a98","Image":"base2:latest","Command":"date
184
+ ","Created":1372265015,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"ae91cd899c2f46e434b5caecec618d11280f066355fe27a6f96a659e57cad2b4","Image":"base2:latest","Command":"ls
185
+ ","Created":1372251067,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"966e66f00ef69d7fa39114c9aab7e31b5d55cecb2fb43d2f6dd581cfcd71c1c8","Image":"base2:latest","Command":"date
186
+ ","Created":1372251067,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b77f5c5b28c61473867d0397f777105d2fccb3dfb1f818e0ad5e4eb98c2ca630","Image":"base2:latest","Command":"ls
187
+ ","Created":1372251067,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"7b18f17db601a14bdf9ca2457f18c5cc9c66c26149ca3d12407040cee9bb2fcc","Image":"base2:latest","Command":"tar
188
+ nonsense","Created":1372251066,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3688b174664fd8e8a8df00a46fcdd2e80c883fe2fd274c0b247608cc55ae71a3","Image":"base2:latest","Command":"/usr/bin/sleep
189
+ 50","Created":1372251066,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"50af1afe676a828bf5515a2813dc38d051d63fdd273445c701bbe5c773df9add","Image":"base2:latest","Command":"ls
190
+ ","Created":1372251064,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"7b91a13c979fd971029371d2cbe654d7cc35e429b118214d56fd319e1c499ea1","Image":"base2:latest","Command":"ls
191
+ ","Created":1372251063,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"11e85574847d9749d893cfbdda2c777edfa2fe08bb61ae347d756904cf54ce61","Image":"base2:latest","Command":"true
192
+ ","Created":1372251063,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d203254c6fe32600cdc67b92988fe25029967f8db52289e14bf5a5edf28279da","Image":"base2:latest","Command":"uname
193
+ -r","Created":1372251019,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"62887ed494ec53d9d2d1ede44277a6dc68f57cbf9acb447e1657a6899e38a2ec","Image":"base2:latest","Command":"uname
194
+ -r","Created":1372250996,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"330d3d82e7cf1859bdbd0ed9083f696e2bff27dbb7a67b733f574ca981184ef4","Image":"base2:latest","Command":"uname
195
+ -r","Created":1372250942,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1bc69f0e75820714a21db391ae39501c4fa8a5eb515eb648e376b67dd2a4d168","Image":"base2:latest","Command":"rm
196
+ -rf / --no-preserve-root","Created":1372250901,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"ab4896126252d6a7d0a1c2a8c7fde0581c6d1dcff8baa9844ee5e38d8e3d4859","Image":"base2:latest","Command":"true
197
+ ","Created":1372250900,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"ef5f792b95ad4acb58e193e41cbf7ab71865b888b3959b29c560c45bb134ffc4","Image":"base2:latest","Command":"true
198
+ ","Created":1372250900,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"96af5a03cd76c4556ae8e3cb436e422b4b4fdc9fbcc59b8a44075c876d5903d6","Image":"748932129840","Command":"ls
199
+ /usr/local/docker-api-master","Created":1372182405,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"bbf53f64bd792092e4823a509e00d93f2a2253ed321909791c645ca31323f1b5","Image":"748932129840","Command":"ls
200
+ /usr/local","Created":1372182398,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"393ab3e311530fb95d5629ffa316d5bab8a5b6af81426d2acfa27d4d248dd13d","Image":"88a55481c6ee","Command":"tar
201
+ xvzf /git_archive.tar.gz -C /usr/local","Created":1372182352,"Status":"Exit
202
+ 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"cd0ca6c2f47bb3359087a1c114f45fa50e0e6fb4d16335c39249cf0a8888fbcc","Image":"base2:latest","Command":"echo
203
+ insert https://github.com/swipely/docker-api/archive/master.tar.gz /git_archive.tar.gz","Created":1372182259,"Status":"Exit
204
+ 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"60ac9c7ddfb59601464020eab7f890f72db89d1d28b287afe1b8490d59fe9918","Image":"base2:latest","Command":"man
205
+ tar","Created":1372182082,"Status":"Exit 127","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"39ce203770f2b50f95a2447d7074fb159d37db417a28280d0092f12217158b10","Image":"base2:latest","Command":"ls
206
+ ","Created":1372181969,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"38bec6a6ccd48389c2f90f2aeede6b2a547ffb380ee7fa21639324460cb6bd86","Image":"base2:latest","Command":"date
207
+ ","Created":1372181969,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"2e19ea7b54659972747d3d2f6b42d185cac7f4c8fbb36f5dfe5307a911b1607f","Image":"base2:latest","Command":"ls
208
+ ","Created":1372181968,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"ced4a1603d3a96ece8947490163f6e4525a6f517929a91a926563a26774ce223","Image":"base2:latest","Command":"tar
209
+ nonsense","Created":1372181968,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3a350c7bf0bdfe818f9201275c59164e7d588dce367e214f0b45307e5285cf9b","Image":"base2:latest","Command":"/usr/bin/sleep
210
+ 50","Created":1372181968,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"65b7a1bebbefc06a8b365345f9bc37c79c97ed98edcca4c410e227142b8b6cb3","Image":"base2:latest","Command":"ls
211
+ ","Created":1372181966,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"741aa14604eca3e3b9a59ac6da5b205f175ed70f03c7bd6e818ae562fcdb4d50","Image":"base2:latest","Command":"ls
212
+ ","Created":1372181965,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"48a05532fb60200929785e2a1c58e7477a051cde324dfc9f3530f67208e2deb1","Image":"base2:latest","Command":"true
213
+ ","Created":1372181964,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9b7e2f940213f7dfe957f54dbf9614009de3a9c85965e861bd8f4c5ed894707d","Image":"base2:latest","Command":"uname
214
+ -r","Created":1372181907,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"2d984b512e6193de15c97a2ef6192812d037192fa754c7b84c652ea38ac145c7","Image":"base2:latest","Command":"rm
215
+ -rf / --no-preserve-root","Created":1372181875,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3f1691b829703a3d6d5eed57e6fe5efb5eb1717faa243cc15ef4e1d505380ecf","Image":"base2:latest","Command":"true
216
+ ","Created":1372181875,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6bd38ec5541d2ebd33c0e4fb188143b8bc13636352eb8efff7d7f4256685e349","Image":"base2:latest","Command":"true
217
+ ","Created":1372181875,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"96c33cbd61657e8ba5cb6007dfd93f5fede748c914bedf44c2b229d57c5c08e7","Image":"b4997f56006d","Command":"ls
218
+ /docker-api-master","Created":1372177084,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"2424a611fd19362b07f0d837690542c96a14194a7cbd2121302893fde0265134","Image":"b4997f56006d","Command":"ls
219
+ ","Created":1372177070,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f1b11e0282d208b120bd28f3108d3516f0f660619b0b53a6e390da3d38d7d4b2","Image":"b4997f56006d","Command":"ls
220
+ ","Created":1372177058,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a4497d3ddd8ccd1daff1478e308455f4b9e6114d7d1cda5f86c6dbeebf41197d","Image":"a71ec5a768a6","Command":"tar
221
+ xvf arch","Created":1372177030,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"01c77b8aeee0a3de05ba8cd8376a5677d5a5d0e99e975c3b497fbc942f8a4b9c","Image":"a71ec5a768a6","Command":"tar
222
+ xvf arch","Created":1372177021,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"590c04c66f4eeee41e38c8dd31fa93a86435a2ac64fa54dcfcf8bf31aaad3dfc","Image":"a71ec5a768a6","Command":"ls
223
+ ","Created":1372176968,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1a9a85f7e9d8a67ccd21bf08c36bd01129f77291d33d923d80679411d73bf08e","Image":"a71ec5a768a6","Command":"ls
224
+ ","Created":1372176960,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b68f2ba57170f83f384310017afb41fc253bf61381270e66ee2c01f9e5f3ad9d","Image":"base2:latest","Command":"echo
225
+ insert https://github.com/swipely/docker-api/archive/master.tar.gz /arch","Created":1372176936,"Status":"Exit
226
+ 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f6f14aabeb8bd4b1bd3de51c0618d499a4e0aceab12dcf99730a996f7e86455c","Image":"base2:latest","Command":"ls
227
+ ","Created":1372174807,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f0cc5f00ff8613944d94a2d48f80ee8e392bfa9333ee43d1b9b78a7b3d25bc4f","Image":"base2:latest","Command":"date
228
+ ","Created":1372174795,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e8ef3bd489a9d4b4d3778b634013d193d8f64d3fd6dbed0ee7e68d96bf559f01","Image":"base2:latest","Command":"ls
229
+ ","Created":1372174783,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5efd77ed8466b1f884c402d3a6b691d2e7ca5468087ccc6ef9540d972a2b084b","Image":"base2:latest","Command":"/usr/bin/sleep
230
+ 50","Created":1372174771,"Status":"Exit 127","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a75bcef80abc1bdce54eef96671aa946a6895a90a2621ee2408a2336e350b656","Image":"base2:latest","Command":"ls
231
+ ","Created":1372174755,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0f3f745618daa1965b94f2fe66725d59c3129ec740083823660f15b27cbbe6b0","Image":"base2:latest","Command":"ls
232
+ ","Created":1372174740,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"91393173a9a4156ec273e6ed3951a48fc322591c9c92b713b42fd6b6d73a1b36","Image":"base2:latest","Command":"true
233
+ ","Created":1372174728,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e697f33d4d8810cef91794d7f05194d38ad5fde90a6414b6460f0e617d3eb250","Image":"base2:latest","Command":"true
234
+ ","Created":1372174707,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d9d1df727ad1a188dde4f36c95b4723a345b27d6bacb1fd743a4e759e704ed0f","Image":"base2:latest","Command":"uname
235
+ -r","Created":1372174692,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a7117db9ec28f4fb5e5b02087fe286b34ffca0dc00850172cc255b9ae4a4948a","Image":"base2:latest","Command":"rm
236
+ -rf / --no-preserve-root","Created":1372174676,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"bbb0f93ce31baee3a2a0657b88b330794002c019d000bf5f534a9ed41f6f74fd","Image":"base2:latest","Command":"true
237
+ ","Created":1372174659,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"68990ba03992bfc66554ee5059cacc0bd4e4c58e6d5540399eae6bf0a0f2df72","Image":"base2:latest","Command":"true
238
+ ","Created":1372174651,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4d89c5fdfcc31c69a6c09aa4ea5d1bd38d15de3a2a42a8c57db5ea132659bcc3","Image":"base2:latest","Command":"ls
239
+ ","Created":1372174573,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"ada366eee3779f49103fa92ff00f9d1cf5a62c066987aa86e3a03da94f665700","Image":"base2:latest","Command":"date
240
+ ","Created":1372174573,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0f7869323e0afd8caca6acf1aa7015f3b5ec988c0e7272bbb3c0971427827c9c","Image":"base2:latest","Command":"ls
241
+ ","Created":1372174572,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"58f72cdb78369ed7dbc0b71b22c384745914d21006889e4ab5af93a2b60fe97b","Image":"base2:latest","Command":"tar
242
+ nonsense","Created":1372174572,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f4e7357c0023abbc5f701d45cc5dca9c0b9715b4c7be98087e14f494f3949023","Image":"base2:latest","Command":"/usr/bin/sleep
243
+ 50","Created":1372174571,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"bca25dd7dcb91b085618b07730f4e8262720eb588c829280c38cd584b31c0fd6","Image":"base2:latest","Command":"ls
244
+ ","Created":1372174570,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"270ad72159a748b84a3765f3cfeccf6a69ae5e37bf00008ca734d98b3c19906f","Image":"base2:latest","Command":"ls
245
+ ","Created":1372174570,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"756b9b3c259eaf92ed55b182f5063c6fde6ece63e2ed787c1a3c82eec12d7acd","Image":"base2:latest","Command":"true
246
+ ","Created":1372174569,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"2105d68f8f870707457ed96252962c5c1d5e67eab9b31ca8b99711c3fd166598","Image":"base2:latest","Command":"rm
247
+ -rf / --no-preserve-root","Created":1372174533,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6febae594451176366899ef58f1bd48cac8521c71c2e17cbb41f4b726f7a44a4","Image":"base2:latest","Command":"true
248
+ ","Created":1372174532,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"292534572997db2edc6f26592e27e8aa10344b256eedba9d43474128e6a8e413","Image":"base2:latest","Command":"true
249
+ ","Created":1372174532,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"8a2545ff2183962c9014053a589231272eb3d013d5022c013e92a138a0b6f117","Image":"base2:latest","Command":"uname
250
+ -r","Created":1372174507,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"75904370661e8dfa5859e2ccedbed70b09fa63a744ed0769344e34807b055c89","Image":"base2:latest","Command":"uname
251
+ -r","Created":1372174503,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1d0cb01c3be9eee5d7d6175ccc440b3ba4bc2245537cbed1688251cb6cd6a943","Image":"base2:latest","Command":"uname
252
+ -r","Created":1372174380,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9c7eb58bccfe8e22b75485a349b8394e1629e23534fe4cb765cd07ba972b7c06","Image":"base2:latest","Command":"rm
253
+ -rf / --no-preserve-root","Created":1372174334,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"351f90ccf280c9e31f36aa4f1e59f9c52c7e3f44ce123359cb246a735605da07","Image":"base2:latest","Command":"true
254
+ ","Created":1372174333,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3d5af466e618a50b8900150e61a9ccd46963507eb93fecdc28ab657e98babe85","Image":"base2:latest","Command":"true
255
+ ","Created":1372174333,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c6ccb863a09271de7fa45abc92b6ccd9f41378ef0a4801f56a7f2f4709d02ad2","Image":"base2:latest","Command":"ls
256
+ ","Created":1372174280,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"2585ae57bf291214bdb742ddf56dceb6c8858ae3959ee87c8a16fc216ec47747","Image":"base2:latest","Command":"true
257
+ ","Created":1372174280,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"ad029f4b606f671ccaa9e9c5bd7f3f8664464ea47acbe299310f05d51735d59c","Image":"base2:latest","Command":"ls
258
+ ","Created":1372173594,"Status":"Exit 137","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c7a24a3a021f3ffbb2c490bef6ab6693d9da58695c5fc2d3d87e95dda3c4ba3c","Image":"base2:latest","Command":"true
259
+ ","Created":1372173584,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"af7fa9f92959908a6e94cbe8b11444e878667a38e312f12be5ea3b598781930f","Image":"base2:latest","Command":"uname
260
+ -r","Created":1372173517,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f75b59ceb1cb1c547e8bbf0a33b3db29bd8b1d33aae7b8b2584ac480bafe4472","Image":"base2:latest","Command":"rm
261
+ -rf / --no-preserve-root","Created":1372173491,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1ae701fc3a95e85996b4e8a16f7ea00747dde848d017343729512324547b5ff1","Image":"base2:latest","Command":"true
262
+ ","Created":1372173490,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d9db36184a9e402ee78dc3fd0c58dc3d0d47fd8e62c2b0761ab3aaf43b864cc1","Image":"base2:latest","Command":"true
263
+ ","Created":1372173490,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b93d97a33b4f2f8129fcd973e9769f61039a707ce23341c30fd74308e5a82e27","Image":"base2:latest","Command":"ls
264
+ ","Created":1372169355,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b6a7f4aa54fe6e19d40e8e9d29d230679cfde226adc213237e81da4f9888a97c","Image":"base2:latest","Command":"date
265
+ ","Created":1372169329,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b7aa0bfde225504671d15ed328cbfeb86322da4a842d8f5851abdceb97a77e95","Image":"base2:latest","Command":"ls
266
+ ","Created":1372169321,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f3d151166517b7fa48cf83b88a434857daf617a393e123d3d67c919a2cfd774b","Image":"base2:latest","Command":"tar
267
+ nonsense","Created":1372169313,"Status":"Exit 64","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f630d142e7f7f02e3a1fde24170492d762b745ccc76888087ead24427b98fceb","Image":"base2:latest","Command":"/usr/bin/sleep
268
+ 50","Created":1372169302,"Status":"Exit 127","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"2b52c6d053e55ec1e8484777012bfe4cd31e9b41b36d39a0d6b47e7b1520e1d1","Image":"base2:latest","Command":"ls
269
+ ","Created":1372169291,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e13092501c5f2f3cee3974dd0059e0e159cf2bdb6aa495a71b228fb0c8d48d01","Image":"base2:latest","Command":"ls
270
+ ","Created":1372169278,"Status":"Exit 137","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"81af702f46701285dd9b91bac144408d7f150ae9119ab909b29c720e983ceb61","Image":"base2:latest","Command":"true
271
+ ","Created":1372169266,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a7e9e94fe400433cd7c26e906b1f4a4dcb423244bf9de067d4294d69d0b0d6ef","Image":"base2:latest","Command":"uname
272
+ -r","Created":1372169250,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"28d49cc4356abfe166b6ecf2c3d05161f3532cafd7e4bfe0d9d22bfd2553a6f5","Image":"base2:latest","Command":"rm
273
+ -rf / --no-preserve-root","Created":1372169234,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b27559066e32d60a73319010cf292c7b2f36fe28b0f59f62f3fd4803856059e6","Image":"base2:latest","Command":"true
274
+ ","Created":1372169225,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"28540b432013f68a153f7901a615699846d8edf10118afd2c4c72185619d7b59","Image":"base2:latest","Command":"true
275
+ ","Created":1372169214,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d4576490b1b6597374f0302e6d7acfaca9e39ab11494d9e10db95c48df8074db","Image":"base2:latest","Command":"date
276
+ ","Created":1372169129,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"8f10b781870a73a3774d77a283d82edbfb9092f7dd8d8f75ce51bf988f1a918c","Image":"base2:latest","Command":"ls
277
+ ","Created":1372169129,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"18af7e212517585cd4df89870c72f0877e28d0aaa2020bdf53097f59e7b6ae2b","Image":"base2:latest","Command":"tar
278
+ nonsense","Created":1372169129,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"cd51f4942d9b1faa9a9a87564dbae79565583e4c7bbe4129472ad5b8a5f31c36","Image":"base2:latest","Command":"/usr/bin/sleep
279
+ 50","Created":1372169128,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"915ca6a98dbe1c9143e5d47e46c11c9900c0f3793890d541d5de8c4dff2c9242","Image":"base2:latest","Command":"ls
280
+ ","Created":1372169127,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a526efb0d15ceed5f1f808d154138e4d27b98d1c9e98892e4f82f7cf302de2d5","Image":"base2:latest","Command":"ls
281
+ ","Created":1372169126,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"ecec26491d1c579e34cc4870f7b6f2a64084e05cfa6e9d054587fa9dbccb0a4f","Image":"base2:latest","Command":"true
282
+ ","Created":1372169125,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"28d37c1ba71ddc6a0aea30df325cc7af600e526f1b86a200908574beffe2d7c2","Image":"base2:latest","Command":"rm
283
+ -rf / --no-preserve-root","Created":1372169101,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6539b2258ccc52f9aa49a3d7d4f68edd3c480848d3ad901295197f3996ce65f2","Image":"base2:latest","Command":"true
284
+ ","Created":1372169101,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"06e3cb038d830184d004207b302f63cdc198d7c328d52012a3102c8b2557174b","Image":"base2:latest","Command":"true
285
+ ","Created":1372169101,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c0bd94bc759ff2aac762c5ef20c9105e5bdca297080adc6cf51c3e0ba897a331","Image":"base2:latest","Command":"uname
286
+ -r","Created":1372169035,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4bf5a69ecb10908161c1d6014495f65f542305531a42f92484bf7de754395dac","Image":"base2:latest","Command":"rm
287
+ -rf / --no-preserve-root","Created":1372169011,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"fc3840240303d39b58874d8b04617abfefe8025078798a64213e0a55f8541bd8","Image":"base2:latest","Command":"true
288
+ ","Created":1372169011,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a4e4af41834aa779b2dbdf3541e12e4167ab15dd4f9482672f51bc4e6a26052b","Image":"base2:latest","Command":"true
289
+ ","Created":1372169011,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3789e9d7f0bf8c0c796165eebf63e3294cfdfa8324a9472eabfee434ad48a91e","Image":"base2:latest","Command":"ls
290
+ ","Created":1372168441,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c3a47718c40adeeea0e226af828dc3459855382f73a2450c4d61622be24634a0","Image":"base2:latest","Command":"date
291
+ ","Created":1372168424,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b6fe54d48d8fe3fadf84ea0549c5249c1c87fbbcd17d2409cf5cb344b6bbbbf8","Image":"base2:latest","Command":"date
292
+ ","Created":1372168419,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"60fc0201c65d08870fcbcfa1181374f8edb8269a0781a1ec12683e1ffe2334fc","Image":"base2:latest","Command":"ls
293
+ ","Created":1372168406,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"815ad236416e6c91d076aa404c622717aeec8c8c7a8e7c890d040d9332ffdc6f","Image":"base2:latest","Command":"tar
294
+ nonsense","Created":1372168390,"Status":"Exit 64","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3e8c676f1f5f86a877f6701f962cc7bdf48cc75c18542b15857585a87d26bd61","Image":"base2:latest","Command":"/usr/bin/sleep
295
+ 50","Created":1372168368,"Status":"Exit 127","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6079480be66eaed426231f9077873d0bb91e930202b2de61f9e29d904735c6a3","Image":"base2:latest","Command":"tar
296
+ nonsense","Created":1372168355,"Status":"Exit 64","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f1222b722bdcb129e99b9c05482f63739599ace1644e73d1012d9991da86aa59","Image":"base2:latest","Command":"/usr/bin/sleep
297
+ 50","Created":1372168343,"Status":"Exit 127","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4f5594287d2a8104132395daff9a719cd7a8ffba9cfc93bb0f1927b6afd78474","Image":"base2:latest","Command":"ls
298
+ ","Created":1372168329,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"ff2eb522326c45aed6fded1738b8696d09cd006ec6ce9d139f2e8c029b659a0a","Image":"base2:latest","Command":"ls
299
+ ","Created":1372168313,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"10b48c8ad05ddd130ce88d3196df21fe87011c6e1c969c66716cdeef49b15e79","Image":"base2:latest","Command":"true
300
+ ","Created":1372168295,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"941d237f10268f14840697974fcaccdd3dfd0cd76bd55c42c6b2a89b0ba4cdde","Image":"base2:latest","Command":"uname
301
+ -r","Created":1372168279,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b60d65ad858d3f5fabc2550933577707704f4eb83b8db5ce5a2f9c9e39a2b967","Image":"base2:latest","Command":"rm
302
+ -rf / --no-preserve-root","Created":1372168255,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"87fbddaaa84a87b534fd2fac2feaeda60060f261bb44e2f8e3c1632a4c654682","Image":"base2:latest","Command":"true
303
+ ","Created":1372168235,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6c8704e135cbd59d3ed0670b9d1854d7e2f5fd9be6f90901355d2c8281804d27","Image":"base2:latest","Command":"true
304
+ ","Created":1372168227,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"aa4cc933ae5270c6faf680a53373d2131e46c9c7fb17e6a420b125436a3f8bf8","Image":"base2:latest","Command":"rm
305
+ -rf / --no-preserve-root","Created":1372168213,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e5ce434587952639649f56e02c2241e1e02bd5c71123389b1b3fd34e4d5dfa4a","Image":"base2:latest","Command":"true
306
+ ","Created":1372168195,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4223f5db05d62f361fe8a78bf3c45fa5e5f5aa03147f96adf6e5c2d0d49f2db3","Image":"base2:latest","Command":"true
307
+ ","Created":1372168183,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6a847bc96306f0a825155cc339d602d1b8b123194265f7ff4a95b3bcbc67bf9b","Image":"base2:latest","Command":"ls
308
+ ","Created":1372168104,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1f2e99378ff66f27741ecc08cd599faa1d6889b1b21ece2b62c7b95451880ed7","Image":"base2:latest","Command":"date
309
+ ","Created":1372168103,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"36156d14f429f016af1b02632d9f98b25dea54228b465099890fc9840a68e36b","Image":"base2:latest","Command":"ls
310
+ ","Created":1372168103,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d8a47730a4ba4eed555f76b6534131ed1d99cba5160972ee810eedc280367526","Image":"base2:latest","Command":"tar
311
+ nonsense","Created":1372168103,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"296b414262aaf4ca173d71076ec5f9ed62f569fa0d4535e2306c23a65b14721b","Image":"base2:latest","Command":"/usr/bin/sleep
312
+ 50","Created":1372168102,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"ee0c9d6ab324636ff94195b00a0e7eb075b01496856d35739dfa1d0378204c1c","Image":"base2:latest","Command":"ls
313
+ ","Created":1372168101,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a5e880ddcba8a4a3e796f535950fe1928cef6652754ee6c31256a363bcf948a0","Image":"base2:latest","Command":"ls
314
+ ","Created":1372168100,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"03432660ecfd57c433000a362e65b9a3f3d510c8a379d60bc7379cc59ff9f136","Image":"base2:latest","Command":"true
315
+ ","Created":1372168099,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e5332c67784c5fed26c6b5384cdd71ccaf9959d8a633b95cf53855c89c4e4b8b","Image":"base2:latest","Command":"uname
316
+ -r","Created":1372168036,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"17daf129ecf0dcf68d295a55c0e08a69f02479b8b51890e600b0537d6ebebd46","Image":"base2:latest","Command":"rm
317
+ -rf / --no-preserve-root","Created":1372168010,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0f6f83f523b51257609f2ac495e2a5f8b1d71ddf67fbe4fbb0f5f5197df58e4f","Image":"base2:latest","Command":"true
318
+ ","Created":1372168010,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a31c1aee403dae4aa6b0cd0335ef98ac1ea95df7be272f734a183209b4ba795b","Image":"base2:latest","Command":"true
319
+ ","Created":1372168010,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"850b3a0837e7baeb4685b60f7c24514c6017a1642ca1647e86dc4388b75d91f0","Image":"base2:latest","Command":"uname
320
+ -r","Created":1372167925,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3c28a96701fe7cf0829bb6c77a6ab20a7e623a2b6b16272f778cf584611eff58","Image":"base2:latest","Command":"rm
321
+ -rf / --no-preserve-root","Created":1372167900,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5d6cb73e4d4ff618da8ab34b61e2b2b618e6a4d42a60d9ec4c76df9106ca4f8c","Image":"base2:latest","Command":"true
322
+ ","Created":1372167900,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d2c3463646df80fb0194ec698559a40e39a4dda32db94ff22f01ec5cc9764bf7","Image":"base2:latest","Command":"true
323
+ ","Created":1372167900,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"ab4717bdd62c43e980e307bde0366bcd22cd746e665b07f96902dd0950f7cdda","Image":"base2:latest","Command":"uname
324
+ -r","Created":1372167895,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"200d9af854aeb4ba159a77958ee0acf1bfbdc7b0a47b4299522e93eb0b53c4bf","Image":"base2:latest","Command":"rm
325
+ -rf / --no-preserve-root","Created":1372167871,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"8c4a848d447b16150a106d4b8def696b0eadcda219337bf304abbf16cfc6ed93","Image":"base2:latest","Command":"true
326
+ ","Created":1372167871,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9085fe678c4a46e76c13973a7dde5cfbffb17ec4cb2c711d683edbc15d9caedd","Image":"base2:latest","Command":"true
327
+ ","Created":1372167870,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f60c6c1a42824a8408cba30dc15e0bb9d548748e8de8497ec0ffd8b637850cac","Image":"base2:latest","Command":"uname
328
+ -r","Created":1372167850,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9abd3c97a2abbfdfd545b142becf377000ef3d2026adb24ca91df9bdbac50bd2","Image":"base2:latest","Command":"rm
329
+ -rf / --no-preserve-root","Created":1372167826,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c5a6585b96b0142a1fdc20715f9869138d029b56956c5c434f53b8d04d20fe53","Image":"base2:latest","Command":"true
330
+ ","Created":1372167826,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"ba5d2800312eba821ef6eb9159841b16e9a9f185b5435849feb122d414a69047","Image":"base2:latest","Command":"true
331
+ ","Created":1372167826,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"db2d3218bd247658d576a51eac1e951f202a21ff89c93b9a0aab0147b3584555","Image":"base2:latest","Command":"uname
332
+ -r","Created":1372167775,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0bfaf1bd161bdda9ef7737b66adac3d35b66457788f542cb21df08c73ff91433","Image":"base2:latest","Command":"rm
333
+ -rf / --no-preserve-root","Created":1372167749,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4a18a5b5e1660bb4f9a9ffa1c1f1d864e34dd0adaff7923c3b49912bc6411bd3","Image":"base2:latest","Command":"true
334
+ ","Created":1372167749,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5f1c658ffd9f22c4aa7179156c92cb38f9dbfacd40ca57e8aba832814d7a05d2","Image":"base2:latest","Command":"true
335
+ ","Created":1372167749,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"bbc7f85006059d4ee37e8cf84b7d1691f124ed63ddb4524b76e7d6d5d73902ce","Image":"base2:latest","Command":"rm
336
+ -rf / --no-preserve-root","Created":1372165873,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f3270f3aea4c7751657cfba11bc54ca8090a82c6c4f2d2ea5edb41e4b9025eb0","Image":"base2:latest","Command":"true
337
+ ","Created":1372165873,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0a7f72c5d8ecfda3a247686b1068abdb6b4d5d1ae2b476bd4922bfac65b11313","Image":"base2:latest","Command":"true
338
+ ","Created":1372165873,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5d6d088c2e7f5c1898d3880643b6bb3ba1a6d71fb5915f515bd8e66ea8919f8d","Image":"base2:latest","Command":"ls
339
+ ","Created":1372165853,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6cc97ef4a97f1bd3faee643daa49a23679f0429bb36120847092046e8be80433","Image":"base2:latest","Command":"date
340
+ ","Created":1372165853,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"77b58de672aa27ef4af9bc1bcf3423e5eeb6aef9e567f2ebc95dd00be53648bf","Image":"base2:latest","Command":"ls
341
+ ","Created":1372165853,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3dbb5bfbf45ecbd0be6eb19541362520ba7200671b75569cc7d051e059b92bcb","Image":"base2:latest","Command":"tar
342
+ nonsense","Created":1372165853,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"8b087dbb6e799bef12340304344a651153fc48e5a39f25eefc2984050d259254","Image":"base2:latest","Command":"/usr/bin/sleep
343
+ 50","Created":1372165852,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"488272a46a3a183c4d0946f6bf28aad897f7e22b37c4512ca25b43b7474eb710","Image":"base2:latest","Command":"ls
344
+ ","Created":1372165851,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"04533b696d872f8605f4259c604250ee7a89ae1c850e331d33bf9883be0cf857","Image":"base2:latest","Command":"ls
345
+ ","Created":1372165851,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d9a8bd80ead6c42cda0e747fdaddeaf7561e8ab03f4fcba95794d877172dca38","Image":"base2:latest","Command":"true
346
+ ","Created":1372165851,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5c8abb37881f2975b7ff3c7319bd9affd6663705e593653f7d035caa2f2f7069","Image":"base2:latest","Command":"uname
347
+ -r","Created":1372165851,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4d372a9eee8c08149bee8a73955f0f5089d9e2b206d34eaa8d316508b38a0d29","Image":"base2:latest","Command":"rm
348
+ -rf / --no-preserve-root","Created":1372165851,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b4ea4a4c94200f8cb1ef6d5fb49c1bab0fa494eef8e014336efaeddfa7a041f8","Image":"base2:latest","Command":"true
349
+ ","Created":1372165850,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d9a6cb24deb9cb0c2cb899c107a1a8d84fc806570e597072bd7317a590d4d4d7","Image":"base2:latest","Command":"true
350
+ ","Created":1372165850,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9488de9b48927f4d2f6d74df820f5dc395db39c0171fffe8cb7f184ba255af1a","Image":"base2:latest","Command":"uname
351
+ -r","Created":1372165839,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9489b426b8ba7d91da2d21df3e04f81ce3d65ef20da1ce3a131645b4c58d79ac","Image":"base2:latest","Command":"rm
352
+ -rf / --no-preserve-root","Created":1372165792,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"01248b618729a44f8ff29343ecadc5a10453fc9a5827f34e05575cd77c3d1617","Image":"base2:latest","Command":"true
353
+ ","Created":1372165792,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d9f824ed61429e329a4dc1dfbf22344d698370e26901cd32473ff7ca9c4cdfe1","Image":"base2:latest","Command":"true
354
+ ","Created":1372165791,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"055e3d77db348d1ecd42845e8c0ac89723bcc63fc2991e4b46bb41f629886dde","Image":"base2:latest","Command":"ls
355
+ ","Created":1372165764,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"7edd5e6d79640a8456f8a9528c13ce5c8a7ba19d8f86e5eb896f85fcc49f8a36","Image":"base2:latest","Command":"true
356
+ ","Created":1372165745,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5a63ff4cca68f169510afac315182bb720df23370049c4cf89e2037ecef12696","Image":"base2:latest","Command":"true
357
+ ","Created":1372165693,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1270f6c12fda7699dcfbcb5863a4ebfabd18fbdab2f3bba5295fb413ba20b5d7","Image":"base2:latest","Command":"rm
358
+ -rf / --no-preserve-root","Created":1372165634,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"25baec2ff76c91273a5922451caf1b7703f1f424412931993e1b8bf541f08360","Image":"base2:latest","Command":"rm
359
+ -rf / --no-preserve-root","Created":1372165605,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6d30d3cea7da773eaf1ac99e588ff569f46eeb5df2de963d300238d8d1ca15f2","Image":"base2:latest","Command":"rm
360
+ -rf / --no-preserve-root","Created":1372165497,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5d26459627bfb80a865cdd8e2dded490b2006e2db00cd0184e91e4525cb84f1c","Image":"base2:latest","Command":"rm
361
+ -rf / --no-preserve-root","Created":1372165381,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"47f2a13f56bdc00071b40120de15a85743dedd365c8c78336df8560f69e5bdba","Image":"base2:latest","Command":"rm
362
+ -rf / --no-preserve-root","Created":1372165247,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e2b6c494beb81c470ddc0c801e0a89c78a115bebc90198880bdfde64afc2791e","Image":"base2:latest","Command":"rm
363
+ -rf / --no-preserve-root","Created":1372165216,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5b59ce0a8664599e580238b0d341037747522cb29d9262d8489c93da1d508d6c","Image":"base2:latest","Command":"rm
364
+ -rf / --no-preserve-root","Created":1372165196,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0eb621a18ac8531f5189d9f97576fefb9450ac29f75aeced10f40736de28277f","Image":"base2:latest","Command":"uname
365
+ -r","Created":1372165124,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b0cc9b87c88c6dacbc79cc7652bccf8e0e89ea927c3bd1685257379dbda3af77","Image":"base2:latest","Command":"true
366
+ ","Created":1372165034,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0a02d12c5d33e965dfe999ef1cb199bef580cd0145ecb40ebbc3ae9e219e5a24","Image":"base2:latest","Command":"ls
367
+ ","Created":1372164969,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"03f6e8ec3ebc47dc8c06e456dd7b188d7edf66755ec045320077a162c2f242cd","Image":"base2:latest","Command":"ls
368
+ ","Created":1372164938,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"93879744f185c71c1217162d653441d24c0068092bf09daa8b34548636f23015","Image":"base2:latest","Command":"/usr/bin/sleep
369
+ 50","Created":1372164907,"Status":"Exit 127","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f4035c89e7a7cd019bdc85a0008ca3815eab9ac8865c6e16176c0d426dae1029","Image":"base2:latest","Command":"tar
370
+ nonsense","Created":1372164875,"Status":"Exit 64","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a8709d69f294ec4331719ab1b228b5e714ccfec8906ae5033895d9b48cdf3c9b","Image":"base2:latest","Command":"ls
371
+ ","Created":1372164837,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9781854893505e6a81941a2e0efdc47c70b742ec3f9a458544e3f12973f7902d","Image":"base2:latest","Command":"date
372
+ ","Created":1372164809,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"069e2ab515248783711efb57a6b9016bbcef2a81f5ac89b70dc1a49fb0e42b87","Image":"base2:latest","Command":"ls
373
+ ","Created":1372164781,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"ee3d5939ed28fffa43807bedf2dd3a8ab242999faa1df886f7dcba6bf81ca4c0","Image":"base2:latest","Command":"ls
374
+ ","Created":1372164758,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f6bc6279c5fcbc8d9cb8d6e76fe332af6af7467c5541b3cd53e23ec83dec7000","Image":"base2:latest","Command":"ls
375
+ ","Created":1372164732,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1ebebc07f18c5580874861b5665bd15f2b3bf9d06122652403aadf7fd1b1883a","Image":"base2:latest","Command":"date
376
+ ","Created":1372164703,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"62d0ee99c3e90c4c1482421001d2ab4426c258c082ade4f98e66d92943454d4c","Image":"base2:latest","Command":"true
377
+ ","Created":1372164643,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5c953d3d2d4d255270410a7358a3c83743593a43c58eb6c562d43de00065a3f1","Image":"base2:latest","Command":"true
378
+ ","Created":1372164636,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"48e92534f852c6eb3f6d6a19055f0268c13b325d059cd32f04f2ab0f3bfdc69e","Image":"base2:latest","Command":"true
379
+ ","Created":1372164596,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1ca3df49427c01534b3087483ae3b4ed3ce3446d6246fdc871c51833f0a1298c","Image":"base2:latest","Command":"true
380
+ ","Created":1372164573,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a7555e16c92f7be50b02493fa2e0693197b4e982d535c82556013b2851add4fd","Image":"base2:latest","Command":"true
381
+ ","Created":1372164559,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a2710b68909a64c8a3728e47bbf995bb50050ed530c68e33ce6c4ffb384581ac","Image":"base2:latest","Command":"true
382
+ ","Created":1372164464,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5ad7e13961ac524bae2665527aedd2da48a40468a2294f227ab57b03e161cecd","Image":"base2:latest","Command":"ls
383
+ ","Created":1372164433,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"65d548b680282313a308ffbda7ab755416d5a37f46ab12ebecc9e9b69b9e0a96","Image":"base2:latest","Command":"ls
384
+ ","Created":1372164410,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c61375e1f1522741d33f48f4ab9cf5a810c7266934fa00d17f931e120bf99f7f","Image":"base2:latest","Command":"ls
385
+ ","Created":1372164385,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"8f55b8d7f4ee88175eabe88ef52c8d1b2263cd98c74f779c5d36b98e51e1ad4f","Image":"base2:latest","Command":"ls
386
+ ","Created":1372164336,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"49a38428abe7ea141015860d6c2da9c8757789b423222758b6898fa3607416c0","Image":"base2:latest","Command":"ls
387
+ ","Created":1372164317,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d0a146322539ad000eff31f86857a6785e83a8e1443fb300ca9faadb39f9ffba","Image":"base2:latest","Command":"ls
388
+ ","Created":1372164296,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"cfa73a289762d67a1dd3264137c91a5dc224838a591cba023016bfd023c0ac3e","Image":"base2:latest","Command":"ls
389
+ ","Created":1372164258,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b46de1bca43284611a31e6839361b9e4fe7a28713b5476e2bf1797c4fc592339","Image":"base2:latest","Command":"ls
390
+ ","Created":1372164194,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"bc05f483d509b74bd3eca0dccfc93a357b78f99d91eb8b5b54e5f1e23389196b","Image":"base2:latest","Command":"ls
391
+ ","Created":1372164183,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d0dd22b44462bc10e49e4cb758ff0234b4e94756e9b43f3697927a828bb5ac02","Image":"base2:latest","Command":"ls
392
+ ","Created":1372164168,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"911d68ed4bf0bba07aafa8eebf1cb4909a11577f9bf781e9619442eb257989b0","Image":"base2:latest","Command":"ls
393
+ ","Created":1372164160,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"46f6de95b8fd8d910a0dc3aa5381c2e1d5ac051a6fa5de9ab0cb1c6b705853bb","Image":"base2:latest","Command":"ls
394
+ ","Created":1372164140,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e41a20c15945bb63abffda1698fec1ac31426a35dd7b8dbd3d7726f7da2705f8","Image":"base2:latest","Command":"ls
395
+ ","Created":1372164133,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3593a8085a7c4b05f41ed89a0a3e259f6cfa5f01238eb3bcc42788ca94de3c88","Image":"base2:latest","Command":"ls
396
+ ","Created":1372164111,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5d7d5325eceb6daa0cb1299beaa989fafbea6ff6cd487e7b89277fa3eef73d44","Image":"base2:latest","Command":"ls
397
+ ","Created":1372164088,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"2565323169e2f28e21a64c254b31abec8ac7caad11e754dd67ed7a8dfd47f8a0","Image":"base2:latest","Command":"ls
398
+ ","Created":1372164071,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6ad30ba96f05feaf8021e707d9f9649df33ba6332118746f6bd1d54e609cd3af","Image":"base2:latest","Command":"ls
399
+ ","Created":1372164022,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9e2bb8c5dc9f9e780f1168cb0abcc1a6ab5daddc1f647ba4f0b980b4fc044fc7","Image":"base2:latest","Command":"ls
400
+ ","Created":1372163955,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"37c211ee4bdeb4144c9ce5d2808f2266dcf655984daf03a101fa926e1e247a9c","Image":"base2:latest","Command":"ls
401
+ ","Created":1372163789,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"530ecb7593655b38abce6b85b19708483e496e9493367e559cd2c8ae83d84b1d","Image":"base2:latest","Command":"ls
402
+ ","Created":1372163757,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"088f63602edc9ce17f8230cd1243b36c22f25f8c35766f07e79304043da28e99","Image":"base2:latest","Command":"true
403
+ ","Created":1372163740,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"8ed6649ea575873fb92579a659ae529d72b6c5684ebc7dc3efa2489bdad6f025","Image":"base2:latest","Command":"which
404
+ pwd","Created":1372163670,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"381a73d6841fd3ad096587fdc8c17c0d3153c5f4a7caa141f6bef4ab633f0d9b","Image":"base2:latest","Command":"ls
405
+ /lib64","Created":1372163669,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4bbd0a882d5a9d87103ce8a52e457d8b93eb197c3685ddd3b7b61df8a1102f87","Image":"base2:latest","Command":"which
406
+ pwd","Created":1372163647,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0ef25238de5442aea105e22088f9a0e81f1d4720357c7f4676fd4dabc6258868","Image":"base2:latest","Command":"ls
407
+ /lib64","Created":1372163643,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"696b3618f00a4c5a0a114114c0638b6b14dd17bf83e03cf66702ff8c41fc5de1","Image":"base2:latest","Command":"which
408
+ pwd","Created":1372163617,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1df9b6700ad0289bbfd8a4b6bba2267872ec516917817e87e8a1c7a5c8d33a5f","Image":"base2:latest","Command":"ls
409
+ /lib64","Created":1372163615,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"8bd942fcce19469f954ba4438496f5528b4a927eadf103a3ec90107ef77b5ceb","Image":"base2:latest","Command":"which
410
+ pwd","Created":1372162824,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4faa74b0e413dab2404d8ec5f31e1bbadc57a6368862a7503ce02e1e92885489","Image":"base2:latest","Command":"ls
411
+ /lib64","Created":1372162824,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"7e1f2ff6bda0887254713b69ff464264bc06ea66bfb4f11ebdc2b99576e90e99","Image":"base2:latest","Command":"which
412
+ pwd","Created":1372162775,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b102216b178729d26f07cdecee501cc95b7f3aa63ec4fc4b6542721728a07fa3","Image":"base2:latest","Command":"ls
413
+ /lib64","Created":1372162775,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a3046074426f0bb1702040932839ffc5876f959a798a7c335c724774b4c2e778","Image":"base2:latest","Command":"which
414
+ pwd","Created":1372162607,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"7b68706b3846ff786107c4f479c62de3bed1501ea18d209bb69663fbd3eabcfa","Image":"base2:latest","Command":"which
415
+ pwd","Created":1372162596,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"fd3653f92ccd5b06f4f833fbe2b10132fe70491262780f144b38171063591674","Image":"centos:6.4","Command":"which
416
+ ls","Created":1372162572,"Status":"Exit 127","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c346de40aae43684b33e3739a7dca1f35cc21f4cb0291259a7aa17c5afe68010","Image":"base2:latest","Command":"ls
417
+ /lib64","Created":1372162530,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f8256da68d132fcb0af137fd64423d42ea2c50b0544acbd51ec0b59112e6542a","Image":"base2:latest","Command":"ls
418
+ /lib64","Created":1372132429,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5bff6fb444ddb73d62eb110e4c4c7b10aced982c5b61784c72802c5fc134e3ea","Image":"base2:latest","Command":"ls
419
+ /lib64","Created":1372132404,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0ac43d803f1515da6b08985d70da63757e82818342e5a64d246fd590879a013e","Image":"ubuntu:12.04","Command":"which
420
+ ls","Created":1372132368,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5d74bc7dda8f0a74cacceedcf8d00873c55f0253614d5d4239d0fd2c180b1cda","Image":"base2:latest","Command":"ls
421
+ /lib64","Created":1372132366,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b2844dd155bcd6cfd8d68b28acb8a7585b57f31ebdedc10cb3537f49e27cb99d","Image":"ubuntu:12.04","Command":"which
422
+ ls","Created":1372132344,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"70e7da3a5dab1b9db4ec5d71a3426e0fd67614a585e5ea8f699fef179d66ccd4","Image":"ubuntu:12.04","Command":"ls
423
+ /lib64","Created":1372132342,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a382ea38c6e4080e41f2f8886c74d411aeddc0b7fcc5f7a94fb35f1d661f5ee7","Image":"base2:latest","Command":"which
424
+ ls","Created":1372132264,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"30c09c20099109b9fe01706b1c2fe0b500c583b8cb39c8dafe2d220c8a6ded03","Image":"base2:latest","Command":"ls
425
+ /lib64/","Created":1372132262,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"bd6fb7a3d6eb2915732854798fd2a984abf3f9e04a09aa51a9089fceb3870c46","Image":"base2:latest","Command":"which
426
+ ls","Created":1372132243,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"15738064800f38513d29ed67ca96bca951ec9282da7a00908ee9861d4e07abfa","Image":"base2:latest","Command":"which
427
+ ls","Created":1372132212,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"edc5b584a28e41acb276f9534c57b7221b69fd7033dbefb1f36a9bf70fefdb97","Image":"base2:latest","Command":"ls
428
+ /lib64/","Created":1372132205,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"90a50b3aa2372ea99a675e1bbecd4c3b355739ad0febf63b4826b7dc23860ff3","Image":"base2:latest","Command":"which
429
+ ls","Created":1372132178,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"8628cf2cd00b677df0d5993775cfa3f0187a675fd8eab778edad9c3ecf85a5f3","Image":"base2:latest","Command":"ls
430
+ /lib64/","Created":1372132175,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"79f8dc66f154dd662094b19853c3a9867ea3afc9806ebeb067e15b472c374a2a","Image":"base2:latest","Command":"which
431
+ ls","Created":1372132137,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"044a3598480a369a32647f73f1cea803f456eaef8e98f56d9e44229e8c620651","Image":"base2:latest","Command":"ls
432
+ /lib64/","Created":1372132134,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"ad0a5f0d389c12a0c30e3b465b146d4795954a440ad46a99500e4eb9aa030be3","Image":"base2:latest","Command":"which
433
+ ls","Created":1372132115,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c0ef62b927908f07dbf7f611e62992e562571c17d78b830249ca784c212933b7","Image":"base2:latest","Command":"ls
434
+ /lib64/","Created":1372132114,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e081b73b8aabf253809e8898da50c585ccb62904f821f10a5422a81d4e8b6847","Image":"base2:latest","Command":"ls
435
+ /lib64/","Created":1372132073,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"08acaf1759c09134cbb9fb397f7b194ef0d9148a1d32308241a677fc0b74197e","Image":"base2:latest","Command":"ls
436
+ /lib64/","Created":1372132070,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"115edd295ca5799818b7dda22c857afc8db921c2def3ae18f7245c58bb2a9162","Image":"base2:latest","Command":"ls
437
+ /lib64/","Created":1372132005,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"85fb7e3d7b46fc1829acd8c2c28b236211953a9709e52362ae00c6671a65b7f0","Image":"base2:latest","Command":"ls
438
+ /lib64/","Created":1372131998,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"ed7a8f7e1219b03d8c76e81e362f4c895a3eab2b831b5cd9af933a91fbbf9ed2","Image":"base2:latest","Command":"ls
439
+ /lib64/","Created":1372131968,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d9bd48ad9bb82e13f647f0b5f0e20f1a241474629dcf610497f17e02424277a4","Image":"base2:latest","Command":"ls
440
+ /lib64/","Created":1372131967,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"643514bf517b31b9c09ca7fbfdfe84e5faac0fc63ebef458eaa8b1149478bd50","Image":"base2:latest","Command":"ls
441
+ /lib64/","Created":1372131938,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5630849f531c633f2a40080aebdf8eded7b72a168a005456cc8fd8180eca61e9","Image":"base2:latest","Command":"ls
442
+ /lib64/","Created":1372131936,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6ebee3beb6b3ef7ec376d18bce3679149ebd44ae5a528cd06a197d8a379a3317","Image":"base2:latest","Command":"ls
443
+ /lib64/","Created":1372131911,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"7090d46122432907bbf67edd945fc82c9c786ab4325eb7212e2965911bdcc2f0","Image":"base2:latest","Command":"ls
444
+ /lib64/","Created":1372131909,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"de498cdf39addad0e60cf5064cc3d40f9f6dad9753150d05cf21808ccabe3673","Image":"base2:latest","Command":"ls
445
+ /lib64/","Created":1372131855,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3a50677385f861f9cc6e5c9088dc536330243b0181fed656027c02a7a5a601a8","Image":"base2:latest","Command":"ls
446
+ /lib64/","Created":1372131853,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6718ae77456a3ac2411ee510d0e44ad21e0345f588827d29679b0a3b7163d675","Image":"base2:latest","Command":"ls
447
+ /lib64/","Created":1372131822,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1c9efadfb5a547a919f6bf37350caac8a6b6c9d8ff5a8d9fd8516fa1a62e87ef","Image":"base2:latest","Command":"ls
448
+ /lib64/","Created":1372131820,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c24baa6c0530fc8617bdf65744d7b5cc5ccd5f0d654f66e37a32bd7a539dab5f","Image":"base2:latest","Command":"ls
449
+ /lib64/","Created":1372131787,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5ec1aa252c4cf4f2e61d4e5d0da260bde55dbefff57182ee7d0cf4e633884dcc","Image":"base2:latest","Command":"ls
450
+ /lib64/","Created":1372131785,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"35b77e347e0aa8f6fabcbad5e9183e672af306cde8084631bf93b283c3975f2d","Image":"base2:latest","Command":"which
451
+ pwd","Created":1372131670,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9f33b2f0a802950502c7a959375cd24dd6d55e89be6b34c9f108c966967f28ba","Image":"base2:latest","Command":"ls
452
+ /lib64/","Created":1372131667,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"90919fdeec798764d0885739230b6b14766f541a1d5da3eb5ba39c939a82f7b9","Image":"base2:latest","Command":"which
453
+ pwd","Created":1372131593,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"731823c9fc15d7792eb0a0821a1a36411fa7b29f315ee23d3ee7819d5002926c","Image":"base2:latest","Command":"which
454
+ pwd","Created":1372131575,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"7fbb773b602afef95fd9c905f19f69e475e2d901d6600331ac38294d0b535eb8","Image":"base2:latest","Command":"which
455
+ pwd","Created":1372131561,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"bbd70ed0c817ccc5bbfb2070fda2eed91d491fe6d576ac0c32eb3fcd5c323654","Image":"base2:latest","Command":"which
456
+ pwd","Created":1372131465,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b1e8928e5f026a08b2500ae7347112811e9ef0520af1f038ad4407d2cbb6b530","Image":"base2:latest","Command":"ls
457
+ /lib64/","Created":1372131462,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f11c131bbd0341fe4c4929cedcec2c3a54f44b85ebf3157867f9f89bede888ed","Image":"base2:latest","Command":"which
458
+ pwd","Created":1372131425,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e72a788b21fc78e7200bfa0fb0fa3d34a9e3f3dab05e8257b091bacbda4c065c","Image":"base2:latest","Command":"ls
459
+ /lib64/","Created":1372131423,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"021877ebc704c479254aa7627a0c367ddfa0caf8f313126581304cec646df7ed","Image":"db176f981058","Command":"cat
460
+ Dockerfile","Created":1372131293,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"edf8ca199e24bb60c49ed8f4f5e80e96c47af6448240b9109604127202016cdc","Image":"base2:latest","Command":"/bin/sh
461
+ -c #(nop) ADD / in /","Created":1372131293,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"ca3a7710f9648e9afd6dd9fd1810c784b04c6a8a532b7606c87fd96860dd0cbb","Image":"base2:latest","Command":"/bin/sh
462
+ -c #(nop) ADD / in /","Created":1372131277,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"666c31230c15246958923207839a3137a35d25535b37ab03a0c2b5bfead8b5f1","Image":"base2:latest","Command":"/bin/sh
463
+ -c #(nop) ADD / in /","Created":1372131158,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1590c57cf8db9b51a170029569b41c15dff3cc358a09224e4ae5ed8a2fdc88c0","Image":"base2:latest","Command":"/bin/sh
464
+ -c #(nop) ADD / in /","Created":1372131043,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b70400a9b039743be0c0a9066ee659d3d19ad381b460bfa2874b47796db2bd37","Image":"base2:latest","Command":"/bin/sh
465
+ -c #(nop) ADD / in /","Created":1372131029,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"84a0c4338ea3a31d42f87d04c0dffd275dfbba8b24bd712cf2623f6368a63069","Image":"base2:latest","Command":"/bin/sh
466
+ -c #(nop) ADD / in /","Created":1372131004,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d6aee6a889ea2a163106468ca761f2896a0eeffa4b9d13710b6a8f40f2679a90","Image":"base2:latest","Command":"/bin/sh
467
+ -c #(nop) ADD / in /","Created":1372130765,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5d2411f3e298b78af2add623135fe6755db9f501a621bd457ddddc116edaa629","Image":"jbgi/arch-base:latest","Command":"ls
468
+ ","Created":1372112951,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"980489a1e3f40025a7b8de343c917204fe5c7da0ed132470a40268fc4146a366","Image":"jbgi/arch-base:latest","Command":"ls
469
+ ","Created":1372112929,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"27b13dc8b6da99dcfda90fa6578845ef152377d9f48ac96a4526bd1fbedeaec3","Image":"jbgi/arch-base:latest","Command":"ls
470
+ ","Created":1372112924,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d92b321d141c28bf76c5bd3bca554c84f3f6dc6f9723ebc3ba5183f43af213c1","Image":"jbgi/arch-base:latest","Command":"ls
471
+ ","Created":1372112908,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6d9973555bf92ade5cfe3113d6bed9e252571a9e8ca93a22a4675e6b1e699ea9","Image":"base2:latest","Command":"ls
472
+ ","Created":1372112680,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"cab604b147351f3302879dc6813e6bb78b29e41f7088e3f1183ceb2dd5d51397","Image":"deployz_test:generate","Command":"true
473
+ ","Created":1372109228,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"2e0d15582d0d1e4e8ff9a25b314ebea77a2e102757d5bde61e44edbd29aef0c5","Image":"4e7eb54201c0","Command":"/bin/sh
474
+ -c touch /it_worked","Created":1372109227,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1a5f802cc8d2a6d06b709e8c0945a8aabf36f95ae17812de516e6fee157e529e","Image":"54148f138210","Command":"/bin/sh
475
+ -c tar xvf /test_docker.tar","Created":1372109227,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c53cd245f024adf52597608b4208a8b9fb506d1fc117de6f00158e34ff33c55a","Image":"6e518ac74155","Command":"/bin/sh
476
+ -c rm /Dockerfile","Created":1372109226,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"2650720fabf594bd4e74052d1a4edb34c50bd2eae2bb2b8af1014dd0c3fba06b","Image":"cc4c8661844f","Command":"/bin/sh
477
+ -c #(nop) ADD / in /","Created":1372109226,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4a8675cd7a8255945aa152400dba2aa68dd7fabaac56e051bca0fbe4a837b423","Image":"deployz:my-app","Command":"true
478
+ ","Created":1372109185,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"06961110dee364af0bac7cd0adf8fa277b6ed9046aeddee0305461e1de0d3280","Image":"deployz:my-app","Command":"ls
479
+ -1 /","Created":1372109185,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"d36856cd0bd84f7fb225714ab4f81c303756f788863958ffe2fe7bf2f1cfa217","Image":"1d4df2fdc329","Command":"/bin/sh
480
+ -c touch /lol","Created":1372109184,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a55f9f5f14955b4547e6be5b5331ebd05c8f4efc190e35a0def9ce51463cabb2","Image":"deployz:deb_test","Command":"true
481
+ ","Created":1372109131,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"76ffbd2e2ee387dce90ac2af7f7fe4f61ef7a2339ca3a554b1490ee87e1187fc","Image":"6d9ce489fa84","Command":"/bin/sh
482
+ -c tar xvf /my-docker-for-deb.tar","Created":1372109131,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"7a80c6b0c2b4121b7e6e7d4ce659c3636e143a0586367dccb541f62b96b35d39","Image":"ff89a741c122","Command":"/bin/sh
483
+ -c rm /Dockerfile","Created":1372109130,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"65f379f7205e40331059c35fcf23be2a9276c8039783d8f77b5366d3a2326532","Image":"5e3d3f3087bb","Command":"/bin/sh
484
+ -c #(nop) ADD / in /","Created":1372109130,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"221a6490ea9611d21c9cbc07be08f8b447813f7905bf2f762510fd33ab4205ba","Image":"328422c0454d","Command":"true
485
+ ","Created":1372109042,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"aa36c774cc2aef7187bb22e6b0805885f6552e55fa085e164d9e1bfa2570a204","Image":"5f893ed8ffbe","Command":"/bin/sh
486
+ -c touch /it_worked","Created":1372109041,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"2a171d0bbf32cdb5bd33bc11d260c6d33523a922c1caddfd69c0026b992cb8c8","Image":"e860e4c7bbf5","Command":"/bin/sh
487
+ -c tar xvf /test_docker.tar","Created":1372109041,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c31bff303267b54543165540b7a0e84fcc194a912839b39280e11acd657289dd","Image":"f2c85be66150","Command":"/bin/sh
488
+ -c rm /Dockerfile","Created":1372109040,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3ba5691d7dd95e2a8126d8c6e77b2b01ce18547b65db9a6aae4215bc4f2fef75","Image":"d46475cacaa3","Command":"/bin/sh
489
+ -c #(nop) ADD / in /","Created":1372109039,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"388f785801815443f66aacfe1f6f4bdcc2598ce9123cb9960903c865437a1b17","Image":"4b0f7ea2495d","Command":"true
490
+ ","Created":1372109021,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"fff28a475c66dd55ed5bafc320556d79badebfb6cd4da3134186ec6e6fb430b0","Image":"4b0f7ea2495d","Command":"ls
491
+ -1 /","Created":1372109021,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"957cd86667f85d133f29d2b68e4202bca2fa1110ba2c19d1df8333dbbeeba414","Image":"c839694d078e","Command":"/bin/sh
492
+ -c touch /lol","Created":1372109021,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a68c95bf1cedefaf622d42e9381a532424a994a947c0c774ae59b88523a87575","Image":"4914d2d8121a","Command":"true
493
+ ","Created":1372109001,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6390c7531b3010472a75c1ceb9fd0a00d10130c5fe8119720595051dd370f116","Image":"642071c6d6c7","Command":"/bin/sh
494
+ -c tar xvf /my-docker-for-deb.tar","Created":1372109001,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"dddd3319ffb88d6be27d814f2ec0c26d4daafb873539cd7cb3b621df500c1fe4","Image":"ab3160f03ffe","Command":"/bin/sh
495
+ -c rm /Dockerfile","Created":1372109000,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"cc5e4becc4dfc61f6082d2f227779e2c52b8c4789ec90cfb8fa5af4780d6357b","Image":"3cb04071113c","Command":"/bin/sh
496
+ -c #(nop) ADD / in /","Created":1372109000,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"2a6c1a4562076066c8f73d32ea99e01e1015ca5ad423588e494b0f9ebfb389e8","Image":"279ca2523839","Command":"true
497
+ ","Created":1372108981,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f661fec8e9b1cc049df21192c3bff898a598627cacca9d77ade454a499cb59e6","Image":"d08ba0a0858f","Command":"/bin/sh
498
+ -c tar xvf /my-docker-for-deb.tar","Created":1372108981,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"8a5e402c0ed8fadcd4ec8e0346b6e1e8a0f539b4e1fda1ff2f1a667a5175d4b1","Image":"5c19b061bd25","Command":"/bin/sh
499
+ -c rm /Dockerfile","Created":1372108980,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5ca50b40ece10c9ea442db4427fc25e97565a4780750633d7943dba08eae6007","Image":"ddab34bb20cf","Command":"/bin/sh
500
+ -c #(nop) ADD / in /","Created":1372108980,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"5851766daa2dea911b79d73623c0589258007ebc8cb22bb561ce96479b250388","Image":"eb506fccd7e5","Command":"/bin/sh
501
+ -c touch /it_worked","Created":1372108847,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"76bea6e22d89028d502e1d1680ec834dbbaaaefa5f2fd10feb3b9f2b771692b2","Image":"109d3426b697","Command":"/bin/sh
502
+ -c tar xvf /test_docker.tar","Created":1372108847,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a35cda1b79c4cd061c6e55c3032a26d6a06dacd0b40201b51fdbd21f935ca4ee","Image":"e68857787a2f","Command":"/bin/sh
503
+ -c rm /Dockerfile","Created":1372108846,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e07fa219f62764935a50df7cf4f6077bae7027f398d53fffdfb422ab0791051a","Image":"d663a02073ac","Command":"/bin/sh
504
+ -c #(nop) ADD / in /","Created":1372108846,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"cfaedb304eb12d6312a3d4d9ea72f01a3ef9845263fb307603de62a48b7dd3eb","Image":"de0e68a09075","Command":"/bin/sh
505
+ -c touch /lol","Created":1372108711,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9a2cb72aae5af20598efb554bf538b75b131db071ebe8236316c7e71d3eae70b","Image":"478451fca414","Command":"/bin/sh
506
+ -c tar xvf /my-docker-for-deb.tar","Created":1372108551,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"360782a0b4dcd7fd40a3acbc3bf175c70ab31a735fa1d85452bcb1ffe5180915","Image":"2c944368a48b","Command":"/bin/sh
507
+ -c rm /Dockerfile","Created":1372108551,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"7a8ba33e65ac250cae76460bc9149a53c1d13ffb1d0cc91d6e3e434ca7aa2da3","Image":"44f8e2d371ce","Command":"/bin/sh
508
+ -c #(nop) ADD / in /","Created":1372108550,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"08c5c963689372da8d8536c6679e8d064ec43e5cc1ca81e7fb591d197dc3c091","Image":"ec9010ad784c","Command":"/bin/sh
509
+ -c tar xvf /my-docker-for-deb.tar","Created":1372108532,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"b6af47ec811b12ad92718c0e3b56c620d0ae869c35628d2ce3179f4fd7b73b92","Image":"46370e88261b","Command":"/bin/sh
510
+ -c rm /Dockerfile","Created":1372108531,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a1acfcad06b4c41a82ab55f8920ed40ff5bae912e0490a7775cea4cc5ab3cdbf","Image":"4d01ff9d255d","Command":"/bin/sh
511
+ -c #(nop) ADD / in /","Created":1372108530,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a46386b988d7dec137e9249ac7105d12230b211305252ea7415ebfa8b52a97e1","Image":"base2:latest","Command":"which
512
+ pwd","Created":1372106074,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9af101fe27c6e5df5b1276bb46e1379d96dd7ddece034fe83af862e2f7212c24","Image":"base2:latest","Command":"ls
513
+ /lib64/","Created":1372106073,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"8101863ecc224e7550bd35e536b2d29c65ed111170c37ffe2ffc4d2a45990a63","Image":"cbdf5b0d7c4a","Command":"ls
514
+ /","Created":1372106052,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3993b5b5362cec4471dbfea4fe625e1b11c4f026ec0ac949bff11c8145b3856f","Image":"base2:latest","Command":"echo
515
+ insert http://stallman.org /stallman","Created":1372106050,"Status":"Exit
516
+ 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f3b29ac8c5462d09380d27b416c00fe22f2e55bd22dccb51bd2acd2d484e6d86","Image":"base2:latest","Command":"ls
517
+ ","Created":1372106046,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"41cf76eb660ac33239da620e760761e3cbf5f5a1e604bdd0c9e5e2896ea9a19b","Image":"base2:latest","Command":"date
518
+ ","Created":1372106046,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"28b7848c4ac9fcf3c3af6df3517393eaa3e434d13b16ec761dd1d79906678d6a","Image":"base2:latest","Command":"ls
519
+ ","Created":1372106046,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"8577b36fb4573f1c0d72335b5c90017047c6450f286ade5823e84c895e4cd2b9","Image":"base2:latest","Command":"tar
520
+ nonsense","Created":1372106045,"Status":"Exit 64","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3616fefdf3d299b849a6a0aea39cf01aab2fdc9e0dfc99df837c389b9f34ed9a","Image":"base2:latest","Command":"/usr/bin/sleep
521
+ 50","Created":1372106044,"Status":"Exit 127","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"eb28ab8282e856572ec1ce623a9dcdeaec7de5f53fd4cc7c7b693cb51b852383","Image":"base2:latest","Command":"ls
522
+ ","Created":1372106044,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"2235deb81fb96a12e7b0a73fdc7560dca8a2e7891aa3313e1afba2c81ef2504c","Image":"base2:latest","Command":"ls
523
+ ","Created":1372106042,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6205a5a7d8393b6837ce9475fe93dc627cb0b5e90a9eca1238464279d16d32d4","Image":"base2:latest","Command":"true
524
+ ","Created":1372106042,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"bf657f024ce21c15f40d8cb72d0362fedc6acabe1067d4be12c72b514a4bae84","Image":"base2:latest","Command":"uname
525
+ -r","Created":1372106042,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9fb8bd314b7c2ecb92019e76d07fe842870a3d1e13ddfccfd0beca390c694cbb","Image":"base2:latest","Command":"rm
526
+ -rf / --no-preserve-root","Created":1372106032,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"eefa941f46d7affec40377c003e368bcc3ba93a717fc350f32d91bd871a35982","Image":"base2:latest","Command":"true
527
+ ","Created":1372106032,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1739e27f388dc8712b706f1a3541180befccb2bf18f251754abf96b2824140fb","Image":"base2:latest","Command":"true
528
+ ","Created":1372106032,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"42132e652d3c78a978d0d2430f6dc15378104ee4285ecff9deca307c4b7af695","Image":"a4ddfd594d60","Command":"cat
529
+ /Dockerfile","Created":1372104784,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"cde0a178207b6bbf9a54d9e663f093f4a2bf1ae9be81d902ac946b13da27b2bd","Image":"base2:latest","Command":"/bin/sh
530
+ -c #(nop) ADD / in /","Created":1372104783,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"261efbfe6c3387b0f29ff4fda4f6153df4c6d8841fb00c40ffb93bc9304a408c","Image":"base2:latest","Command":"which
531
+ pwd","Created":1372103537,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"7ed69689931aaa034293ca73873c14d90cfc65b853095ca6a81f653245be76ef","Image":"base2:latest","Command":"ls
532
+ /lib64/","Created":1372103534,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"4dfb8c4a859e6e56eebad11f9c9dd562741ca97ca5ab7e0a305e36965f7db947","Image":"48e97e63be88","Command":"ls
533
+ /","Created":1372103228,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"dfd2eacb8218052414f116df8baea4f745d0043a50121af7cf4be20984e881d5","Image":"base2:latest","Command":"echo
534
+ insert http://stallman.org /stallman","Created":1372103227,"Status":"Exit
535
+ 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"0a487c340120e80c364dc121df57863383238b0fe8279eeb6dd36617e757f598","Image":"base2:latest","Command":"ls
536
+ ","Created":1372102876,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a233fce672873a1f82ff5ec39e56dcd3ac1c63cc3df0278beabd7656c83362e8","Image":"base2:latest","Command":"date
537
+ ","Created":1372102876,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"01b05de7bdecc29258dabe4dc3a1b245b6b49b381ec34adf8429a5ddc612ca56","Image":"base2:latest","Command":"ls
538
+ ","Created":1372102876,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"cc5f28d5f9363130dc91ad8eacf6f92cde6ae5d72480ad0d6cc49c40dfd4f74b","Image":"base2:latest","Command":"tar
539
+ nonsense","Created":1372102875,"Status":"Exit 64","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"580a00b8fed5cb41b713f8a71c414f5cf5aa35a5514cebc1564fde6e842f70ef","Image":"base2:latest","Command":"/usr/bin/sleep
540
+ 50","Created":1372102875,"Status":"Exit 127","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"3aa973ff6265d623d51b881916b8c6701320151dd5ec0970edc64ab0a703aea6","Image":"base2:latest","Command":"ls
121
541
  ","Created":1372102874,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"e6406cb8ac252c10620323d529f1c27047e9e2bbe3f5c6a9568597144e99906b","Image":"base2:latest","Command":"ls
122
542
  ","Created":1372102873,"Status":"Exit 137","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"25a8aad8a972af3041238725eee008f6ae37838ca68a070325e5f80a7131bcd6","Image":"base2:latest","Command":"true
123
543
  ","Created":1372102872,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f1b6a203102c5328f7c4ab8a09b50bb452acdcc60507965ecae95ff3a948c138","Image":"base2:latest","Command":"uname
@@ -828,8 +1248,8 @@ http_interactions:
828
1248
  /Dockerfile/home/","Created":1371843193,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"a72d41b039a7f0b282cc9b2729b35fa259ff966e972b8ce9afce3d04bb6dceec","Image":"e495b94e01c0","Command":"ls
829
1249
  /Dockerfile","Created":1371843189,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"f64f5282c984cfa9c743448e889cfb23e2f6ce64d845b14cff5457375bf75f21","Image":"e495b94e01c0","Command":"cat
830
1250
  /Dockerfile","Created":1371843180,"Status":"Exit 1","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"6c959e5cfa342ccc785292f47ed410f9f1e90dde7b9321619326e5e13af3e3d8","Image":"e495b94e01c0","Command":"ls
831
- ","Created":1371843173,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9daea6fe4825d6951a650a9218646175512eaeff94f53a8bebb8151f6b53b651","Image":"deployz:deb_test","Command":"ls
832
- ","Created":1371843079,"Status":"Exit 255","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"63b39bce9fb7e52684c69f8d3a6e67939c5de0c905ba8bc4df6941ffcc84679c","Image":"deployz:deb_test","Command":"true
1251
+ ","Created":1371843173,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"9daea6fe4825d6951a650a9218646175512eaeff94f53a8bebb8151f6b53b651","Image":"5f84b6400876","Command":"ls
1252
+ ","Created":1371843079,"Status":"Exit 255","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"63b39bce9fb7e52684c69f8d3a6e67939c5de0c905ba8bc4df6941ffcc84679c","Image":"5f84b6400876","Command":"true
833
1253
  ","Created":1371843061,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"54a936fff4e00846389cdcb2175ced9567bed79478096c79978e7cf8601f7ac4","Image":"1eb59b25baef","Command":"/bin/sh
834
1254
  -c #(nop) ADD / in Deb_0_Deployz::Docker.tar","Created":1371843060,"Status":"Exit
835
1255
  0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"1a82a1e3a25cb88b196ac89cf113c48e864f4cc0f84c26c8e3109c543b7909ea","Image":"base2:latest","Command":"tar
@@ -1354,5 +1774,5 @@ http_interactions:
1354
1774
  ","Created":1371363179,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0},{"Id":"c250130f3deeeb0925dad14767f7f1ab1d3aa8c20727c27533676644375c7916","Image":"base2:latest","Command":"ls
1355
1775
  ","Created":1371363130,"Status":"Exit 0","Ports":"","SizeRw":0,"SizeRootFs":0}]'
1356
1776
  http_version:
1357
- recorded_at: Mon, 24 Jun 2013 19:41:14 GMT
1777
+ recorded_at: Wed, 26 Jun 2013 18:09:54 GMT
1358
1778
  recorded_with: VCR 2.5.0