Open a terminal. Run the image in a container in interactive mode and launch a topic publisher (executable talker from the package demo_nodes_cpp) with ros2 run.
docker run -it --rm osrf/ros2:ardent-basic ros2 run demo_nodes_cpp talkerOpen a second terminal. Run the image in a container in interactive mode and launch a topic subscriber (executable listener from the package demo_nodes_cpp) with ros2 run.
docker run -it --rm osrf/ros2:ardent-basic ros2 run demo_nodes_cpp listenerAs alternative to the command line invocation you can create a docker-compose.yml file (here version 2) with the following (minimal) content.
version: '2'
services:
talker:
image: osrf/ros2:ardent-basic
command: ros2 run demo_nodes_cpp talker
listener:
image: osrf/ros2:ardent-basic
command: ros2 run demo_nodes_cpp listener
depends_on:
- talkerTo run the containers call docker-compose up in the same directory. You can close the containers with Ctrl+C.