Do not attempt to set memory.swappiness to zero
This is the same issue solved here:
drone/drone-exec@94fd9ba10d
This issue was introduced by this commit:
b5dcfc4edd
This commit is contained in:
parent
08e790f921
commit
42f5395004
1 changed files with 4 additions and 2 deletions
|
@ -301,7 +301,8 @@ func (e *engine) runJob(c context.Context, r *Task, updater *updater, client doc
|
|||
Cmd: args,
|
||||
Env: e.envs,
|
||||
HostConfig: dockerclient.HostConfig{
|
||||
Binds: []string{"/var/run/docker.sock:/var/run/docker.sock"},
|
||||
Binds: []string{"/var/run/docker.sock:/var/run/docker.sock"},
|
||||
MemorySwappiness: -1,
|
||||
},
|
||||
Volumes: map[string]struct{}{
|
||||
"/var/run/docker.sock": struct{}{},
|
||||
|
@ -410,7 +411,8 @@ func (e *engine) runJobNotify(r *Task, client dockerclient.Client) error {
|
|||
Cmd: args,
|
||||
Env: e.envs,
|
||||
HostConfig: dockerclient.HostConfig{
|
||||
Binds: []string{"/var/run/docker.sock:/var/run/docker.sock"},
|
||||
Binds: []string{"/var/run/docker.sock:/var/run/docker.sock"},
|
||||
MemorySwappiness: -1,
|
||||
},
|
||||
Volumes: map[string]struct{}{
|
||||
"/var/run/docker.sock": struct{}{},
|
||||
|
|
Loading…
Reference in a new issue