12 lines
635 B
Plaintext
12 lines
635 B
Plaintext
# ===== 基础环境配置 =====
|
||
|
||
# Docker 镜像加速(国内服务器推荐配置)
|
||
DOCKER_REGISTRY_MIRRORS=https://docker.1ms.run,https://docker.m.daocloud.io,https://dockerpull.org,https://docker.rainbond.cc,https://docker.udayun.com,https://hub.rat.dev
|
||
|
||
# SSH 公钥认证(可选)
|
||
# 填入本机公钥内容,setup.sh 运行时自动写入服务器 authorized_keys,后续无需密码登录
|
||
# 获取本机公钥(Windows PowerShell): Get-Content ~/.ssh/id_ed25519.pub
|
||
# 获取本机公钥(Linux/macOS): cat ~/.ssh/id_ed25519.pub
|
||
# 若本机还没有密钥,先生成: ssh-keygen -t ed25519
|
||
SSH_PUBLIC_KEY=
|