From cafbbc4cf118da19e0127f331af40ff1fce94d12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Mich=C3=A1lek?= Date: Thu, 16 Sep 2021 13:11:54 +0200 Subject: [PATCH] docs: fix order of podman parameters #32 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d1c8d42..e347af4 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Alternatively you might build the project in the container where image already c Podman example with mapping multiple /dev/ttyUSB from host computer to the container: ``` -podman run -it espressif/idf-rust-examples --device /dev/ttyUSB0 --device /dev/ttyUSB1 +podman run --device /dev/ttyUSB0 --device /dev/ttyUSB1 -it espressif/idf-rust-examples ``` Docker (does not support flashing from container):