docker cannot allocate memory
记录一个很简单的 nexus docker 搭建问题cannot allocate memory以下为操作步骤查找镜像docker search nexus选取使用次数较多是镜像 拉取镜像docker pull sonatype/nexus3查看拉取的镜像docker images启动容器docker run -id --privileged=true --na...
·
记录一个很简单的 nexus docker 搭建
-
环境 VM Centsos7
-
问题 cannot allocate memory
-
解决 关机重新分配VM虚拟机内存后解决
以下为操作步骤
查找镜像
docker search nexus
选取使用次数较多是镜像 拉取镜像
docker pull sonatype/nexus3
查看拉取的镜像
docker images
启动容器
docker run -id --privileged=true --name=nexus3 --restart=always -p 8081:8081 -v /home/nexus-data:/var/nexus-data sonatype/nexus3(这个是容器id或名称)
反复操作
docker stop nexus3
docker rm nexus3
更多推荐
已为社区贡献1条内容
所有评论(0)