-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8454a05
commit 3d2dc9f
Showing
11 changed files
with
150 additions
and
184 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,30 @@ | ||
# Docker Compose file for TurtleBot3 Behavior Examples | ||
# Docker Compose file for developer containers | ||
# | ||
# Usage: | ||
# | ||
# To build the images: | ||
# docker compose build | ||
# | ||
# To start up a specific service by name: | ||
# docker compose up <service_name> | ||
# ROS_DISTRO=<distro> docker compose up dev --build | ||
# | ||
# To open an interactive shell to a running container: | ||
# docker exec -it <container_name> bash | ||
# docker exec -it naoqi_driver-dev-1 bash | ||
|
||
version: "3.9" | ||
services: | ||
# Developer container | ||
dev: | ||
image: ros2-naoqi-driver:dev | ||
image: naoqi-driver:dev-$ROS_DISTRO | ||
build: | ||
context: . | ||
dockerfile: docker/Dockerfile | ||
target: dev | ||
args: | ||
- ROS_DISTRO=$ROS_DISTRO | ||
|
||
# Interactive shell | ||
stdin_open: true | ||
tty: true | ||
|
||
# Networking and IPC for ROS 2 | ||
network_mode: host | ||
ipc: host | ||
volumes: | ||
# Mount the source code | ||
- .:/ws/src/naoqi_driver2:rw | ||
- .:/ws/src/naoqi_driver:rw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.