This commit is contained in:
ChocoTaco 2023-10-02 17:47:17 -04:00
parent 3d8f88a08d
commit 767c8f7368
2 changed files with 4 additions and 4 deletions

View file

@ -63,8 +63,8 @@ RUN ${SRVDIR}/tribesnext-server-installer
# SCRIPT - server (default)
COPY _scripts/start-server ${SRVDIR}
RUN chmod +x ${SRVDIR}/start-server
COPY _scripts/start-server ${INSTDIR}/start-server
RUN chmod +x ${INSTDIR}/start-server
# TacoServer - Pull in resources from builder
COPY --from=tacobuilder /tmp/TacoServer/Classic/. ${INSTDIR}/Classic/.

View file

@ -2,10 +2,10 @@
# -- Heartbeat to TribesNext's Master Server
(
(
while true; do
echo "Sending heartbeat to TribesNext..."
curl http://master.tribesnext.com/add/28000 &
curl http://master.tribesnext.com/add/28000 &
sleep 240 ;
done
)