CPUやメモリーリソースを制限 Ver2系

Dockerfile

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

docker-compose.yml

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

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