976850fc00
Signed-off-by: Andriy Moroz <c_andriym@mellanox.com>
11 lines
187 B
Bash
Executable File
11 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DOCKER_EXEC_FLAGS="i"
|
|
|
|
# Determine whether stdout is on a terminal
|
|
if [ -t 1 ] ; then
|
|
DOCKER_EXEC_FLAGS+="t"
|
|
fi
|
|
|
|
docker exec -$DOCKER_EXEC_FLAGS pmon $(basename $0) "$@"
|