mirror of https://github.com/portainer/portainer
19 lines
623 B
JavaScript
19 lines
623 B
JavaScript
function VolumeViewModel(data) {
|
|
this.Id = data.Name;
|
|
this.Driver = data.Driver;
|
|
this.Options = data.Options;
|
|
this.Labels = data.Labels;
|
|
if (this.Labels && this.Labels['com.docker.compose.project']) {
|
|
this.StackName = this.Labels['com.docker.compose.project'];
|
|
} else if (this.Labels && this.Labels['com.docker.stack.namespace']) {
|
|
this.StackName = this.Labels['com.docker.stack.namespace'];
|
|
}
|
|
this.Mountpoint = data.Mountpoint;
|
|
|
|
if (data.Portainer) {
|
|
if (data.Portainer.ResourceControl) {
|
|
this.ResourceControl = new ResourceControlViewModel(data.Portainer.ResourceControl);
|
|
}
|
|
}
|
|
}
|