DockerMC/.docker/bungee/start.sh
NorbiPeti ad48a7f528
Add and setup Waterfall
- Copying config files automatically
- Successfully joined servers, though it won't automatically redirect just yet
2022-07-05 01:01:47 +02:00

8 lines
179 B
Bash

trap "echo Received stop signal; pkill java" INT TERM EXIT
ls -la
file=$(ls waterfall*.jar | tail -1)
echo Starting $file
mkdir -p proxy
cd proxy
java -jar ../$file
echo Stopped!