diff --git a/app/docker/components/datatables/networks-datatable/networksDatatable.html b/app/docker/components/datatables/networks-datatable/networksDatatable.html
index 7e88a2549..afb808ce8 100644
--- a/app/docker/components/datatables/networks-datatable/networksDatatable.html
+++ b/app/docker/components/datatables/networks-datatable/networksDatatable.html
@@ -55,6 +55,20 @@
+
+
+ Attachable
+
+
+
+ |
+
+
+ Internal
+
+
+
+ |
IPAM Driver
@@ -104,6 +118,8 @@
| {{ item.StackName ? item.StackName : '-' }} |
{{ item.Scope }} |
{{ item.Driver }} |
+ {{ item.Attachable }} |
+ {{ item.Internal }} |
{{ item.IPAM.Driver }} |
{{ item.IPAM.Config[0].Subnet ? item.IPAM.Config[0].Subnet : '-' }} |
{{ item.IPAM.Config[0].Gateway ? item.IPAM.Config[0].Gateway : '-' }} |
diff --git a/app/docker/models/network.js b/app/docker/models/network.js
index 744f10061..da60a10af 100644
--- a/app/docker/models/network.js
+++ b/app/docker/models/network.js
@@ -4,6 +4,7 @@ function NetworkViewModel(data) {
this.Scope = data.Scope;
this.Driver = data.Driver;
this.Attachable = data.Attachable;
+ this.Internal = data.Internal;
this.IPAM = data.IPAM;
this.Containers = data.Containers;
this.Options = data.Options;
diff --git a/app/docker/views/networks/edit/network.html b/app/docker/views/networks/edit/network.html
index 08db62c3f..f22562163 100644
--- a/app/docker/views/networks/edit/network.html
+++ b/app/docker/views/networks/edit/network.html
@@ -31,6 +31,14 @@
Scope |
{{ network.Scope }} |
+
+ Attachable |
+ {{ network.Attachable }} |
+
+
+ Internal |
+ {{ network.Internal }} |
+
Subnet |
{{ network.IPAM.Config[0].Subnet }} |