Skip to content

Instantly share code, notes, and snippets.

@Odinger1
Odinger1 / howto.md
Last active August 24, 2016 03:44 — forked from AntDek/howto.md
How to have redis-cli and psql installed on machine using Docker

#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