Docker
-
docker 常用命令
1、容器 docker build -t friendlyname .# 使用此目录的 Dockerfile 创建镜像 docker run -p 4000:80 friendlyname # 运行端口 4000 到 90 的“友好名称”映射 docker run -d -p 4000:80 friendlyname # 内容相同,但在分离模式下 docke…
-
Docker集群管理portainer的使用
1.Slave主机docker需要开启2375端口 ubuntu: sudo vim /etc/default/docker DOCKER_OPTS=”-H=unix:///var/run/docker.sock -H=0.0.0.0:2375″ Centos: sudo vim /etc/sysconfig/docker other_args=’-Ht…
-
Docker容器常用命令汇总
Docker常用命令总结如下: # 查看docker详细信息 docker info # 获取当前节点所有容器 docker ps -a # 管理容器生命周期 docker [start|stop|restart] <containerID|containerName> # 查看容器日志 docker logs <contain…
-
查看docker服务状态
root用户使用#查看docker服务状态: systemctl status docker非root用户使用 #查看docker服务: sudo systemctl status docker
-
Docker实用技巧(二):容器与主机之间复制文件
使用 docker cp 命令,进行容器与主机之间的数据copy。 使用方法如下: 命令中的两个文件夹,是相当于把前面的复制到后面的。 实例: 主机root ~目录如下: 容器root ~目录如下: 其中容器已经打开: 【1】主机当前目录下的users文件夹拷贝到容器 主机如下命令: 容器中的变化: 【2】容器test文件夹拷贝到主机当前目录文件夹 总结: …
-
Docker实用技巧(一):镜像的备份/保存/加载/删除
首先需要理解,这里的镜像是指image,而container是容器,是image的一个启动。 镜像备份: 备份使用commit命令,相当于是将正在运行的container保存为一个image 使用方法如下: 实例: 最后跟的那个backup就相当于之后image的repository,当然这里也可以 backup:test,此时test就是tag。 运行im…
-
Docker 容器中搭建 nexus npm私库
1,版本 dockers :1.13.1 ;nexus 3 2,安装 docker pull liumiaocn/nexus 3,启动 项目 详细 Nexus UI 8081 private repo 8082 proxy repo 8083 URL http://192.168.20.71:8081/ docker run -d -p …
-
yum 安装docker后 无法启动
一,yum安装docker yum -y install docker 启动docker service docker start 报错: journalctl -xe Error starting daemon: SELinux is not supported with the overlay2 graph driver on this kernel. …
-
docker中tomcat日志输出自定义
一,默认tomcat日志配置文件 /data/tomcat/conf/logging.properties 1,修改tomcat/conf下的logging.properties [root@harbor conf]# cat logging.properties # Licensed to the Apache Software Foundation …
-
Docker容器启动报WARNING: IPv4 forwarding is disabled. Networking will not work
错误: 解决: cat /etc/sysctl.conf net.ipv4.ip_forward=1net.ipv4.tcp_syncookies = 1net.ipv4.tcp_tw_recycle = 1 重启network: systemctl restart network 验证: sysctl net.ipv4.ip_forward 如果返回为…