Files
gvisor/g3doc/user_guide/tutorials/BUILD
T
Adin Scannell 508e25b6d6 Adapt website to use g3doc sources and bazel.
This adapts the merged website repository to use the image and bazel
build framework. It explicitly avoids the container_image rules provided
by bazel, opting instead to build with direct docker commands when
necessary.

The relevant build commands are incorporated into the top-level
Makefile.
2020-05-06 14:15:18 -07:00

38 lines
727 B
Python

load("//website:defs.bzl", "doc")
package(
default_visibility = ["//website:__pkg__"],
licenses = ["notice"],
)
doc(
name = "docker",
src = "docker.md",
category = "User Guide",
permalink = "/docs/tutorials/docker/",
subcategory = "Tutorials",
weight = "21",
)
doc(
name = "cni",
src = "cni.md",
category = "User Guide",
permalink = "/docs/tutorials/cni/",
subcategory = "Tutorials",
weight = "22",
)
doc(
name = "kubernetes",
src = "kubernetes.md",
category = "User Guide",
data = [
"add-node-pool.png",
"node-pool-button.png",
],
permalink = "/docs/tutorials/kubernetes/",
subcategory = "Tutorials",
weight = "33",
)