Files
romm/docker/init_scripts/init
2023-08-09 15:19:56 +02:00

17 lines
224 B
Bash
Executable File

#!/bin/bash
# Run migrations and start uvicorn
/init_back &
# Start nginx
/init_front &
# Start rq worker
# /init_worker &
# Wait for any process to exit
wait -n
# Exit with status of process that exited first
exit $?