first commit

This commit is contained in:
zc
2026-02-06 11:10:26 +08:00
commit e2bc4b3f80
898 changed files with 135230 additions and 0 deletions

13
docker/redis/dockerfile Normal file
View File

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