First version

This commit is contained in:
Torsten Raudssus 2024-12-13 06:33:32 +01:00
commit 02365a6379
5 changed files with 525 additions and 0 deletions

23
docker-entrypoint.sh Executable file
View 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