Skip to content

Commit

Permalink
Fix: devices uses IP 192.168.88.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
aentinger committed Jan 14, 2025
1 parent f183fe3 commit 21e8862
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@ docker buildx build \
followed by exporting the image and copying to the target device:
```bash
docker save ros2:latest | gzip > ros2_image_latest.tar.gz
scp ros2_image_latest.tar.gz root@192.168.8.5:/root
scp ros2_image_latest.tar.gz pi@192.168.88.5:/home/pi
```
and concluded by loading the updated image:
```bash
ssh [email protected]
docker load < ros2_image_latest.tar.gz
```
The Docker environment for the ROS infrastructure will be built and the application files will be bootstrapped over the system. Finally, the software will come up as a ```systemd``` service with the name ```head.service```.
Expand Down
2 changes: 1 addition & 1 deletion head
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

ip link set down dev eth0
ip addr flush dev eth0
ip addr add 192.168.8.5/24 dev eth0
ip addr add 192.168.88.5/24 dev eth0
ip link set up dev eth0

/usr/bin/docker run \
Expand Down

0 comments on commit 21e8862

Please sign in to comment.