第三方 DockerHub 镜像服务
DockerHub 镜像服务 更改docker的镜像源 mkdir -p /etc/docker tee /etc/docker/daemon.json <<-'EOF' { "registry-mirrors": ["https://docker.fxxk.dedyn.io"] # 请替换为
DockerHub 镜像服务 更改docker的镜像源 mkdir -p /etc/docker tee /etc/docker/daemon.json <<-'EOF' { "registry-mirrors": ["https://docker.fxxk.dedyn.io"] # 请替换为
linux设置虚拟内存 1. 检查当前 Swap 状态 同样,首先检查系统当前是否已经配置了 Swap。 sudo swapon --show 2. 创建 Swap 文件 创建一个 Swap 文件,例如 1GB 大小的 Swap 文件: sudo fallocate -l 2G /swapfile
python更改源为阿里云
ubuntu安装docker 安装必要支持 apt install apt-transport-https ca-certificates curl software-properties-common gnupg lsb-release 添加 Docker 官方 GPG key 官方源 cu
资源来源站点:https://zygxb.com/ 教程: 🔥大学生职业生涯规划与指导 https://pan.quark.cn/s/b560a9e703e6 🚁 航拍教程 https://pan.quark.cn/s/945d8c5a0788 黄广益打羽毛球运动教学课程 https://pan
使用python代码下载docker镜像tar包 使用方法:python docker_pull.py 镜像名 #!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2024/8/1 17:55 # @Author : Jenny #
python目录文件操作 #当前文件的目录 current_path = os.path.dirname(os.path.realpath(__file__)) current_path1 = os.getcwd() #输出:E:\PycharmProjects\path_test\path_tes
linux设置开机启动 使用 systemd: 创建一个 systemd 服务单元文件(.service 文件),定义您想要在启动时运行的命令或服务。 将该服务单元文件放置在 /etc/systemd/system/ 目录中。 使用 systemctl enable servicename.serv
国内镜像源地址 npm镜像地址 # 切换源 npm config set registry https://registry.npmmirror.com # 查看当前的镜像源 npm config get registry pip镜像地址 # 临时切换源 pip install django -
linux设置java的环境变量 方法一:通过命令行临时设置 export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 export PATH=$PATH:$JAVA_HOME/bin # 目录的写法 export PATH=$PATH:/usr/lib/