How to get URSim on docker working with "remote control"
- Assuming you have docker installed and configured
- Start the docker container as shown here:
cd ~/ && mkdir programs
docker run -d \ --name="dockursim" \ -e ROBOT_MODEL=UR5 \ -p 8080:8080 \ -p 29999:29999 \ -p 30001-30004:30001-30004 \ -v /${HOME}/programs:/ursim/programs \ --privileged \ --cpus=1 \ universalrobots/ursim_e-series
- localhost:8080
- With
ifconfig
find the ip of docker - python3 <your_script.py> <docker_ip>
- Start the docker container as shown here: