-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(docker): Configure TensorBoard port through .env file (#2397)
* chore(docker): Configure TensorBoard port through .env file - Added a new `.env` file to specify the TensorBoard port - Updated the `docker-compose.yaml` file to import the TensorBoard port from the `.env` file - Adjusted the tensorboard service in `docker-compose.yaml` to make the port configurable via an environment variable - Added a comment in `docker-compose.yaml` to encourage changing the port in the `.env` file instead of the docker-compose file itself * fix: the `Open tensorboard` button is not working in headless environment Use the gradio builtin feature instead. - In `class_tensorboard.py`, the "Open tensorboard" button now directly links to the tensorboard URL instead of calling the `open_tensorboard_url` function when clicked.
- Loading branch information
Showing
3 changed files
with
5 additions
and
137 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
TENSORBOARD_PORT=6006 |
This file contains 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
This file contains 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