Docker – Build a service after the dependant service is up and running
I have a docker-compose file for a Django application. Below is the structure of my docker-compose.yml version: '3.8' volumes: pypi-server: services: backend: command: "bash ./install-ppr_an_run_dphi.sh" build: context: ./backend dockerfile: ./Dockerfile volumes: - ./backend:/usr/src/app expose: - 8000:8000 depends_on: - db pypi-server:…