parkertron
ApplicationsThe stupid chatbot parkertron by Parkervcp. https://github.com/parkervcp/parkertron
README
parkertron
Their Github
Purely a chatbot. Not even a smart one.
Runs the Pterodactyl @support bot
Server Ports
There are no ports required for parkertron
Docker Images (1)
| Name | Image |
|---|---|
ghcr.io/ptero-eggs/yolks:bot_parkertron | ghcr.io/ptero-eggs/yolks:bot_parkertron |
Startup Command
./parkertron Variables (0)
Installation Script
Container:
golang:1.19-bookwormEntrypoint:
bash#!/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."