docker-compose.yml 197 B

1234567
  1. simple:
  2. image: busybox:latest
  3. command: sh -c "echo hello && tail -f /dev/null"
  4. another:
  5. image: busybox:latest
  6. command: sh -c "sleep 2 && echo world && /bin/false"
  7. restart: "on-failure:2"