Skip to content

Commit

Permalink
Added python driver for rethinkdb.
Browse files Browse the repository at this point in the history
This enables the use of rethinkdb dump utility for making backups.
  • Loading branch information
maliskovik committed Jan 19, 2015
1 parent a3d670b commit e9da66d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Expand Up @@ -12,9 +12,12 @@ RUN \
echo "deb http://download.rethinkdb.com/apt `lsb_release -cs` main" > /etc/apt/sources.list.d/rethinkdb.list && \
wget -O- http://download.rethinkdb.com/apt/pubkey.gpg | apt-key add - && \
apt-get update && \
apt-get install -y rethinkdb && \
apt-get install -y rethinkdb python-pip && \
rm -rf /var/lib/apt/lists/*

# Install python driver for rethinkdb
RUN pip install rethinkdb

# Define mountable directories.
VOLUME ["/data"]

Expand Down

0 comments on commit e9da66d

Please sign in to comment.