docker-stress
docker-stress copied to clipboard
Docker container for generating workload stress
Hi, Given the current base image (ubuntu:trusty) is already multi-arch and supports arm64/v8, would it be possible to build docker-stress with arm64 support as well? Stress tool is also available...
Running ``` docker run --rm -it progrium/stress --cpu 2 --io 1 --vm 2 --vm-bytes 128M --timeout 10s ``` gives ``` Image docker.io/progrium/stress:latest uses outdated schema1 manifest format. Please upgrade to...
Hi, how do i pass args (e.g. --cpu 2 --io 1) in a docker-compose.yml ? version: '2' services: app01: image: progrium/stress cpu: 2 io: 1 vm: 2 vm-bytes: 128M timeout:...