1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-04-04 19:30:45 +02:00

Merge pull request from jpetazzo/dasht-only-if-tty

Only add `-t` if stdin is a tty
This commit is contained in:
Jessie Frazelle 2015-08-05 00:52:37 -07:00
commit 2cb39c1938

6
bashrc

@ -32,7 +32,11 @@ command_not_found_handle () {
fi fi
done done
docker run -ti -u $(whoami) -w "$HOME" \ # Check if we are on a tty to decide whether to allocate one
DASHT=
tty -s && DASHT=-t
docker run $DASHT -i -u $(whoami) -w "$HOME" \
$(env | cut -d= -f1 | awk '{print "-e", $1}') \ $(env | cut -d= -f1 | awk '{print "-e", $1}') \
$DEVICES $VOLUMES \ $DEVICES $VOLUMES \
-v /etc/passwd:/etc/passwd:ro \ -v /etc/passwd:/etc/passwd:ro \