-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Alan Miller
committed
Aug 29, 2016
1 parent
d129775
commit da98484
Showing
7 changed files
with
115 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM debian:jessie | ||
|
||
MAINTAINER Daniel Alan Miller <dalanmiller@rethinkdb.com> | ||
|
||
# Add the RethinkDB repository and public key | ||
# "RethinkDB Packaging <packaging@rethinkdb.com>" http://download.rethinkdb.com/apt/pubkey.gpg | ||
RUN apt-key adv --keyserver pgp.mit.edu --recv-keys 1614552E5765227AEC39EFCFA7E00EF33A8F2399 | ||
RUN echo "deb http://download.rethinkdb.com/apt jessie main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.3.5~0jessie | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y rethinkdb=$RETHINKDB_PACKAGE_VERSION \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
VOLUME ["/data"] | ||
|
||
WORKDIR /data | ||
|
||
CMD ["rethinkdb", "--bind", "all"] | ||
|
||
# process cluster webui | ||
EXPOSE 28015 29015 8080 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM ubuntu:trusty | ||
|
||
MAINTAINER Daniel Alan Miller <dalanmiller@rethinkdb.com> | ||
|
||
# Add the RethinkDB repository and public key | ||
# "RethinkDB Packaging <packaging@rethinkdb.com>" http://download.rethinkdb.com/apt/pubkey.gpg | ||
RUN apt-key adv --keyserver pgp.mit.edu --recv-keys 1614552E5765227AEC39EFCFA7E00EF33A8F2399 | ||
RUN echo "deb http://download.rethinkdb.com/apt trusty main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.3.5~0trusty | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y rethinkdb=$RETHINKDB_PACKAGE_VERSION \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
VOLUME ["/data"] | ||
|
||
WORKDIR /data | ||
|
||
CMD ["rethinkdb", "--bind", "all"] | ||
|
||
# process cluster webui | ||
EXPOSE 28015 29015 8080 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM ubuntu:utopic | ||
|
||
MAINTAINER Daniel Alan Miller <dalanmiller@rethinkdb.com> | ||
|
||
# Add the RethinkDB repository and public key | ||
# "RethinkDB Packaging <packaging@rethinkdb.com>" http://download.rethinkdb.com/apt/pubkey.gpg | ||
RUN apt-key adv --keyserver pgp.mit.edu --recv-keys 1614552E5765227AEC39EFCFA7E00EF33A8F2399 | ||
RUN echo "deb http://download.rethinkdb.com/apt utopic main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.3.5~0utopic | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y rethinkdb=$RETHINKDB_PACKAGE_VERSION \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
VOLUME ["/data"] | ||
|
||
WORKDIR /data | ||
|
||
CMD ["rethinkdb", "--bind", "all"] | ||
|
||
# process cluster webui | ||
EXPOSE 28015 29015 8080 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM ubuntu:vivid | ||
|
||
MAINTAINER Daniel Alan Miller <dalanmiller@rethinkdb.com> | ||
|
||
# Add the RethinkDB repository and public key | ||
# "RethinkDB Packaging <packaging@rethinkdb.com>" http://download.rethinkdb.com/apt/pubkey.gpg | ||
RUN apt-key adv --keyserver pgp.mit.edu --recv-keys 1614552E5765227AEC39EFCFA7E00EF33A8F2399 | ||
RUN echo "deb http://download.rethinkdb.com/apt vivid main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.3.5~0vivid | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y rethinkdb=$RETHINKDB_PACKAGE_VERSION \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
VOLUME ["/data"] | ||
|
||
WORKDIR /data | ||
|
||
CMD ["rethinkdb", "--bind", "all"] | ||
|
||
# process cluster webui | ||
EXPOSE 28015 29015 8080 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM ubuntu:xenial | ||
|
||
MAINTAINER Daniel Alan Miller <dalanmiller@rethinkdb.com> | ||
|
||
# Add the RethinkDB repository and public key | ||
# "RethinkDB Packaging <packaging@rethinkdb.com>" http://download.rethinkdb.com/apt/pubkey.gpg | ||
RUN apt-key adv --keyserver pgp.mit.edu --recv-keys 1614552E5765227AEC39EFCFA7E00EF33A8F2399 | ||
RUN echo "deb http://download.rethinkdb.com/apt xenial main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.3.5~0xenial | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y rethinkdb=$RETHINKDB_PACKAGE_VERSION \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
VOLUME ["/data"] | ||
|
||
WORKDIR /data | ||
|
||
CMD ["rethinkdb", "--bind", "all"] | ||
|
||
# process cluster webui | ||
EXPOSE 28015 29015 8080 |