やりたいこと
Ubuntu 18.04上で、ROS indigoが動く環境をDockerfileを使って作る。
Ubunu 18.04上の環境
1 | ~/catkin_ws |
Dockerfile
1 | FROM osrf/ros:indigo-desktop-full |
Build
1 | cd ~/catkin_ws |
Run
1 | docker run -it --net=host indigotest:0.1 bash |
--net=host
オプションが重要。
三十路ソフトエンジニア Blog
Ubuntu 18.04上で、ROS indigoが動く環境をDockerfileを使って作る。
1 | ~/catkin_ws |
1 | FROM osrf/ros:indigo-desktop-full |
1 | cd ~/catkin_ws |
1 | docker run -it --net=host indigotest:0.1 bash |
--net=host
オプションが重要。