compose.yaml 176 B

12345678910
  1. services:
  2. ping:
  3. image: alpine
  4. init: true
  5. command: ping localhost -c ${REPEAT:-1}
  6. hello:
  7. image: alpine
  8. command: echo hello
  9. deploy:
  10. replicas: 2