mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-07-14 05:12:36 +08:00
11 lines
222 B
Docker
11 lines
222 B
Docker
# 使用Redis官方镜像
|
|
FROM redis:latest
|
|
|
|
# 替换默认配置文件
|
|
COPY redis.conf /usr/local/etc/redis/redis.conf
|
|
|
|
# 开放6379端口
|
|
EXPOSE 6379
|
|
|
|
# 启动Redis
|
|
CMD ["redis-server", "/usr/local/etc/redis/redis.conf"] |