Intro::docker-compose에서의 메모리 관리에 대해 알아봅시다. 버전 3이상(docker swarm 포함)services: service: image: nginx deploy: resources: limits:# 서비스 제한 사항 cpus: 0.50 memory: 512M # 컨테이너의 메모리를 의미 reservations:# 예약 사항 cpus: 0.25 memory: 128M References::
Loading Comments...