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 to be run onboard the ROV's Raspberry Pi.
services:
eer_ros_packages:
build:
context: ./ros_workspace
dockerfile: Dockerfile
args:
- ROV_NAME=${ROV_NAME:-waterwitch} # Specify the name of the ROV
- DEV_MODE=${DEV_MODE:-false} # Set DEV_MODE to false (real ROV)
tty: true
container_name: eer_ros_packages
restart: always
ipc: host # Required for ros2 communication with host network
privileged: true # Required for access to the i2c bus
volumes:
- /dev:/dev # Allow access to the i2c bus
- ./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