1
0
Fork 0
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:
Anthony Lapenna 2017-02-11 09:32:34 +13:00 committed by GitHub
parent 3089268d88
commit e0b94e4ff7
2 changed files with 6 additions and 2 deletions

View file

@ -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 = [];