-
-
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
Showing
10 changed files
with
162 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#! /usr/bin/env bash | ||
|
||
base=2.3.1 | ||
base=2.3.6 | ||
new=$1 | ||
suffix=$2 | ||
|
||
|
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 keys.gnupg.net --recv-keys 3B87619DF812A63A8C1005C30742918E5C8DA04A | ||
RUN echo "deb http://download.rethinkdb.com/apt jessie main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.3.6~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 keys.gnupg.net --recv-keys 3B87619DF812A63A8C1005C30742918E5C8DA04A | ||
RUN echo "deb http://download.rethinkdb.com/apt trusty main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.3.6~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 keys.gnupg.net --recv-keys 3B87619DF812A63A8C1005C30742918E5C8DA04A | ||
RUN echo "deb http://download.rethinkdb.com/apt utopic main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.3.6~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 keys.gnupg.net --recv-keys 3B87619DF812A63A8C1005C30742918E5C8DA04A | ||
RUN echo "deb http://download.rethinkdb.com/apt vivid main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.3.6~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 keys.gnupg.net --recv-keys 3B87619DF812A63A8C1005C30742918E5C8DA04A | ||
RUN echo "deb http://download.rethinkdb.com/apt xenial main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.3.6~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 |
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:yakkety | ||
|
||
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 keys.gnupg.net --recv-keys 3B87619DF812A63A8C1005C30742918E5C8DA04A | ||
RUN echo "deb http://download.rethinkdb.com/apt yakkety main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.3.6~0yakkety | ||
|
||
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:zesty | ||
|
||
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 keys.gnupg.net --recv-keys 3B87619DF812A63A8C1005C30742918E5C8DA04A | ||
RUN echo "deb http://download.rethinkdb.com/apt zesty main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.3.6~0zesty | ||
|
||
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 |