You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/docker/components/volumesNFSForm/volumesNFSFormModel.js

9 lines
241 B

export function VolumesNFSFormData() {
this.useNFS = false;
this.serverAddress = '';
this.mountPoint = '';
this.version = 'NFS4';
this.options = 'rw,noatime,rsize=8192,wsize=8192,tcp,timeo=14';
this.versions = ['NFS4', 'NFS'];
}