1
resposta

Vários comandos no parâmetro command do docker-compose.yml

Gostaria de saber como faço para adicionar vários comandos no parâmetro command, meu código está assim:

    command: python manage.py makemigrations && python manage.py migrate && python manage.py collectstatic && python manage.py runserver 0.0.0.0:8000

Quando acesso o log do container ele retorna:

No installed app with label 'collectstatic'.
No installed app with label 'runserver'.
No installed app with label '0.0.0.0:8000'.
No installed app with label 'manage.py'.
No installed app with label '&&'.
No installed app with label 'python'.
No installed app with label 'migrate'.
1 resposta

Opa!

Antes de rodar os comandos tente verificar/confirmar a instalação do python

command: shell apt-get install python

Abraço.