Files
andrius-asterisk/docker-entrypoint.sh
2016-05-10 14:16:03 +01:00

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