How to run shell command after gunicorn service? this is for docker enterypoint.sh file
Below is my docker enterypoint.sh file code #!/bin/bash set -e python3 test1.py gunicorn -b 0.0.0.0:8000 "app:app" --workers=1 --threads=10 --timeout=3600 node /home/test2.js I want to run test2.js nodejs app after gunicorn service starts because test2.js required to connect with localhost:8000. Please…