Categories
Docker Redis

docker redis

working with redis, I start redis with this command:

docker run --name some-redis -d redis redis-server --appendonly yes

 

to access redis with redis-cli, I use:

docker exec some-redis redis-cli

 

Leave a Reply

Your email address will not be published. Required fields are marked *