mirror of
https://github.com/luzifer-docker/terraria.git
synced 2024-11-09 13:10:01 +00:00
Update Terraria v1.3.4.4
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
0db3c3fddc
commit
7ff42e3dc2
3 changed files with 89 additions and 73 deletions
|
@ -1,6 +1,6 @@
|
|||
FROM ubuntu
|
||||
|
||||
ENV TERRARIA_VERISON=1311
|
||||
ENV TERRARIA_VERISON=1344
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y bash curl unzip \
|
||||
|
|
24
config.ini
24
config.ini
|
@ -18,44 +18,59 @@
|
|||
#-lobby <friends> or <private> Allows friends to join the server or sets it to private if Steam is enabled
|
||||
#-ip <ip address> Sets the IP address for the server to listen on
|
||||
#-forcepriority <priority> Sets the process priority for this task. If this is used the "priority" setting below will be ignored.
|
||||
#-disableannouncementbox Disables the text announcements Announcement Box makes when pulsed from wire.
|
||||
#-announcementboxrange <number> Sets the announcement box text messaging range in pixels, -1 for serverwide announcements.
|
||||
#-seed <seed> Specifies the world seed when using -autocreate
|
||||
|
||||
#remove the # in front of commands to enable them.
|
||||
|
||||
#Load a world and automatically start the server.
|
||||
#world=C:\Users\YOUR_USERNAME_HERE\My Documents\My Games\Terraria\Worlds\world1.wld
|
||||
world=/data/world.wld
|
||||
|
||||
#Creates a new world if none is found. World size is specified by: 1(small), 2(medium), and 3(large).
|
||||
#autocreate=1
|
||||
autocreate=3
|
||||
|
||||
#Sets the world seed when using autocreate
|
||||
#seed=AwesomeSeed
|
||||
|
||||
#Sets the name of the world when using autocreate
|
||||
#worldname=Terraria
|
||||
worldname=Terraria
|
||||
|
||||
#Sets the difficulty of the world when using autocreate 0(normal), 1(expert)
|
||||
difficulty=1
|
||||
#difficulty=1
|
||||
difficulty=0
|
||||
|
||||
#Sets the max number of players allowed on a server. Value must be between 1 and 255
|
||||
#maxplayers=8
|
||||
maxplayers=16
|
||||
|
||||
#Set the port number
|
||||
#port=7777
|
||||
port=7777
|
||||
|
||||
#Set the server password
|
||||
#password=YOURSECRETPASSWORD
|
||||
#password=p@55w0rd
|
||||
|
||||
#Set the message of the day
|
||||
#motd=Please don?t cut the purple trees!
|
||||
|
||||
#Sets the folder where world files will be stored
|
||||
#worldpath=C:\Users\Defaults\My Documents\My Games\Terraria\Worlds\
|
||||
worldpath=/data/world
|
||||
|
||||
#The location of the banlist. Defaults to "banlist.txt" in the working directory.
|
||||
#banlist=banlist.txt
|
||||
|
||||
#Adds addition cheat protection.
|
||||
#secure=1
|
||||
secure=1
|
||||
|
||||
#Sets the server language 1:English, 2:German, 3:Italian, 4:French, 5:Spanish
|
||||
lang=1
|
||||
#Sets the server language from its language code.
|
||||
#English = en-US, German = de-DE, Italian = it-IT, French = fr-FR, Spanish = es-ES, Russian = ru-RU, Chinese = zh-Hans, Portuguese = pt-BR, Polish = pl-PL,
|
||||
#language=en-US
|
||||
|
||||
#Automatically forward ports with uPNP
|
||||
#upnp=1
|
||||
|
@ -65,4 +80,3 @@ lang=1
|
|||
|
||||
#Default system priority 0:Realtime, 1:High, 2:AboveNormal, 3:Normal, 4:BelowNormal, 5:Idle
|
||||
priority=1
|
||||
|
||||
|
|
10
start.sh
10
start.sh
|
@ -1,11 +1,13 @@
|
|||
#!/bin/bash
|
||||
set -euxo pipefail
|
||||
|
||||
if ! [ -e /data/config.ini ]; then
|
||||
cp ${SERVER}/config.ini.default /data/config.ini
|
||||
fi
|
||||
|
||||
# FIX: The ZIP archive does not have correct permissions
|
||||
chmod +x /home/gameserver/terraria/Dedicated\ Server/Linux/TerrariaServer*
|
||||
SERVER_BINARY=$(find /home/gameserver -name 'TerrariaServer.bin.x86_64')
|
||||
|
||||
exec tail -f /dev/null | ${SERVER}/Dedicated\ Server/Linux/TerrariaServer.bin.x86_64 \
|
||||
-config /data/config.ini
|
||||
# FIX: The ZIP archive does not have correct permissions
|
||||
chmod +x "${SERVER_BINARY}"
|
||||
|
||||
exec tail -f /dev/null | "${SERVER_BINARY}" -config /data/config.ini "$@"
|
||||
|
|
Loading…
Reference in a new issue