compose.yaml 342 B

1234567891011121314151617
  1. services:
  2. a:
  3. image: nginx:alpine
  4. ports: [80]
  5. healthcheck:
  6. test: wget --spider -S -T1 http://localhost:80
  7. interval: 1s
  8. timeout: 1s
  9. b:
  10. image: nginx:alpine
  11. ports: [80]
  12. depends_on:
  13. - a
  14. healthcheck:
  15. test: wget --spider -S -T1 http://localhost:80
  16. interval: 1s
  17. timeout: 1s