1 Star 0 Fork 0

用剑的魔导师/autoMysql

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 797 Bytes
一键复制 编辑 原始数据 按行查看 历史
用剑的魔导师 提交于 2024-11-04 17:39 . init
FROM debian:bookworm-slim
# 配置git
RUN mkdir -p /root/.ssh && \
chmod 700 /root/.ssh
COPY config/git/.ssh/id_rsa /root/.ssh/
COPY config/git/.ssh/id_rsa.pub /root/.ssh/
# COPY ./git/.gitconfig /root/
RUN apt-get update && \
apt-get install -y git default-mysql-client && \
git --version && \
rm -rf /var/lib/apt/lists/* && \
chmod 600 /root/.ssh/id_rsa
# 拉取gitee的公钥
RUN ssh-keyscan -t rsa,ecdsa,ed25519 gitee.com >> ~/.ssh/known_hosts 2>/dev/null
# 确保 /usr/bin 在 PATH 中
ENV PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
# 安装autodb
RUN mkdir "/usr/sjy"
COPY ./autodb/autodb /usr/sjy/
COPY config/config.yaml /usr/sjy/
COPY ./shell/start_up.sh /usr/sjy/
EXPOSE 11000
CMD [ "/usr/sjy/autodb", "-c", "/usr/sjy/config.yaml" ]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mdsSJY/auto-mysql.git
[email protected]:mdsSJY/auto-mysql.git
mdsSJY
auto-mysql
autoMysql
master

搜索帮助