Skip to content

Instantly share code, notes, and snippets.

View AntDek's full-sized avatar

Anton Dekterev AntDek

View GitHub Profile
@AntDek
AntDek / howto.md
Last active August 29, 2015 14:26 — forked from petrkohut/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