Docker
一些命令和脚本¶
- 更新用户组 newgrp docker ,不然你新加的用户还是不能执行docker
- 删除所有 None 镜像
docker rmi -f $(docker images -f "dangling=true" -q)
- 删除所有运行中镜像 docker rm -f $(docker ps -aq)
- docker ubuntu 安装脚本
sudo apt-get install -y\
apt-transport-https \
ca-certificates \
curl \
software-properties-common &&
curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add - &&
sudo add-apt-repository \
"deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu \
$(lsb_release -cs) \
stable" &&
sudo apt-get update &&
sudo apt-get install -y docker-ce
sudo echo -e "{\n
\"registry-mirrors\": [\"https://docker.mirrors.ustc.edu.cn/\"]
}" >/etc/docker/daemon.json
sudo systemctl restart docker
- 或者
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
{
"registry-mirrors" : [
"http://hub-mirror.c.163.com"
]
}
- docker 监听 tcp,打开 api
# 查看配置文件位于哪里
systemctl show --property=FragmentPath docker
#编辑配置文件内容,接收所有ip请求
sudo vim /lib/systemd/system/docker.service
ExecStart=/usr/bin/dockerd -H unix:///var/run/docker.sock -H tcp://0.0.0.0:2376
#重新加载配置文件,重启docker daemon
sudo systemctl daemon-reload
sudo systemctl restart docker
-
docker proxy set https://docs.docker.com/network/proxy/
if [ ! -d "/etc/systemd/system/docker.service.d/" ]; then mkdir /etc/systemd/system/docker.service.d/ fi echo '[Service] Environment="HTTP_PROXY=http://192.168.100.27:7890" "HTTPS_PROXY=http://192.168.100.27:7890" "NO_PROXY=localhost,127.0.0.1"' > /etc/systemd/system/docker.service.d/http-proxy.conf systemctl daemon-reload systemctl restart docker
-
利用 ssh 转发 unix sock
ssh -nNT -L /tmp/docker.sock:/var/run/docker.sock <USER>@<IP> &
export DOCKER_HOST=unix:///tmp/docker.sock # docker client will communicate with this sock
常用启动命令¶
- sage
docker run -d --restart=always --name=sagemath0 --net=host -v /root/work/math/:/math/ sagemath/sagemath sage --notebook=jupyter --ip 0.0.0.0
本页面的全部内容在 CC BY-NC-SA 4.0 协议之条款下提供,附加条款亦可能应用。