Go2Py/deploy/scripts/go2py-robot-hw-nodes.service

13 lines
517 B
SYSTEMD
Raw Normal View History

2024-02-12 10:01:46 +08:00
[Unit]
Description=ROS2 device driver container
Requires=multi-user.target
After=multi-user.target
2024-02-12 10:01:46 +08:00
[Service]
Restart=always
ExecStartPre=/usr/bin/docker rm -f go2py_robot_docker || true
ExecStart=/bin/bash -c '/usr/bin/docker run --rm --name go2py_robot_docker --privileged --network host -v /home/unitree/locomotion:/home/locomotion -v /dev/*:/dev/* -v /etc/localtime:/etc/localtime:ro --runtime nvidia go2py_robot_hw:latest'
ExecStop=/usr/bin/docker stop -t 2 go2py_robot_docker
[Install]
WantedBy=default.target