docker的参数配置
进入容器
docker的容器也算是个操作系统
如何通过shell与该容器进行交互呢 : docker官方提供了命令 ,但是不好用
下载网友提供的脚本进入容器
wget -P ~ https://github.com/yeasy/docker_practice/raw/master/_local/.bashrc_docker |
安装完成后即可使用
docker-enter 名称或id
docker 设置加速器 修改容器存储位置
编辑
vi /etc/docker/daemon.json
{ "graph": "/mnt/docker-data", "registry-mirrors": ["https://pee6w651.mirror.aliyuncs.com"] } |
graph:镜像与容器的保存位置
registry-mirrors: 国内的镜像加速器
该daemon.json的更多参数
参考: https://docs.docker.com/engine/reference/commandline/dockerd//#daemon-configuration-file