10 lines
142 B
Bash
Executable File
10 lines
142 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$1" = "" ]; then
|
|
# This works if CMD is empty or not specified in Dockerfile
|
|
exec asterisk -vvvdddc
|
|
else
|
|
exec "$@"
|
|
fi
|
|
|