Egg Repository

Pterodactyl Community Egg Repository

rethinkdb

The open-source database for the realtime web

Read Me

Rethinkdb

Website

The open-source database for the realtime web

Notes

  • The web dashboard by default is disabled (remove the --no-http-admin flag from startup to enable).
  • It defaults bind to 0.0.0.0 what is all interfaces so it is public availble.
  • On first start a admin pasword is randomly generated.

Server Ports

Ports required to run the server in a table format.

Port default
cluster 25567
driver 25568
http 25569
Yolks
NameTag
Debianghcr.io/ptero-eggs/yolks:debian
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
VersionVERSION2.4.4YesYes
Driver portDRIVER_PORT25568YesNo
Http portHTTP_PORT25569YesNo
Install Script
#!/bin/bash

apt update
apt install -y wget tar binutils xz-utils

ARCH=$([[ "$(uname -m)" == "x86_64" ]] && echo "amd64" || echo "arm64")

mkdir -p /mnt/server

cd /tmp
wget https://download.rethinkdb.com/repository/debian-bookworm/pool/r/rethinkdb/rethinkdb_${VERSION}~0bookworm_${ARCH}.deb -O rethinkdb.deb

ar xv rethinkdb.deb

tar xvf data.tar.xz

mv /tmp/usr/bin/rethinkdb /mnt/server

echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"