dashboard
repositories
filestore
activity
search
login
富永鑫
/
sgd
forked from
sgd
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
TypeScript前端代码生成模板同步到最新
RuoYi
2026-03-12
b0ff5a01a132d7badf935f60b6aa14fa00dce5b0
[~fuyongxin/sgd.git]
/
docker
/
redis
/
dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
# 基础镜像
FROM redis
# author
MAINTAINER ruoyi
# 挂载目录
VOLUME /home/ruoyi/redis
# 创建目录
RUN mkdir -p /home/ruoyi/redis
# 指定路径
WORKDIR /home/ruoyi/redis
# 复制conf文件到路径
COPY ./conf/redis.conf /home/ruoyi/redis/redis.conf