File tree 1 file changed +22
-6
lines changed
1 file changed +22
-6
lines changed Original file line number Diff line number Diff line change 1
1
#
2
- # Override these variables with environment variables
3
- # e.g.
2
+ # By default this bakefile builds:
3
+ # - the "ci" and "robot" stages for both amd64 and arm64 (with Qemu), and
4
+ # - the "desktop" and "desktop-nvidia" stages for amd64
5
+ # for ROS "rolling"
4
6
#
5
- # BLUE_ROS_DISTRO=iron docker buildx bake
7
+ # To build all default targets and load the resulting images
8
+ # to _this_ machine:
6
9
#
7
- # or
10
+ # docker buildx bake --load
8
11
#
9
- # export BLUE_ROS_DISTRO=iron
10
- # docker buildx bake
12
+ # To override this default behavior, create a file "docker-bake.override.hcl"
13
+ # in this directory which overrides the variables in this file. For example,
11
14
#
15
+ # To build both "ci" and "robot" for _only_ amd64:
16
+ #
17
+ # > target "ci" {
18
+ # > platforms = ["linux/amd64"]
19
+ # > }
20
+ #
21
+ # To set the ROS disto:
22
+ #
23
+ # > variable "BLUE_ROS_DISTRO" { default = "jazzy" }
24
+ #
25
+ # Alternatively, set the environment variable BLUE_ROS_DISTRO
26
+ #
27
+
12
28
variable "BLUE_ROS_DISTRO" { default = " rolling" }
13
29
variable "BLUE_GITHUB_REPO" { default = " robotic-decision-making-lab/blue" }
14
30
You can’t perform that action at this time.
0 commit comments