0 votes
in JSON by
edited by

Using Docker-Compose, how to execute multiple commands in YAML?

I want to do something like this where I can run multiple commands in order.

db:
  image: postgres
web:
  build: .
  command: python manage.py migrate
  command: python manage.py runserver 0.0.0.0

1 Answer

0 votes
by

Figured it out, use bash -c.

Example:

command: bash -c "python manage.py migrate && python manage.py runserver 0.0.0.0:8000"

Same example in multilines:

command: >
    bash -c "python manage.py migrate
    && python manage.py runserver 0.0.0.0:8000"

Or:

command: bash -c "
    python manage.py migrate
    && python manage.py runserver 0.0.0.0:8000
  "

Related questions

0 votes
asked Jan 5, 2021 in JSON by GeorgeBell
0 votes
asked Jan 14, 2021 in JSON by RShastri
...