-
Notifications
You must be signed in to change notification settings - Fork 11
docker_pull_base
crvogt edited this page Dec 2, 2020
·
8 revisions
We begin by acquiring a basic Docker image to use as our initial working environment. Run:
docker run --name my_container -it ros:melodic-ros-base
- This will pull the
ros:melodic-ros-base
image from DockerHub and create a container of that image calledmy_container
. -
-it
is added so that when this is complete, it starts an interactive Bash session for you to run commands. - This may take a few minutes to run while it downloads and extracts the image layers.
Up: Development Process Overview | Next: Modify Container Environment |
---|