Docker 部署Jenkins后使用root权限apt-get安装需要软件 创建容器 ``` sudo docker run -dit --name=Jenkins -p 8889:8080 -p 50000:50000 --restart=on-failure -v /home/user/jenkins:/var ...
Docker Mysql5.7 重新生成 ssl相关 pem证书 #### 进入容器 ``` docker exec -it xxxxxxxxx bash ``` #### 创建临时目录 ``` mkdir /var/lib/mysql/temp ``` #### 在data目录生成新的证书(共8个) ` ...
docker-compose up报错:ERROR: for xxx Cannot create container for service xxx: Conflict. The container name "/xxx" is already in use by container "xxxxxxxxxx" Docker报错:ERROR: for xxx Cannot create container for service xxx: Conflict. The container name "/xxx" is already in use b ...
docker-compose up报错:Failed to Setup IP tables: Unable to enable SKIP DNAT rule: (iptables failed: iptables... 执行`docker-compose up`报错`ERROR: Failed to Setup IP tables: Unable to enable SKIP DNAT rule: (iptables failed: iptables -- ...
2022更新 Centos 安装 Docker ## 1. 基础环境准备 - Linux Server (以Centos为例) ## 2. 安装Docker ### 清理旧版本Docker ```shell sudo yum remove docker \ docker-client \ ...
树莓派4B安装docker 准备: 1. 树莓派已经安装系统 (以ubuntu为例) 2. 用ssh客户端连接树莓派 安装: 1.更新并升级 ``` apt update && apt upgrade ``` 2.安装docker和compose ``` apt in ...
Docker国内镜像源的切换 Docker中国区官方镜像:https://registry.docker-cn.com 网易:http://hub-mirror.c.163.com 中国科技大学:https://docker.mirrors.ustc.edu.cn 阿里 ...