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

5 years ago
  1. #!/bin/sh
  2. docker ps
  3. docker stop redis
  4. docker rm redis
  5. docker run -d --name redis -v $PWD/etc:/usr/local/etc/redis -v $PWD/data:/data -p 6379:6379 redis --requirepass "73937393" --appendonly yes