podman中运行redis

运行环境为CentOS 8:

VOL_HOME=/data/volumes;
REDIS_VERSION='7.2.4';
mkdir -p $VOL_HOME/redis/conf/;
mkdir -p $VOL_HOME/redis/data;
touch $VOL_HOME/redis/conf/redis.conf;
echo 'requirepass joycode' > $VOL_HOME/redis/conf/redis.conf; 
podman run --name redis \
-d \
-p 6379:6379 \
-v $VOL_HOME/redis/conf:/etc/redis \
-v $VOL_HOME/redis/data:/data \
registry.cn-guangzhou.aliyuncs.com/maxwoods/redis:$REDIS_VERSION redis-server --requirepass joycode \
 --appendonly yes;

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享