Skip to content

Commit ff5e8f6

Browse files
authored
fix(cli): do not pass the force-build flag to docker (#3641)
1 parent db0f8cf commit ff5e8f6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

renku/core/session/docker.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,9 @@ def session_start_helper(consider_disk_request: bool):
356356
environment["CHOWN_HOME"] = "yes"
357357
environment["CHOWN_HOME_OPTS"] = "-R"
358358

359+
if "force_build" in kwargs:
360+
del kwargs["force_build"]
361+
359362
container = self.docker_client().containers.run(
360363
image_name,
361364
'jupyter notebook --NotebookApp.ip="0.0.0.0"'

0 commit comments

Comments
 (0)