Purely a chatbot. Not even a smart one.
Runs the Pterodactyl @support bot
There are no ports required for parkertron
Name | Tag |
---|---|
ghcr.io/ptero-eggs/yolks:bot_parkertron | ghcr.io/ptero-eggs/yolks:bot_parkertron |
Name | Description | Environment Variable | Default Value | User Viewable | User Editable |
---|
#!/bin/bash
# parkertron Installation Script
#
# Server Files: /mnt/server
export GOPATH=$HOME/go
export PATH=$GOROOT/bin:$GOPATH/bin:$PATH
cd
apt update
apt install -y tesseract-ocr tesseract-ocr-eng libtesseract-dev
echo "pulling the parkertron git repo"
git clone https://github.com/parkervcp/parkertron.git
cd parkertron/
echo "building parkertron"
go build
echo "build complete copying parkertron and example configs over"
cp parkertron /mnt/server/
if [ -d /mnt/server/configs ]; then
echo "Files exist already"
else
cp -r /root/parkertron/configs/ /mnt/server/
fi
echo "Install complete. If you watched this. Congrats."