summaryrefslogtreecommitdiffstats
path: root/examples/containercopyinto.rs
diff options
context:
space:
mode:
authorEli W. Hunter <42009212+elihunter173@users.noreply.github.com>2020-07-23 23:54:12 -0400
committerGitHub <noreply@github.com>2020-07-23 23:54:12 -0400
commit6cd1d7f93bd6f150341582a1b54087cefffdbf87 (patch)
tree88c109ec79e679d5aa041b20f074cf7b57d97cda /examples/containercopyinto.rs
parenta4cd2185976ad56b880d5a10374c4dee6d116e6a (diff)
Async/Await Support (continuation of #191) (#229)
* it builds! * remove unused dependencies * bump dependencies * reimplement 'exec' endpoint * update a few more examples * update remaining examples * fix doc tests, remove unused 'read' module * remove feature-gated async closures * split futures dependency to just 'futures-util' * update version and readme * make functions accepting Body generic over Into<Body> again * update changelog * reinstate 'unix-socket' feature * reinstate 'attach' endpoint * fix clippy lints * fix documentation typo * fix container copyfrom/into implementations * add convenience methods for TtyChunk struct * remove 'main' from code example to silence clippy lint * Update hyper to 0.13.1 * Add Send bounds to TtyWriter * Appease clippy * Fix examples * Update issue in changelog Co-authored-by: Daniel Eades <danieleades@hotmail.com> Co-authored-by: Marc Schreiber <marc.schreiber@aixigo.de>
Diffstat (limited to 'examples/containercopyinto.rs')
-rw-r--r--examples/containercopyinto.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/examples/containercopyinto.rs b/examples/containercopyinto.rs
index 63f0a2d..689e7af 100644
--- a/examples/containercopyinto.rs
+++ b/examples/containercopyinto.rs
@@ -1,8 +1,8 @@
use shiplift::Docker;
-use std::env;
-use tokio::prelude::Future;
+use std::{env, fs::File, io::Read};
-fn main() {
+#[tokio::main]
+async fn main() {
let docker = Docker::new();
let path = env::args()
.nth(1)
@@ -11,17 +11,17 @@ fn main() {
.nth(2)
.expect("Usage: cargo run --example containercopyinto -- <local path> <container>");
- use std::{fs::File, io::prelude::*};
-
let mut file = File::open(&path).unwrap();
let mut bytes = Vec::new();
file.read_to_end(&mut bytes)
.expect("Cannot read file on the localhost.");
- let fut = docker
+ if let Err(e) = docker
.containers()
.get(&id)
- .copy_file_into(path, &bytes[..])
- .map_err(|e| eprintln!("Error: {}", e));
- tokio::run(fut);
+ .copy_file_into(path, &bytes)
+ .await
+ {
+ eprintln!("Error: {}", e)
+ }
}