添加 kilocode 容器支持和通用 Docker 配置

- 添加 kilocode devcontainer 配置
- 新增 Fedora 和 Ubuntu Dockerfile
- 添加构建自动化 (Makefile, compose.yml)
- 配置环境变量管理 (.env, .env.example)
This commit is contained in:
2025-12-25 00:28:15 +08:00
parent aca5f52bc2
commit 635d113b4f
14 changed files with 605 additions and 1 deletions

33
vibe-dev/entrypoint.sh Normal file
View File

@@ -0,0 +1,33 @@
#!/bin/bash
set -e
# 1. 准备 SSH 目录
mkdir -p /root/.ssh
chmod 700 /root/.ssh
touch /root/.ssh/authorized_keys
# 2. 动态注入挂载的公钥 (解决只读冲突的核心逻辑)
if [ -f /tmp/host_id_ed25519.pub ]; then
echo "检测到挂载的公钥,正在注入..."
# 仅当公钥不存在时才追加,避免重复
if ! grep -qf /tmp/host_id_ed25519.pub /root/.ssh/authorized_keys 2>/dev/null; then
cat /tmp/host_id_ed25519.pub >> /root/.ssh/authorized_keys
echo "✅ 公钥注入成功"
else
echo " 公钥已存在,无需重复注入"
fi
fi
# 3. 强制修复权限 (SSH 对此非常敏感)
chmod 600 /root/.ssh/authorized_keys
chown root:root /root/.ssh/authorized_keys
# 根据不同 OS 启动 SSH
if [ -f /usr/sbin/sshd ]; then
/usr/sbin/sshd # Fedora 路径
else
service ssh start # Ubuntu 路径
fi
exec "$@"