康来智慧冷链-后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
wangxiang 2c91b5a495 🚀 消息推送模块 2 years ago
..
tools 🚀 消息推送模块 2 years ago
Dockerfile 🚀 消息推送模块 2 years ago
README.md 🚀 消息推送模块 2 years ago

README.md

# 将文件复制到容器
docker cp 源文件位置 容器ID:/var/jenkins_home/tools/apache-maven-3.9.0
docker cp 源文件位置 容器ID:/var/jenkins_home/tools/jdk1.8.0_361

# 使用root用户进入容器进行授权
docker exec -it -u root 容器ID bin/bash
chmod -R 777 /var/jenkins_home/tools

# 更换jenkins国内源
tee /var/jenkins_home/hudson.model.UpdateCenter.xml <<-'EOF'
<?xml version='1.1' encoding='UTF-8'?>
<sites>
  <site>
    <id>default</id>
    <url>https://mirrors.tuna.tsinghua.edu.cn/jenkins/updates/update-center.json</url>
  </site>
</sites>
EOF