compose.yaml 335 B

12345678910111213141516171819
  1. services:
  2. running:
  3. image: alpine
  4. command: sleep infinity
  5. init: true
  6. exit:
  7. image: alpine
  8. command: /bin/true
  9. depends_on:
  10. running:
  11. condition: service_started
  12. fail:
  13. image: alpine
  14. command: sh -c "return 111"
  15. depends_on:
  16. exit:
  17. condition: service_completed_successfully