Re-add metamigo-cli docker-entrypoint.sh
This commit is contained in:
parent
74608d6fce
commit
f5f5016f3f
1 changed files with 18 additions and 0 deletions
18
apps/metamigo-cli/docker-entrypoint.sh
Normal file
18
apps/metamigo-cli/docker-entrypoint.sh
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [[ "$1" == "api" ]]; then
|
||||||
|
echo "docker-entrypoint: starting api server"
|
||||||
|
./cli db -- migrate
|
||||||
|
exec dumb-init ./cli api
|
||||||
|
elif [[ "$1" == "worker" ]]; then
|
||||||
|
echo "docker-entrypoint: starting worker"
|
||||||
|
exec dumb-init ./cli worker
|
||||||
|
elif [[ "$1" == "cli" ]]; then
|
||||||
|
echo "docker-entrypoint: starting frontend"
|
||||||
|
shift 1
|
||||||
|
exec ./cli "$@"
|
||||||
|
else
|
||||||
|
echo "docker-entrypoint: missing argument, one of: api, worker, frontend, cli"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
Loading…
Add table
Add a link
Reference in a new issue