Home > Blockchain >  How to execute mulitple commands in single line linux (openshift / docker )
How to execute mulitple commands in single line linux (openshift / docker )

Time:10-13

I'm looking for a way to run django server and celery in single line. The services (django and celery) are deployed in openshift as two separate pods with same image and currently i'm running django service (pod) using python manage.py runserver and celery (pod) using celery -A myapp worker --loglevel=info --concurrency=8

instead of running separate pods for each, i want to execute the runserver command and celery worker command together. How to do that.

I know && ; || is used for such scenarios. but those doesn't work.

for example :

cd ./app && python manage.py runserver  #this works

cd ./app && python manage.py runserver && celery -A myapp worker --loglevel=info --concurrency=8
#this will cd to app, execute runserver command. but celery command doesn't get executed.

CodePudding user response:

create a bash file and add in it the two commands like this :

python manage.py runserver &
celery -A myapp worker --loglevel=info --concurrency=8

make it executable with "chmod x"

and run it in your docker container with bash my_file.sh

  • Related