Fügen Sie den Befehl Bash in die Docker-Compose-Datei ein
# -c flag indicates to read from string. Combine with &&
command: >
bash -c "python manage.py makemigrations
&& python manage.py migrate
&& python manage.py runserver 0.0.0.0:8000"
RicarHincapie