We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07c82ef commit 86722e0Copy full SHA for 86722e0
src/zenml/orchestrators/local_docker/local_docker_orchestrator.py
@@ -223,10 +223,12 @@ def submit_pipeline(
223
self.get_settings(step),
224
)
225
image = self.get_image(snapshot=snapshot, step_name=step_name)
226
+ image = settings.run_args.pop("image", image)
227
228
user = None
229
if sys.platform != "win32":
230
user = os.getuid()
231
+ user = settings.run_args.pop("user", user)
232
logger.info("Running step `%s` in Docker:", step_name)
233
234
run_args = copy.deepcopy(settings.run_args)
0 commit comments