blackbirdchess-docker-dev/rethinkdb/Dockerfile

12 lines
248 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
RUN cp /etc/rethinkdb/default.conf.sample /etc/rethinkdb/instances.d/instance1.conf
CMD ["rethinkdb", "--bind", "all"]
EXPOSE 8080