feat: 打包调整

This commit is contained in:
caiyuchao
2025-09-26 10:58:13 +08:00
parent 7a43f1c1d1
commit 3e07e47e13
19 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
# 基础镜像
FROM redis:7.4.1
# author
MAINTAINER agt
# 挂载目录
VOLUME /home/agt/redis
# 创建目录
RUN mkdir -p /home/agt/redis
# 指定路径
WORKDIR /home/agt/redis
# 复制conf文件到路径
COPY ./conf/redis.conf /home/agt/redis/redis.conf