Support Dockerizing Crubit Explorer and Loading into Docker workspaces for hosting. - #1530
Merged
Conversation
copybara-service
Bot
force-pushed
the
test_953564387
branch
4 times, most recently
from
July 24, 2026 23:58
8e3687d to
0d0e873
Compare
copybara-service
Bot
force-pushed
the
test_953564387
branch
from
July 28, 2026 17:01
0d0e873 to
1da5832
Compare
…s for hosting. This pulls in a Docker Image (running Debian 13 with glibc >= 2.39) and builds an OCI container in Bazel. It includes the rust toolchain sysroot and the on-demand sysroot for glibc is provided by the docker image. To load the image, a `bazel run //:server_load` will load into the docker daemon, and running `docker run -p 3000:3000 crubit_explorer:latest` will forward internal ports to the external interface. The server automatically detects the loaded frontend and binary paths next to the file (see logic in `crubit_explorer/src/main.rs`. This image can be deployed onto systems capable of running a Docker Image. PiperOrigin-RevId: 955322127
copybara-service
Bot
force-pushed
the
test_953564387
branch
from
July 28, 2026 17:06
1da5832 to
1caab3c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Support Dockerizing Crubit Explorer and Loading into Docker workspaces for hosting.
This pulls in a Docker Image (running Debian 13 with glibc >= 2.39) and builds an OCI container in Bazel. It includes the rust toolchain sysroot and the on-demand sysroot for glibc is provided by the docker image.
To load the image, a
bazel run //:server_loadwill load into the docker daemon, and runningdocker run -p 3000:3000 crubit_explorer:latestwill forward internal ports to the external interface. The server automatically detects the loaded frontend and binary paths next to the file (see logic incrubit_explorer/src/main.rs.This image can be deployed onto systems capable of running a Docker Image.