File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,9 @@ function show_network_interfaces {
28
28
}
29
29
30
30
function jobqueue_install {
31
- docker exec slurmctld conda run -n dask-jobqueue /bin/bash -c " cd /dask-jobqueue; pip install -e ."
31
+ for c in slurmctld c1 c2; do
32
+ docker exec $c conda run -n dask-jobqueue /bin/bash -c " cd /dask-jobqueue; pip install -e ."
33
+ done
32
34
}
33
35
34
36
function jobqueue_script {
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ services:
69
69
- slurm_jobdir:/data
70
70
- var_log_slurm:/var/log/slurm
71
71
- shared_space:/shared_space
72
+ - ../..:/dask-jobqueue
72
73
expose :
73
74
- " 6818"
74
75
depends_on :
@@ -91,6 +92,7 @@ services:
91
92
- slurm_jobdir:/data
92
93
- var_log_slurm:/var/log/slurm
93
94
- shared_space:/shared_space
95
+ - ../..:/dask-jobqueue
94
96
expose :
95
97
- " 6818"
96
98
depends_on :
You can’t perform that action at this time.
0 commit comments