Replies: 1 comment
-
I would just study how the dockerize option was implemented in Nextflow and take a similar approach: Lines 226 to 237 in 973b031 It is just some Bash code to launch the Nextflow pipeline in a Docker image, with some extra options so that the task containers are launched in the host environment rather than within the Nextflow container. We removed it because it was difficult to maintain in a generic way, but as a custom solution it is feasible. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have the same problem as discussed here: #3782
I would like to run
nextflow run
from inside a webserver that is dockerized. However, the flag-d / -dockerize
fornextflow run
is gone now in the latest version of nextflow. The documentation says it is just depricated, but it is gone.I found this article that suggests a solution to the problem by either 1) mounting
/var/run/docker.sock
or 2) using a special image.How can I make either 1) or 2) work? Does nextflow allow me that kind of low-level access and/or forwards these additional command line flags?
Beta Was this translation helpful? Give feedback.
All reactions