dockerインストールredis

374 ワード

docker pull redis:3.2
docker run -p 6379:6379 \

-v /home/hadoop/myredis/data:/data \

-v /home/hadoop/myredis/conf/redis.conf:/usr/local/etc/redis/redis.conf \

-d redis:3.2 redis-server /usr/local/etc/redis/redis.conf \

--appendonly yes

 
--appendonly yesはredisデータの永続化の形式である:aof
docker exec-it容器id redis-cli