github.com/containers/podman/v5@v5.1.0-rc1/hack/perf/create.sh (about)

     1  #!/usr/bin/env sh
     2  source ./helpers.bash
     3  
     4  setup
     5  echo_bold "Create $RUNS containers"
     6  hyperfine --warmup 10 --runs $RUNS \
     7  	"$ENGINE_A create $IMAGE" \
     8  	"$ENGINE_B create $IMAGE"
     9  
    10  # Clean up
    11  $ENGINE_A system prune -f >> /dev/null
    12  $ENGINE_B system prune -f >> /dev/null