You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

5 lines
195 B

#!/bin/sh
docker ps
docker stop redis
docker rm redis
docker run -d --name redis -v $PWD/etc:/usr/local/etc/redis -v $PWD/data:/data -p 6379:6379 redis --requirepass "73937393" --appendonly yes