deps.yaml 226 B

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