mirror of https://github.com/portainer/portainer
27 lines
680 B
HTML
27 lines
680 B
HTML
|
|
<div>
|
|
{{ response }}
|
|
</div>
|
|
|
|
|
|
<form>
|
|
<fieldset>
|
|
<legend>Start container from Image</legend>
|
|
|
|
<label>Cmd:</label>
|
|
<input type="text" placeholder="{{ commandPlaceholder }}" ng-model="config.commands"/>
|
|
<small>Input commands as an array</small>
|
|
<label>Memory:</label>
|
|
<input type="number" ng-model="config.memory"/>
|
|
|
|
<label>Memory Swap:</label>
|
|
<input type="number" ng-model="config.memorySwap"/>
|
|
|
|
<label>Volumes From:</label>
|
|
<input type="text" ng-model="config.volumesFrom"/>
|
|
|
|
<br />
|
|
<input type="button" ng-click="launchContainer()" value="Launch" />
|
|
</fieldset>
|
|
</form>
|