Created
June 6, 2022 17:34
-
-
Save dkhorev/29298fca75a9a9fa3f67221850f932fc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# first run redis with persistence | |
docker run -p 6379:6379 --name redis -d redis --save 60 1 --loglevel warning | |
# stop service | |
docker stop redis | |
# start service | |
docker start redis |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment