feat(container-console): add the ability to select ash (#1790)

Add /bin/ash as another dropbox option in addition to bash and sh
pull/1791/head
Shahar Hadas 2018-04-06 11:43:08 +03:00 committed by Anthony Lapenna
parent dca1976252
commit 216d6c2b14
1 changed files with 1 additions and 0 deletions

View File

@ -22,6 +22,7 @@
<i class="fab fa-windows" aria-hidden="true" ng-if="imageOS == 'windows'"></i>
</span>
<select class="form-control" ng-model="formValues.command" id="command">
<option value="ash" ng-if="imageOS == 'linux'">/bin/ash</option>
<option value="bash" ng-if="imageOS == 'linux'">/bin/bash</option>
<option value="sh" ng-if="imageOS == 'linux'">/bin/sh</option>
<option value="powershell" ng-if="imageOS == 'windows'">powershell</option>