Geoffrey Keating
08/15/2023, 7:19 PMdocker run command? I can see how I can pack in some environment variables and --privileged, but I need to allow for inter-process communication with --ipc=hostGeoffrey Keating
08/15/2023, 7:38 PM**build_kwargs could pass through a command-line equivalent of --ssh defaultalex
08/15/2023, 7:59 PMdocker-py under the hood, so **build_kwargs on build_docker_image can accept any of the args supplied by images.build from docker-py. The --ssh flag appears to only work with BuildKit enabled, but docker-py doesn’t have BuildKit support, so it may not be an available option.
Passing additional arguments to the Docker worker may require modifying the code. Feel free to open an issue on prefect-docker so we can investigate it.Geoffrey Keating
08/15/2023, 8:25 PMprefect-docker to push?alex
08/15/2023, 8:27 PMGeoffrey Keating
08/15/2023, 8:27 PMipc_mode argument, I think it could be added in. Thanks!