summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorsoftprops <d.tangren@gmail.com>2016-01-03 20:11:58 -0500
committersoftprops <d.tangren@gmail.com>2016-01-03 20:11:58 -0500
commitad205ad14f859b2d4a07d31ed1d31b2f87a68f4d (patch)
tree2f942e2ffdba257f04d26e89b3638d83ff1fb8e4 /src/lib.rs
parent4fc64c315713f68c513a66468921299863a4ecc0 (diff)
images should have labels... sometimes
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index e1def81..4965157 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -296,12 +296,12 @@ impl<'a, 'b> Container<'a, 'b> {
Ok(try!(json::decode::<Exit>(&raw)))
}
- /// Delete the container instance
+ /// Delete the container instance (todo: force/v)
pub fn delete(&self) -> Result<()> {
self.docker.delete(&format!("/containers/{}", self.id)[..]).map(|_| ())
}
- // todo attach, attach/ws,
+ // todo attach, attach/ws, copy, archive
}
/// Interface for docker containers