1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 07:49:41 +02:00

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

Add /bin/ash as another dropbox option in addition to bash and sh
This commit is contained in:
Shahar Hadas 2018-04-06 11:43:08 +03:00 committed by Anthony Lapenna
parent dca1976252
commit 216d6c2b14

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>