
docker
咸鱼酱
没有
展开
-
docker: mange docker as a non-root user
When first installing docker, you will find it requires root priority for even docker run operation. So you should create a group for non-root users to run their code. https://docs.docker.com/install...原创 2018-11-01 04:31:59 · 974 阅读 · 0 评论 -
docker: delete operation
kill all running containers docker kill $(docker ps -q) delete all stopped containers docker rm $(docker ps -a -q) delete all images docker rmi $(docker images -q)原创 2018-11-01 04:35:39 · 445 阅读 · 0 评论 -
docker: deploy a deep learning environment manually
Since currently a server is shared between numerous lab members, I usually need to run my code with non-root environment. All too often, I find it is indispensable to install new packages and polish t...原创 2018-11-01 06:39:57 · 238 阅读 · 0 评论 -
docker: user namespace
One of the problem I met yesterday is that I add my user on GPU server to the docker group and run a DL docker container. Although I once firmly believed that the root in docker is virtual for the rea...原创 2018-11-16 05:25:44 · 410 阅读 · 0 评论