2023-05-03 Troubleshoot 错误缩进导致docker-compose up 报错 OCI runtime create failed: wrong rlimit value when trying to set mem_limit 从网上拷贝docker-compose配置时,错误把mem_limit写到ulimits节里面,导致错误。 12345ulimits: memlock: soft: -1 hard: -1 mem_limit: 1g 修改为如下结构后,问题解决。 12345ulimits: memlock: soft: -1 hard: -1mem_limit: 1g 前一篇 Ubuntu安装net-tools报错:E: Unable to locate package net-tools 后一篇 pip install dlib报错:cmake must be installed to build the following extensions _dlib_pybind11 windows