1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 13:55:21 +02:00

Fix start container form model

This commit is contained in:
Michael Crosby 2013-06-14 16:46:41 -09:00
parent fde898aa1f
commit a2a8c4863f
3 changed files with 21 additions and 18 deletions

View file

@ -9,17 +9,16 @@
<legend>Start container from Image</legend>
<label>Cmd:</label>
<textarea ng-model="commands" rows="6"></textarea>
<small>Place each command on a new line</small>
<input type="text" placeholder="{{ commandPlaceholder }}" ng-model="config.commands"/>
<small>Input commands as an array</small>
<label>Memory:</label>
<input type="number" ng-model="memory"/>
<input type="number" ng-model="config.memory"/>
<label>Memory Swap:</label>
<input type="number" ng-model="memorySwap"/>
<input type="number" ng-model="config.memorySwap"/>
<label>Volumes From:</label>
<input type="text" ng-model="volumesFrom"/>
<input type="text" ng-model="config.volumesFrom"/>
<br />
<input type="button" ng-click="launchContainer()" value="Launch" />