文章分类 -  docker

1 2 下一页

Cannot build docker
摘要:Issue: Sending build context to Docker daemon 14.85kBError response from daemon: no build stage in current context Solution: https://stackoverflow.com 阅读全文

posted @ 2022-08-05 00:06 cdekelon 阅读(112) 评论(0) 推荐(0) 编辑

dockerfile arg docker build
摘要:https://www.runoob.com/docker/docker-build-command.html https://yeasy.gitbook.io/docker_practice/image/dockerfile/arg https://blog.csdn.net/xixihahale 阅读全文

posted @ 2022-05-01 16:20 cdekelon 阅读(18) 评论(0) 推荐(0) 编辑

WSL Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
摘要:https://stackoverflow.com/questions/61592709/docker-not-running-on-ubuntu-wsl-due-to-error-cannot-connect-to-the-docker-daemo In WSL, sudo -s -H # doc 阅读全文

posted @ 2021-12-07 22:38 cdekelon 阅读(704) 评论(0) 推荐(0) 编辑

docker使用GPU总结 nvidia-docker的安装 runtime=nvidia的使用
摘要:https://blog.csdn.net/weixin_43975924/article/details/104046790 https://blog.csdn.net/qq_37674858/article/details/92630775 gpus all 阅读全文

posted @ 2021-11-09 22:21 cdekelon 阅读(500) 评论(0) 推荐(0) 编辑

docker api socker unix:///var/run/docker.sock
摘要:https://docker-py.readthedocs.io/en/1.2.1/api/ https://docker-py.readthedocs.io/en/1.5.0/api/ https://serverfault.com/questions/843296/how-do-i-expose 阅读全文

posted @ 2021-08-11 12:32 cdekelon 阅读(73) 评论(0) 推荐(0) 编辑

docker commit
摘要:$ docker run --runtime=nvidia -it <your_old_docker> /bin/bash install your lib open another shell, and run “$ docker ps” to check the container id $ d 阅读全文

posted @ 2021-07-06 10:37 cdekelon 阅读(19) 评论(0) 推荐(0) 编辑

System has not been booted with systemd as init system (PID 1). Can't operate.
摘要:https://www.cnblogs.com/infoo/p/11900607.html https://www.google.com.hk/search?q=systemctl+start+docker+System+has+not+been+booted+with+systemd+as+ini 阅读全文

posted @ 2021-06-25 08:16 cdekelon 阅读(610) 评论(0) 推荐(0) 编辑

Install singularity
摘要:Useful guide for 3.7 version: https://sylabs.io/guides/3.7/user-guide/quick_start.htmlold version: https://sylabs.io/guides/3.5/admin-guide/admin_quic 阅读全文

posted @ 2021-06-24 17:02 cdekelon 阅读(615) 评论(0) 推荐(0) 编辑

docker in docker? https://itnext.io/docker-in-docker-521958d34efd https://jpetazzo.github.io/2015/09/03/do-not-use-docker-in-docker-for-ci/
摘要:https://itnext.io/docker-in-docker-521958d34efd https://jpetazzo.github.io/2015/09/03/do-not-use-docker-in-docker-for-ci/ https://stackoverflow.com/qu 阅读全文

posted @ 2021-06-24 15:26 cdekelon 阅读(20) 评论(0) 推荐(0) 编辑

exec: "nvidia-smi": executable file not found in $PATH: unknown
摘要:https://github.com/NVIDIA/nvidia-docker/issues/1382 https://github.com/NVIDIA/nvidia-docker/issues/457 https://github.com/NVIDIA/nvidia-docker/issues/ 阅读全文

posted @ 2021-06-17 15:46 cdekelon 阅读(926) 评论(0) 推荐(0) 编辑

unknown flag: --gpus See 'docker run --help'
摘要:need to update docker to 20.04 from 18.04 $ docker --version 阅读全文

posted @ 2021-06-06 00:12 cdekelon 阅读(3204) 评论(0) 推荐(0) 编辑

关于/var/run/docker.sock
摘要:https://blog.fundebug.com/2017/04/17/about-docker-sock/ https://blog.csdn.net/Nightwish5/article/details/105041428 ERROR: Cannot connect to the Docker 阅读全文

posted @ 2021-06-06 00:10 cdekelon 阅读(70) 评论(0) 推荐(0) 编辑

How To Install and Use Docker on Ubuntu 18.04
摘要:https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-18-04 How to install docker ce https://docs.docker.com/engine 阅读全文

posted @ 2021-06-05 13:30 cdekelon 阅读(41) 评论(0) 推荐(0) 编辑

How to install nvidia-docker2 (E: Unable to locate package nvidia-docker2, )
摘要:https://github.com/NVIDIA/nvidia-docker/issues/838 15 curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-key add - 16 distribution=$( 阅读全文

posted @ 2021-05-12 19:49 cdekelon 阅读(728) 评论(0) 推荐(0) 编辑

snap install or restart docker
摘要:$ sudo snap install docker2021-05-08T20:10:58-07:00 INFO Waiting for automatic snapd restart...docker 19.03.13 from Canonical✓ installed $ sudo snap r 阅读全文

posted @ 2021-05-09 15:44 cdekelon 阅读(885) 评论(0) 推荐(0) 编辑

Singularity v3
摘要:https://sylabs.io/guides/3.2/user-guide/quick_start.html 阅读全文

posted @ 2021-02-26 23:00 cdekelon 阅读(62) 评论(0) 推荐(0) 编辑

remove docker
摘要:docker rmi $(docker images |grep xxx) or docker rmi IMAGE ID 阅读全文

posted @ 2021-01-19 12:52 cdekelon 阅读(43) 评论(0) 推荐(0) 编辑

docker helloworld
摘要:$ docker run helloworld Firstly, check whether there is a user group for docker.$ sudo cat /etc/group | grep docker If not, then create the docker gro 阅读全文

posted @ 2021-01-08 11:39 cdekelon 阅读(51) 评论(0) 推荐(0) 编辑

docker rm -fv <CONTAINER ID>
摘要:if meet issue "8888 is allocated"Please$ sudo lsof -i -P -n | grep 8888$ sudo kill -9 <id>$ docker ps$ docker rm -fv 3da180bf6f70 阅读全文

posted @ 2021-01-04 23:29 cdekelon 阅读(168) 评论(0) 推荐(0) 编辑

"docker: Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post http://%2Fvar%2Frun%2Fdocker.sock/v1.40/containers/create
摘要:https://docs.docker.com/engine/install/linux-postinstall/ To manage Docker as a non-root user, follow the Docker Post-Installation Steps for Linux ins 阅读全文

posted @ 2020-12-31 11:26 cdekelon 阅读(138) 评论(0) 推荐(0) 编辑

1 2 下一页
< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8

导航

统计

点击右上角即可分享
微信分享提示