Fix missing type field in container job mount

This commit is contained in:
2022-10-23 17:36:24 -06:00
parent feb7f68488
commit dbb7134626
+1
View File
@@ -65,6 +65,7 @@ func RunJob(job Job, workingDir string) error {
// TODO: fix running the runner in docker (add VolumesFrom to HostConfig)
&container.HostConfig{
Mounts: []mount.Mount{{
Type: mount.TypeVolume,
Source: jobFolder,
Target: "/job",
ReadOnly: false,