diff --git a/app/components/container/container.html b/app/components/container/container.html
index f3dd69639..2608d9323 100644
--- a/app/components/container/container.html
+++ b/app/components/container/container.html
@@ -241,7 +241,7 @@
-
+
@@ -249,14 +249,15 @@
- Host |
- Container |
+ Host/volume |
+ Path in container |
-
- {{ vol|key: ':' }} |
- {{ vol|value: ':' }} |
+
+ {{ vol.Source }} |
+ {{ vol.Name }} |
+ {{ vol.Destination }} |
diff --git a/app/models/docker/containerDetails.js b/app/models/docker/containerDetails.js
index 63945ff41..eae58c105 100644
--- a/app/models/docker/containerDetails.js
+++ b/app/models/docker/containerDetails.js
@@ -9,6 +9,7 @@ function ContainerDetailsViewModel(data) {
this.Image = data.Image;
this.Config = data.Config;
this.HostConfig = data.HostConfig;
+ this.Mounts = data.Mounts;
if (data.Portainer) {
if (data.Portainer.ResourceControl) {
this.ResourceControl = new ResourceControlViewModel(data.Portainer.ResourceControl);