You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature: Add Dockerfile to build TensorBoard as a container (#5966)
# Motivation for features / changes
Containerization can be helpful in many situations from deploying to the
cloud, to running a task in CI, and even easily setting up a development
environment.
## Noteworthy Callouts
Our OSS CI is often quite slow, this is likely due to an issue with
network egress caps. Using a prebuilt image could dramatically reduce
egress and potentially speed up CI runs.
Setting up a tensorboard development environment is somewhat difficult
(getting the right versions of `bazel`, `python`, `node` etc are
essential. With this image (and docker preinstalled) setup becomes two
commands which are the same across platforms (OSX, Linux, maybe even
Windows?).
# Technical description of changes
I added a Dockerfile so that the project can easily be built as a Docker
container.
# Detailed steps to verify changes work correctly (as executed by you)
## Building the image
Clone the project and run the following command from the root directory
`docker build -t tensorflow/tensorboard .`
## Example Usage
```
docker run \
-p 6006:6006 \
-v $PWD/tensorboard:/tensorboard/tensorboard \
-v $MY_LOG_DIR:/logdir \
tensorflow/tensorboard \
ibazel run tensorboard:dev -- --logdir /logdir --bind_all
```
* Alternate designs / implementations considered
Here is a short summary of the various commands and their primary function. Please see below for more details. We recommand using `ibazle test` for regular work and `bazel run` for deep dive debugging.
140
-
*`bazel test/run`: runs tests once and done.
141
-
*`ibazel test`: supports file watching.
142
-
*`ibazle run`: provides karma console breakpoint debugging; does not support file watching.
143
-
* Both `ibazel test` and `ibazel run` supports `console.log` and `fit/fdescribe`, which are used to narrow down the test amount.
144
172
173
+
-`bazel test/run`: runs tests once and done.
174
+
-`ibazel test`: supports file watching.
175
+
-`ibazle run`: provides karma console breakpoint debugging; does not support file watching.
176
+
- Both `ibazel test` and `ibazel run` supports `console.log` and `fit/fdescribe`, which are used to narrow down the test amount.
145
177
146
178
1. Just run all webapp tests. The job stops after finished. `console.log` is not
147
179
supported. Not handy on debugging.
@@ -151,13 +183,13 @@ Here is a short summary of the various commands and their primary function. Plea
151
183
```
152
184
153
185
2. Using `ibazel` to auto detect the file changes and use target
154
-
`karma_test_chromium-local`for running on *webapp* tests.
186
+
`karma_test_chromium-local`for running on _webapp_ tests.
155
187
156
188
```sh
157
189
(tf)$ ibazel test //tensorboard/webapp/... --test_output=all
158
190
```
159
191
160
-
*`--test_output=all`: for displaying number of tests if using '`fit`'.
192
+
-`--test_output=all`: for displaying number of tests if using '`fit`'.
161
193
162
194
3. To run on a specific test, we can change the target (with `chromium-local`
163
195
suffix). For example,
@@ -199,25 +231,27 @@ to be edited by hand.
199
231
2. Add or modify an entry in the `[dependencies]` or `[devDependencies]`
200
232
section of `package.json`. You can do this manually but often it's preferred
0 commit comments