-
-
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.
Signed-off-by: Gabor Boros <gabor.brs@gmail.com>
- Loading branch information
1 parent
a7f9d80
commit 4f89aed
Showing
15 changed files
with
331 additions
and
8 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,22 @@ | ||
FROM almalinux:8 | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.4.2 | ||
|
||
RUN echo $'[rethinkdb]\n\ | ||
name=RethinkDB\n\ | ||
enabled=1\n\ | ||
baseurl=https://download.rethinkdb.com/repository/alma/8/x86_64/\n\ | ||
gpgkey=https://download.rethinkdb.com/repository/raw/pubkey.gpg\n\ | ||
gpgcheck=1\n' >> /etc/yum.repos.d/rethinkdb.repo | ||
|
||
RUN yum install -y rethinkdb-$RETHINKDB_PACKAGE_VERSION \ | ||
&& yum clean all | ||
|
||
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:bionic | ||
|
||
RUN apt-get -qqy update \ | ||
&& apt-get install -y --no-install-recommends ca-certificates gnupg2 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys "539A3A8C6692E6E3F69B3FE81D85E93F801BB43F" \ | ||
&& echo "deb https://download.rethinkdb.com/repository/ubuntu-bionic bionic main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.4.2~0bionic | ||
|
||
RUN apt-get -qqy 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,24 @@ | ||
FROM debian:bullseye-slim | ||
|
||
RUN apt-get -qqy update \ | ||
&& apt-get install -y --no-install-recommends ca-certificates gnupg2 curl \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN curl -fsSL https://download.rethinkdb.com/repository/raw/pubkey.gpg | gpg --dearmor | tee /usr/share/keyrings/rethinkdb.gpg | gpg --armor \ | ||
&& echo "deb [signed-by=/usr/share/keyrings/rethinkdb.gpg] https://download.rethinkdb.com/repository/debian-bullseye bullseye main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.4.2~0bullseye | ||
|
||
RUN apt-get -qqy 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 debian:buster-slim | ||
|
||
RUN apt-get -qqy update \ | ||
&& apt-get install -y --no-install-recommends ca-certificates gnupg2 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN apt-key adv --keyserver pgp.mit.edu --recv-keys "539A3A8C6692E6E3F69B3FE81D85E93F801BB43F" \ | ||
&& echo "deb https://download.rethinkdb.com/repository/debian-buster buster main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.4.2~0buster | ||
|
||
RUN apt-get -qqy 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,22 @@ | ||
FROM centos:7 | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.4.2 | ||
|
||
RUN echo $'[rethinkdb]\n\ | ||
name=RethinkDB\n\ | ||
enabled=1\n\ | ||
baseurl=https://download.rethinkdb.com/repository/centos/7/x86_64/\n\ | ||
gpgkey=https://download.rethinkdb.com/repository/raw/pubkey.gpg\n\ | ||
gpgcheck=1\n' >> /etc/yum.repos.d/rethinkdb.repo | ||
|
||
RUN yum install -y rethinkdb-$RETHINKDB_PACKAGE_VERSION \ | ||
&& yum clean all | ||
|
||
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
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:focal | ||
|
||
RUN apt-get -qqy update \ | ||
&& apt-get install -y --no-install-recommends ca-certificates gnupg2 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys "539A3A8C6692E6E3F69B3FE81D85E93F801BB43F" \ | ||
&& echo "deb https://download.rethinkdb.com/repository/ubuntu-focal focal main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.4.2~0focal | ||
|
||
RUN apt-get -qqy 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,24 @@ | ||
FROM ubuntu:hirsute | ||
|
||
RUN apt-get -qqy update \ | ||
&& apt-get install -y --no-install-recommends curl ca-certificates gnupg2 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN curl -fsSL https://download.rethinkdb.com/repository/raw/pubkey.gpg | gpg --dearmor | tee /usr/share/keyrings/rethinkdb.gpg | gpg --armor \ | ||
&& echo "deb [signed-by=/usr/share/keyrings/rethinkdb.gpg] https://download.rethinkdb.com/repository/ubuntu-hirsute hirsute main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.4.2~0hirsute | ||
|
||
RUN apt-get -qqy 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,24 @@ | ||
FROM ubuntu:impish | ||
|
||
RUN apt-get -qqy update \ | ||
&& apt-get install -y --no-install-recommends curl ca-certificates gnupg2 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN curl -fsSL https://download.rethinkdb.com/repository/raw/pubkey.gpg | gpg --dearmor | tee /usr/share/keyrings/rethinkdb.gpg | gpg --armor \ | ||
&& echo "deb [signed-by=/usr/share/keyrings/rethinkdb.gpg] https://download.rethinkdb.com/repository/ubuntu-impish impish main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.4.2~0impish | ||
|
||
RUN apt-get -qqy 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,24 @@ | ||
FROM ubuntu:jammy | ||
|
||
RUN apt-get -qqy update \ | ||
&& apt-get install -y --no-install-recommends curl ca-certificates gnupg2 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN curl -fsSL https://download.rethinkdb.com/repository/raw/pubkey.gpg | gpg --dearmor | tee /usr/share/keyrings/rethinkdb.gpg | gpg --armor \ | ||
&& echo "deb [signed-by=/usr/share/keyrings/rethinkdb.gpg] https://download.rethinkdb.com/repository/ubuntu-jammy jammy main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.4.2~0jammy | ||
|
||
RUN apt-get -qqy 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,24 @@ | ||
FROM debian:jessie-slim | ||
|
||
RUN apt-get -qqy update \ | ||
&& apt-get install -y --no-install-recommends apt-transport-https ca-certificates gnupg2 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN apt-key adv --keyserver pgp.mit.edu --recv-keys "539A3A8C6692E6E3F69B3FE81D85E93F801BB43F" \ | ||
&& echo "deb https://download.rethinkdb.com/repository/debian-jessie jessie main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.4.2~0jessie | ||
|
||
RUN apt-get -qqy 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,22 @@ | ||
FROM rockylinux:8 | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.4.2 | ||
|
||
RUN echo $'[rethinkdb]\n\ | ||
name=RethinkDB\n\ | ||
enabled=1\n\ | ||
baseurl=https://download.rethinkdb.com/repository/rocky/8/x86_64/\n\ | ||
gpgkey=https://download.rethinkdb.com/repository/raw/pubkey.gpg\n\ | ||
gpgcheck=1\n' >> /etc/yum.repos.d/rethinkdb.repo | ||
|
||
RUN yum install -y rethinkdb-$RETHINKDB_PACKAGE_VERSION \ | ||
&& yum clean all | ||
|
||
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 debian:stretch-slim | ||
|
||
RUN apt-get -qqy update \ | ||
&& apt-get install -y --no-install-recommends apt-transport-https dirmngr ca-certificates gnupg2 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN apt-key adv --keyserver pgp.mit.edu --recv-keys "539A3A8C6692E6E3F69B3FE81D85E93F801BB43F" \ | ||
&& echo "deb https://download.rethinkdb.com/repository/debian-stretch stretch main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.4.2~0stretch | ||
|
||
RUN apt-get -qqy 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:trusty | ||
|
||
RUN apt-get -qqy update \ | ||
&& apt-get install -y --no-install-recommends apt-transport-https ca-certificates gnupg2 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys "539A3A8C6692E6E3F69B3FE81D85E93F801BB43F" \ | ||
&& echo "deb https://download.rethinkdb.com/repository/ubuntu-trusty trusty main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.4.2~0trusty | ||
|
||
RUN apt-get -qqy 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:xenial | ||
|
||
RUN apt-get -qqy update \ | ||
&& apt-get install -y --no-install-recommends apt-transport-https ca-certificates gnupg2 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys "539A3A8C6692E6E3F69B3FE81D85E93F801BB43F" \ | ||
&& echo "deb https://download.rethinkdb.com/repository/ubuntu-xenial xenial main" > /etc/apt/sources.list.d/rethinkdb.list | ||
|
||
ENV RETHINKDB_PACKAGE_VERSION 2.4.2~0xenial | ||
|
||
RUN apt-get -qqy 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 |