72
1 分钟
install rust 1 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh or 1 2 3 export RUSTUP_DIST_SERVER="https://rsproxy.cn" export RUSTUP_UPDATE_ROOT="https://rsproxy.cn/rustup" curl --proto '=https' --tlsv1.2 -sSf https://rsproxy.cn/rustup-init.sh | sh set registry 1 2 3 4 5 6 7 8 9 10 11 12 cat……
526
2 分钟
Docker 的 BuildKit 工具现在支持 heredoc 语法,这一新特性可以简化 Dockerfile 中的多行 RUN 指令和内联配置文件的创建。 BuildKit……
880
2 分钟
共享库 无论是在脚本式(Scripted)还是声明式(Declarative)流水线中……
353
1 分钟
安装 这个插件已经包含在 RabbitMQ 3.8.x 版本中。就像所有插件一样,它必须先被启用才能使用。 启用插件……
43
1 分钟
依赖 s3fs 安装 1 dnf install -y s3fs AK SK 1 2 echo ACCESS_KEY_ID:SECRET_ACCESS_KEY > ${HOME}/.passwd-s3fs chmod 600 ${HOME}/.passwd-s3fs 挂载 1 2 3 4 5 s3fs blob-bak /mnt/r2 \ -o passwd_file=~/.passwd-s3fs \ -o url="https://xxxxxxxxxxx.r2.cloudflarestorage.com/" \ -o nomultipart \ -o……