Docker-compose cant reach second command
I have my docker-compose.yaml file like this: version: "3" services: app: build: context: . dockerfile: Dockerfile ports: - "8000:8000" volumes: - ./app:/app command: > sh -c "python manage.py runserver 0.0.0.0:8000" sh -c "python simple_script.py" and the problem is that when…