上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: 然后输入如下命令: /etc/init.d/network restart 阅读全文
posted @ 2024-07-05 13:28 KeepSmiling_me 阅读(41) 评论(0) 推荐(0)
摘要: docker engine 里添加 "insecure-registries": [ "harbor.ks.x" ], 例如 { "builder": { "gc": { "defaultKeepStorage": "20GB", "enabled": true } }, "experimental 阅读全文
posted @ 2024-06-30 09:22 KeepSmiling_me 阅读(234) 评论(0) 推荐(0)
摘要: 导出:git clone --mirror http://test.ks.x/devops/demo.git在新的gitlab创建demo项目,复制http地址 导入:git push --mirror http://opne.ks/devops/demo.git 阅读全文
posted @ 2024-06-12 11:16 KeepSmiling_me 阅读(29) 评论(0) 推荐(0)
摘要: # 全局终止设置方便捕获异常 $ErrorActionPreference = 'Stop' # 隐藏进度条 $ProgressPreference = 'SilentlyContinue' #下载jdk11并解压 Invoke-WebRequest -UseBasicParsing -OutFil 阅读全文
posted @ 2024-04-10 10:41 KeepSmiling_me 阅读(39) 评论(0) 推荐(0)
摘要: 安装jenkins #下载镜像 docker pull jenkins/jenkins #创建文件夹 mkdir -p /home/jenkins_home #权限 chmod 777 /home/jenkins_home #启动 docker run -d -uroot -p 9095:8080 阅读全文
posted @ 2024-03-28 17:32 KeepSmiling_me 阅读(38) 评论(0) 推荐(0)
摘要: #在安装完docker前提下安装k3scurl -sfL https://rancher-mirror.rancher.cn/k3s/k3s-install.sh | INSTALL_K3S_MIRROR=cn sh -#安装argocd kubectl create namespace argoc 阅读全文
posted @ 2024-03-28 11:47 KeepSmiling_me 阅读(22) 评论(0) 推荐(0)
摘要: 查找: yum -y list java* 安装: yum install -y java-1.8.0-openjdk* 自动安装java1.8.0所有程序 阅读全文
posted @ 2024-03-28 11:27 KeepSmiling_me 阅读(12) 评论(0) 推荐(0)
摘要: mkdir ~/.config/code-server docker run -it --name code-server \ -p 8080:8080 \ -v "$HOME/.config/code-server:/root/.config/code-server" \ -u "$(id -u) 阅读全文
posted @ 2024-03-28 09:41 KeepSmiling_me 阅读(16) 评论(0) 推荐(0)
摘要: version: "3" services: windows: image: dockurr/windows container_name: windows environment: VERSION: "win11" devices: - /dev/kvm cap_add: - NET_ADMIN 阅读全文
posted @ 2024-03-27 17:16 KeepSmiling_me 阅读(148) 评论(0) 推荐(0)
摘要: msbuild hello_cmake.vcxproj /t:Build /p:Configuration=Release; main.cpp #include <iostream> using namespace std; int main(int argc, char *argv[]) { co 阅读全文
posted @ 2024-03-26 11:32 KeepSmiling_me 阅读(64) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 12 下一页