mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49:41 +02:00
feat(templates): add support for the network field (#583)
This commit is contained in:
parent
3089268d88
commit
e0b94e4ff7
2 changed files with 6 additions and 2 deletions
|
@ -5,6 +5,7 @@ function TemplateViewModel(data) {
|
|||
this.Image = data.image;
|
||||
this.Registry = data.registry ? data.registry : '';
|
||||
this.Command = data.command ? data.command : '';
|
||||
this.Network = data.network ? data.network : '';
|
||||
this.Env = data.env ? data.env : [];
|
||||
this.Volumes = data.volumes ? data.volumes : [];
|
||||
this.Ports = [];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue