#author("2020-09-22T03:30:10+09:00","default:ryuichi","ryuichi")
* CPUやメモリーリソースを制限 Ver2系 [#f215fd8c]

*** Dockerfile [#jd091e92]

 FROM ubuntu
 
 RUN apt-get update && apt-get install -y \
   stress
 
 CMD stress --cpu 8 --timeout 20

*** docker-compose.yml [#bede3b9c]

 version: '2.4'
 services:
   myst:
     image: stress
     container_name: myst
     tty: true
     stdin_open: true
     cpus: '0.1'


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS