Skip to content

Commit abc7ce6

Browse files
committed
Fixed docker properties
1 parent cab0aab commit abc7ce6

File tree

1 file changed

+3
-3
lines changed
  • cogkit/modules/provider-coaster/resources

1 file changed

+3
-3
lines changed

cogkit/modules/provider-coaster/resources/worker.pl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3381,8 +3381,8 @@ sub rundockerjob {
33813381

33823382
# volumes
33833383
my $mountpoint = "/scratch";
3384-
if (defined $$JOB{"docker.jobDirMountPoint"}) {
3385-
$mountpoint = $$JOB{"docker.jobDirMountPoint"};
3384+
if (defined $$JOB{"docker.jobdirmountpoint"}) {
3385+
$mountpoint = $$JOB{"docker.jobdirmountpoint"};
33863386
}
33873387

33883388
push(@a, "-v=$jobdir:$mountpoint");
@@ -3395,7 +3395,7 @@ sub rundockerjob {
33953395

33963396
push(@a, @$JOBARGS);
33973397

3398-
if ($$JOB{"docker.alwaysPull"} eq "true") {
3398+
if ($$JOB{"docker.alwayspull"} eq "true") {
33993399
wlog DEBUG, "Pulling image $fullImage\n";
34003400
my $out = `$docker pull $fullImage 2>&1`;
34013401
if ($? != 0) {

0 commit comments

Comments
 (0)