Docker image for C++ projects of the Udacity Self-Driving Car Nanodegree
10K+
Docker image for C++ projects of the Udacity Self-Driving Car Nanodegree (on Docker Hub)
This Docker images comes with all dependencies needed for Udacity's following C++ projects:
Go to your project folder, then:
# opens an interactive shell, mounts your current directory into /project and forwards port 4567
docker run -v "`pwd`:/project" -p 4567:4567 -it mreichelt/carnd-cpp
# then inside of the Docker shell, build and run as usual, e.g. for Path Planning:
mkdir -p build && cd build && cmake .. && make -j4 && ./path_planning
I personally only use the Docker image to be able to automatically build my C++ projects with Travis. If you are interested, check out the .travis.yml file of my path planning project.
Big thanks to Youcef Rahal, who created a Docker image that includes much more functionality than just for C++ projects (includes Ubuntu UI, jupyter notebook and much more).
Content type
Image
Digest
Size
206.1 MB
Last updated
almost 9 years ago
docker pull mreichelt/carnd-cpp