Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 516 Bytes

README.md

File metadata and controls

26 lines (23 loc) · 516 Bytes

WATNI

Redis run command

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

Encryption Example

add ENC(${encryptionValue}) to application.yml

Test Command

    gradle test -PencryptionKey=${encryptionKey}