We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dec35c5 commit a986bb3Copy full SHA for a986bb3
ci/container/container-run.sh
@@ -89,7 +89,7 @@ done
89
90
if [ $# -eq 0 ]; then
91
# if no command is specified, create an interactive shell
92
- PODMAN_RUN_ARGS+=( -i -t ) # also assumes tty
+ PODMAN_RUN_ARGS+=(-i -t) # also assumes tty
93
if [ -z "${USHELL:-}" ] || [ "$USHELL" == "bash" ]; then
94
# bit of a hack: we source the completion by passing it as an rcfile.
95
# The completion itself requires `.bazelversion` to exist.
@@ -143,7 +143,7 @@ USER=$(whoami)
143
144
PODMAN_RUN_ARGS=(
145
-w "$WORKDIR"
146
- --rm # remove container after it ran
+ --rm # remove container after it ran
147
--log-driver=none # by default podman logs all of stdout to the journal which is resource-consuming and wasteful
148
149
-u "ubuntu:ubuntu"
0 commit comments