#How to install redis-cli and psql client on your machine with Docker
##Preparing docker images We will use minimalistic Linux distribution called Alpine (5MB)
####Dockerfile of redis-cli
FROM alpine:latest
RUN apk --update add redis
#How to install redis-cli and psql client on your machine with Docker
##Preparing docker images We will use minimalistic Linux distribution called Alpine (5MB)
####Dockerfile of redis-cli
FROM alpine:latest
RUN apk --update add redis