blackbirdchess-docker-dev/rethinkdb/Dockerfile

19 lines
442 B
Docker
Raw Normal View History

2016-12-26 04:59:58 +01:00
FROM rethinkdb:latest
2018-03-16 14:09:15 +01:00
LABEL maintainer="Cristian Mello <cristianc.mello@gmail.com>"
2016-12-26 04:59:58 +01:00
VOLUME /data/rethinkdb_data
#Necessary for the backup rethinkdb
RUN apt-get -y update \
&& apt-get -y upgrade \
&& apt-get -y install python-pip \
&& pip install rethinkdb \
&& rm -rf /var/lib/apt/lists/*
2016-12-26 04:59:58 +01:00
RUN cp /etc/rethinkdb/default.conf.sample /etc/rethinkdb/instances.d/instance1.conf
CMD ["rethinkdb", "--bind", "all"]
EXPOSE 8080