104 字
1 分钟
Docker 配置
2023-06-04

设置容器自启#

docker update --restart=unless-stopped CONTAINER_NAME

容器资源限制#

Shell 方式#

在运行容器时,可以使用 -m--memory 选项来限制容器的内存使用。

docker run -it -m 100m ubuntu bash

你也可以使用 --cpus 选项来限制容器的 CPU 使用。例如,以下命令将 CPU 使用限制为 0.5:

docker run -it --cpus 0.5 ubuntu bash

Docker Compose#

version: '3'
services:
  web:
    image: ubuntu
    command: bash
    deploy:
      resources:
        limits:
          cpus: '0.5'
          memory: 100M
Docker 配置
https://blog.lpkt.cn/posts/docker-conf/
作者
lollipopkit
发布于
2023-06-04
许可协议
CC BY-NC-SA 4.0