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

Add ability to launch container from image

This commit is contained in:
Michael Crosby 2013-06-09 17:16:37 -09:00
parent 406f06cb3e
commit 880966f3ba
3 changed files with 75 additions and 0 deletions

View file

@ -0,0 +1,27 @@
<div>
{{ response }}
</div>
<form>
<fieldset>
<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>
<label>Memory:</label>
<input type="number" ng-model="memory"/>
<label>Memory Swap:</label>
<input type="number" ng-model="memorySwap"/>
<label>Volumes From:</label>
<input type="text" ng-model="volumesFrom"/>
<br />
<input type="button" ng-click="launchContainer()" value="Launch" />
</fieldset>
</form>