deps.yaml 211 B

12345678910111213
  1. services:
  2. service_a:
  3. image: bash
  4. command: echo "a"
  5. depends_on:
  6. - shared_dep
  7. service_b:
  8. image: bash
  9. command: echo "b"
  10. depends_on:
  11. - shared_dep
  12. shared_dep:
  13. image: bash