feat(ptreodactyl): new egg (#515)

* Leave exposing ports to the compose/run setup

* Add pterodactyl egg and adjust the start script for working in ro overlay2 setups

* Update egg-discord-tickets-bot.json
This commit is contained in:
Daleth Darko
2024-01-14 16:05:53 -05:00
committed by GitHub
parent 036c208cf8
commit db4fd843f4
3 changed files with 107 additions and 3 deletions

View File

@@ -1,6 +1,10 @@
#!/usr/bin/env sh
if [ "$DOCKER" = "true" ]; then
if [ "$PTERODACTYL" = "true" ]; then
rm -rf /home/container/app
cp -R /app /home/container/
base_dir="/home/container/app"
elif [ "$DOCKER" = "true" ]; then
base_dir="/app"
else
source="${BASH_SOURCE}"