mirror of https://github.com/portainer/portainer
feat(stacks): add ref to stack.env [EE-5145] (#8872)
parent
83551201fb
commit
dc5f866a24
|
@ -63,7 +63,7 @@
|
|||
|
||||
<environment-variables-panel
|
||||
ng-model="$ctrl.formValues.Env"
|
||||
explanation="These values will be used as substitutions in the stack file"
|
||||
explanation="These values will be used as substitutions in the stack file. To reference the .env file in your compose file, use ‘stack.env’."
|
||||
on-change="($ctrl.onChangeEnvVar)"
|
||||
show-help-message="true"
|
||||
></environment-variables-panel>
|
||||
|
|
|
@ -152,7 +152,11 @@
|
|||
</div>
|
||||
|
||||
<!-- environment-variables -->
|
||||
<environment-variables-panel ng-model="formValues.Env" explanation="These values will be used as substitutions in the stack file" on-change="(handleEnvVarChange)">
|
||||
<environment-variables-panel
|
||||
ng-model="formValues.Env"
|
||||
explanation="These values will be used as substitutions in the stack file. To reference the .env file in your compose file, use ‘stack.env’"
|
||||
on-change="(handleEnvVarChange)"
|
||||
>
|
||||
</environment-variables-panel>
|
||||
<!-- !environment-variables -->
|
||||
<por-access-control-form form-data="formValues.AccessControlData"></por-access-control-form>
|
||||
|
|
|
@ -182,7 +182,7 @@
|
|||
<div ng-if="stack">
|
||||
<environment-variables-panel
|
||||
ng-model="formValues.Env"
|
||||
explanation="These values will be used as substitutions in the stack file"
|
||||
explanation="These values will be used as substitutions in the stack file. To reference the .env file in your compose file, use ‘stack.env’."
|
||||
on-change="(handleEnvVarChange)"
|
||||
show-help-message="true"
|
||||
></environment-variables-panel>
|
||||
|
|
Loading…
Reference in New Issue