Update README.md

This commit is contained in:
bjoernellens1 2023-10-23 14:18:30 +02:00 committed by GitHub
parent 272b51e250
commit 4a826e6c25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,16 +34,20 @@ docker buildx bake hello-world --push # to push into specified remote container
docker compose run hello-world docker compose run hello-world
``` ```
## To build the image for my_example (and push it to your container registry): ## Advanced build: Custom ROS2 image that includes the Unitree GO1 package.
``` ```
docker buildx bake my_example --load # to load into local container registry docker buildx bake my_example --load # to load into local container registry
``` ```
or
``` ```
docker buildx bake my_example --push # to push into specified remote container registry docker buildx bake my_example --push # to push into specified remote container registry
``` ```
## To run my_example: ## To run my_example:
### Run my_example just once to see if everything's working: ### Run my_example just once to see if everything's working:
This will launch the Unitree udp high-level control node.
```
docker compose run my_example
```
### Run my_example in background ### Run my_example in background
``` ```
docker compose up -d my_example docker compose up -d my_example