Skip to content

Commit

Permalink
Removed && in docker run (micro-ROS#7)
Browse files Browse the repository at this point in the history
* Posibility to build in docker container.

* Small updates

* Removed && in docker run

Co-authored-by: Pablo Garrido <[email protected]>
  • Loading branch information
dsryzhov and pablogs9 authored Oct 19, 2020
1 parent 1a93077 commit f57dc3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ docker run -it --rm --net=host microros/micro-ros-agent:foxy udp4 --port 8888 -v
It's possible to build this example application using preconfigured docker container. Execute this line to build an example app using docker container:

```bash
docker run -it --rm --user espidf --volume="/etc/timezone:/etc/timezone:ro" -v $(pwd):$(pwd) --workdir $(pwd) microros/esp-idf-microros:latest /bin/bash -c "idf.py build &&"
docker run -it --rm --user espidf --volume="/etc/timezone:/etc/timezone:ro" -v $(pwd):$(pwd) --workdir $(pwd) microros/esp-idf-microros:latest /bin/bash -c "idf.py build"
```

Docker image microros/esp-idf-microros:latest will be automatically pulled from hub.docker.com
Expand Down

0 comments on commit f57dc3c

Please sign in to comment.