Terminology update (#1035)

This commit is contained in:
pollfly
2025-02-10 10:17:24 +02:00
committed by GitHub
parent 4667c3d194
commit 085841ab0d
14 changed files with 42 additions and 44 deletions

View File

@@ -51,8 +51,8 @@ to open the app's instance launch form.
* Repository
* Branch
* Commit
* **Docker**
* Image - Docker image used to run the IDE in
* **Container**
* Image - Container image used to run the IDE in
* Docker arguments - `docker run` arguments, as a single string
* **Extra Packages** - Extra Python packages to be installed
* **Queue** - The queue serviced by the ClearML Agent that will execute the Jupyter Lab session

View File

@@ -68,8 +68,8 @@ values from the file, which can be modified before launching the app instance
* Repository
* Branch
* Commit
* **Docker** - Input details to run the session in Docker container
* Image - Docker image to launch
* **Container** - Input details to run the session in Docker container
* Image - Container image to launch
* Docker Arguments - Additional arguments for the Docker image
* Init Script - Bash script that is executed upon container boot (comments are supported only at the beginning of the
line)

View File

@@ -51,8 +51,8 @@ to open the app's instance launch form.
* Repository
* Branch
* Commit
* **Docker**
* Image - Docker image used to run the IDE in
* **Container**
* Image - container image used to run the IDE in
* Docker arguments - `docker run` arguments, as a single string
* **Queue** - The queue serviced by the ClearML Agent that will execute the VS Code session
* **Maximum idle time** (hours) - Maximum time of inactivity, after which the session will shut down. Configure idleness

View File

@@ -27,7 +27,7 @@ Disable for default desktop scale.
* **Block running user's scripts in the browser** - Block any user and 3rd party scripts from running anywhere in the
WebApp. Note that if enabled, the WebApp will not display debug samples, [Hyper-Dataset frame previews](../../hyperdatasets/previews.md),
and embedded resources in [reports](../webapp_reports.md).
* **Hide specific container arguments** - Specify which Docker environment variable values should be hidden in logs.
* **Hide specific container arguments** - Specify which container environment variable values should be hidden in logs.
When printed, the variable values are replaced with `********`. By default, `CLEARML_API_SECRET_KEY`, `CLEARML_AGENT_GIT_PASS`,
`AWS_SECRET_ACCESS_KEY`, and `AZURE_STORAGE_KEY` values are redacted. To modify the hidden container argument list, click **Edit**.

View File

@@ -39,7 +39,7 @@ Web UI**, edit any of the following
* [Source code](#source-code)
* [Output destination for artifacts](#output-destination)
* [Base Docker image](#base-docker-image)
* [Default container](#default-container)
* [Hyperparameters](#hyperparameters) - Parameters, TensorFlow Definitions, command line options, environment variables, and user-defined properties
:::note
@@ -71,23 +71,22 @@ and/or Reset functions.
#### Base Docker Image
Select a pre-configured Docker that **ClearML Agent** will use to remotely execute this task (see [Building Docker containers](../clearml_agent/clearml_agent_docker.md)).
#### Default Container
Select a pre-configured container that the [ClearML Agent](../clearml_agent.md) will use to remotely execute this task (see [Building Docker containers](../clearml_agent/clearml_agent_docker.md)).
**To add, change, or delete a base Docker image:**
**To add, change, or delete a default container:**
* In **EXECUTION** **>** **AGENT CONFIGURATION** **>** **BASE DOCKER IMAGE** **>** hover **>** **EDIT** **>**
Enter the base Docker image.
* In **EXECUTION** **>** **CONTAINER** **>** hover **>** **EDIT** **>**
Enter the default container image.
:::important
For a ClearML Agent to execute the task in a container, the agent must be running in
Docker mode:
[Docker Mode](../clearml_agent/clearml_agent_execution_env.md#docker-mode):
```bash
clearml-agent daemon --queue <execution_queue_to_pull_from> --docker [optional default docker image to use]
clearml-agent daemon --queue <execution_queue_to_pull_from> --docker [optional default container image to use]
```
For more information, see [Docker Mode](../clearml_agent/clearml_agent_execution_env.md#docker-mode).
:::
#### Output Destination