Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Launch Job Docker Image name #2037

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/examples/launch/hello_job_with_container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ job_type: train # options: train, deploy, federate
job_subtype: generate_training

docker:
image: fedml/fedml-default-launch:cu12.1-u22.04
image: fedml/fedml-launch-job:cu12.1-u22.04
#registry: docker.io
#username: my_hub_user
#password: my_hub_password
Expand Down
2 changes: 1 addition & 1 deletion python/fedml/computing/scheduler/comm_utils/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class SchedulerConstants:
RUN_PROCESS_TYPE_BOOTSTRAP_PROCESS = "bootstrap-process"

FEDML_DEFAULT_LAUNCH_CONTAINER_PREFIX = "fedml_default_launch_container"
FEDML_DEFAULT_LAUNCH_IMAGE = "fedml/fedml-default-launch:cu12.1-u22.04"
FEDML_DEFAULT_LAUNCH_IMAGE = "fedml/fedml-launch-job:cu12.1-u22.04"
FEDML_DEFAULT_LOG_DIR = ".fedml/fedml-client/fedml/logs"
FEDML_DEFAULT_DATA_DIR = ".fedml/fedml-client/fedml/data"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ workspace: train_job
# It should be the full name of the image with tag.
# If you want to use the default image, it can be empty.
docker:
image: fedml/fedml-default-launch:cu12.1-u22.04
image: fedml/fedml-launch-job:cu12.1-u22.04

# Running entry commands which will be executed as the job entry point.
# Support multiple lines, which can not be empty.
Expand Down
2 changes: 1 addition & 1 deletion python/fedml/workflow/driver_example/hello_world_job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ workspace: hello_world
# It should be the full name of the image with tag.
# If you want to use the default image, it can be empty.
#docker:
# image: fedml/fedml-default-launch:cu12.1-u22.04
# image: fedml/fedml-launch-job:cu12.1-u22.04

# Running entry commands which will be executed as the job entry point.
# Support multiple lines, which can not be empty.
Expand Down