1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-10 16:25:22 +02:00

fix(container): delete Mounts field from HostConfig object EE-5387 (#9000)

This commit is contained in:
cmeng 2023-05-29 09:01:38 +12:00 committed by GitHub
parent 652bd35dc0
commit 564909d371
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -117,6 +117,7 @@ angular.module('portainer.docker').factory('ContainerHelper', [
}
}
config.HostConfig.Binds = binds;
config.HostConfig.Mounts = null;
config.Volumes = volumes;
return config;
};