You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# there's a lot of commands we expect Bash to have, but that it might not due to compilation quirks
5
+
# see https://github.com/tianon/docker-bash/pull/45
6
+
# and https://www.gnu.org/software/bash/manual/html_node/Optional-Features.html#:~:text=unless%20the%20operating%20system%20does%20not%20provide%20the%20necessary%20support
7
+
8
+
image="$1"
9
+
10
+
args=( --rm --interactive )
11
+
if [ -t 0 ] && [ -t 1 ];then
12
+
args+=( --tty )
13
+
fi
14
+
15
+
docker run "${args[@]}""$image" -Eeuo pipefail -xc '
0 commit comments