feat: 支持打deb包

This commit is contained in:
caiyuchao
2025-09-26 10:28:57 +08:00
parent 1ddc416cad
commit 5d7b388b07
19 changed files with 73 additions and 2 deletions

View File

@@ -0,0 +1 @@
# requirepass 123456

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