- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Docker/コマンド/docker-compose/CPUやメモリーリソースを制限 Ver2系 へ行く。
- 1 (2020-09-22 (火) 03:30:10)
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'