Last active
November 12, 2019 00:25
-
-
Save oliveira-andre/a76e96debb316e349b5d1cb1f07dd7f4 to your computer and use it in GitHub Desktop.
run docker redis
This file contains hidden or 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
sudo docker run -d \ | |
--name=redis \ | |
--restart=always \ | |
-v redis:/var/lib/redis/data \ | |
-p 6379:6379 \ | |
redis:latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment