buildx/hack/demo-env/entrypoint.sh
Tonis Tiigi 5b5dafde0d hack: make tmux optional for shell
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
2019-03-22 19:34:24 -07:00

18 lines
237 B
Bash
Executable File

#!/bin/sh
dockerdCmd="dockerd -s overlay2 -D"
if [ -n "$TMUX_ENTRYPOINT" ]; then
tmux new -s demo -d
tmux new-window "$dockerdCmd"
tmux new-window
tmux a -t demo
else
( $dockerdCmd 2>/var/log/dockerd.log & )
exec sh
fi