Skip to content

Commit 2e151bb

Browse files
committed
Minor update of comment in docker-bake.hcl
1 parent 5b77695 commit 2e151bb

File tree

1 file changed

+22
-6
lines changed

1 file changed

+22
-6
lines changed

.docker/docker-bake.hcl

+22-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,30 @@
11
#
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"
46
#
5-
# BLUE_ROS_DISTRO=iron docker buildx bake
7+
# To build all default targets and load the resulting images
8+
# to _this_ machine:
69
#
7-
# or
10+
# docker buildx bake --load
811
#
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,
1114
#
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+
1228
variable "BLUE_ROS_DISTRO" { default = "rolling" }
1329
variable "BLUE_GITHUB_REPO" { default = "robotic-decision-making-lab/blue" }
1430

0 commit comments

Comments
 (0)