1. redis image pull
- docker pull redis:alpine
2. redis image run command
- docker run -p 6379:6379
-v ${volumePath}
--name ${containerName}
-d redis
--appendonly yes
--requirepass #{password}
3. redis-cli command example
- redis-cli
- auth ${password}
- select 0
add ENC(${encryptionValue}) to application.yml
gradle test -PencryptionKey=${encryptionKey}