# DataExpressVerify **Repository Path**: ryzecode/DataExpressVerify ## Basic Information - **Project Name**: DataExpressVerify - **Description**: DataExpress性能验证项目 - **Primary Language**: NodeJS - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-09-13 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #DataExpressVerify ``` ---- #!/bin/sh for (( i = 1; i <= 150; i++)); do if(($i<10)); then docker run -d -p 300$i:3000 data-express-verify; fi; if (($i>=10 && $i<100)); then docker run -d -p 30$i:3000 data-express-verify; fi; if (($i>=100)); then docker run -d -p 3$i:3000 data-express-verify; fi; #docker run -d -p $j:3000 data-express-verify; done; ---- docker stop `docker ps -a --filter "ancestor=data-express-verify"` --- docker build --rm --no-cache=true -t data-express-verify . docker run -p 3000:3000 data-express-verify ```