docs: fix order of podman parameters #32

This commit is contained in:
Juraj Michálek 2021-09-16 13:11:54 +02:00 committed by GitHub
parent ad2066cf60
commit cafbbc4cf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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):