compose.yaml 252 B

1234567891011
  1. services:
  2. simple:
  3. image: alpine
  4. command: sh -c "sleep infinity"
  5. another:
  6. image: alpine
  7. command: sh -c "sleep 0.1 && echo world && /bin/false"
  8. deploy:
  9. restart_policy:
  10. condition: "on-failure"
  11. max_attempts: 2