You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This docker compose file is intended for development.
services:
eer_ros_packages:
build:
context: ./ros_workspace
dockerfile: Dockerfile
args:
- ROV_NAME=${ROV_NAME:-bluestar} # Specify the name of the ROV
- DEV_MODE=${DEV_MODE:-true} # Set DEV_MODE to 1 (simulated ROV)
tty: true
container_name: eer_ros_packages
restart: always
network_mode: host # Run in host mode to allow ros2 communication with host network
ipc: host # Required for ros2 communication with host network
volumes:
- ./ros_workspace/src/common_backend/common_backend/config:/app/src/common_backend/common_backend/config # Mount the config directory so that it persists between container restarts