* Ensure you have Docker and Docker Compose installed on your system (Instructions can be found on the official Docker website: [https://www.docker.com/](https://www.docker.com/))
2.**Starting the Containers**
* Navigate to the project directory in your terminal:
```bash
cd UR-Robotiq
```
* Run the following command to start the Docker Compose:
```bash
docker-compose up -d
```
**Notes:**
* The `-d` flag in `docker-compose up -d` runs the containers in detached mode (in the background).
* This assumes you have a `docker-compose.yml` file in your project's root that defines the necessary containers.