First version
This commit is contained in:
commit
02365a6379
5 changed files with 525 additions and 0 deletions
23
docker-entrypoint.sh
Executable file
23
docker-entrypoint.sh
Executable file
|
@ -0,0 +1,23 @@
|
|||
#!/bin/bash
|
||||
|
||||
export IP=$( hostname -i )
|
||||
|
||||
cat <<EOF
|
||||
__ _
|
||||
___ _ ____ __/ /__ _ __ _____ ____ _(_)
|
||||
/ __| '__\\ \\ / / / __| '__/ _ \\ \\ /\\ / / _\` | |
|
||||
\\__ \\ | \\ V / / (__| | | __/\\ V V / (_| | |
|
||||
|___/_| \\_/_/ \\___|_| \\___| \\_/\\_/ \\__,_|_|
|
||||
|
||||
-------------------------------------------------
|
||||
IP: $IP
|
||||
|
||||
EOF
|
||||
|
||||
if [[ $1 == "composio" ]]; then
|
||||
exec $@
|
||||
elif [[ $1 == "bash" ]]; then
|
||||
exec $@
|
||||
else
|
||||
exec crewai $@
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue