Added tshock server; moved env vars to .env file
parent
fa44bd7b0c
commit
ed0f06e797
|
@ -1 +1,3 @@
|
||||||
FABRIC_VERSION=
|
FABRIC_VERSION=
|
||||||
|
XMS=4
|
||||||
|
XMX=4
|
||||||
|
|
|
@ -12,8 +12,8 @@ services:
|
||||||
tty: true
|
tty: true
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
- XMS=4
|
- XMS
|
||||||
- XMX=4
|
- XMX
|
||||||
ports:
|
ports:
|
||||||
- '25565:25565'
|
- '25565:25565'
|
||||||
volumes:
|
volumes:
|
||||||
|
|
|
@ -1,2 +1,4 @@
|
||||||
MC_VERSION=
|
MC_VERSION=
|
||||||
FORGE_VERSION=
|
FORGE_VERSION=
|
||||||
|
XMS=4
|
||||||
|
XMX=4
|
||||||
|
|
|
@ -13,8 +13,8 @@ services:
|
||||||
tty: true
|
tty: true
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
- XMS=4
|
- XMS
|
||||||
- XMX=4
|
- XMX
|
||||||
ports:
|
ports:
|
||||||
- '25565:25565'
|
- '25565:25565'
|
||||||
volumes:
|
volumes:
|
||||||
|
|
|
@ -1,2 +1,4 @@
|
||||||
MC_VERSION=
|
MC_VERSION=
|
||||||
PAPERMC_VERSION=
|
PAPERMC_VERSION=
|
||||||
|
XMS=4
|
||||||
|
XMX=4
|
||||||
|
|
|
@ -14,8 +14,8 @@ services:
|
||||||
tty: true
|
tty: true
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
- XMS=4
|
- XMS
|
||||||
- XMX=4
|
- XMX
|
||||||
ports:
|
ports:
|
||||||
- '25565:25565'
|
- '25565:25565'
|
||||||
volumes:
|
volumes:
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
RELEASE_TAG=
|
||||||
|
AUTOCREATE=2
|
|
@ -0,0 +1,37 @@
|
||||||
|
FROM alpine:latest AS base
|
||||||
|
|
||||||
|
# Build arguments
|
||||||
|
ARG RELEASE_TAG
|
||||||
|
|
||||||
|
# Add unzip & curl
|
||||||
|
RUN apk update && apk add --no-cache unzip curl
|
||||||
|
|
||||||
|
WORKDIR /terraria
|
||||||
|
|
||||||
|
# Download & unzip
|
||||||
|
# TODO convert this to jq?
|
||||||
|
RUN curl -s "https://api.github.com/repos/Pryaxis/TShock/releases/tags/${RELEASE_TAG}" | \
|
||||||
|
grep "browser_download_url" | \
|
||||||
|
grep -o "https[^\"]\+" | \
|
||||||
|
xargs curl -sLo tshock.zip && \
|
||||||
|
unzip tshock.zip && \
|
||||||
|
rm tshock.zip && \
|
||||||
|
# Is there a better way to do this?
|
||||||
|
mv TShock* tshock
|
||||||
|
|
||||||
|
|
||||||
|
FROM mono:latest
|
||||||
|
WORKDIR /terraria
|
||||||
|
|
||||||
|
COPY --from=base /terraria/tshock /terraria
|
||||||
|
|
||||||
|
# Create worlds directory & symlink it
|
||||||
|
RUN mkdir -p worlds logs config /root/.local/share/Terraria && \
|
||||||
|
ln -s /terraria/worlds /root/.local/share/Terraria/Worlds
|
||||||
|
|
||||||
|
ENTRYPOINT \
|
||||||
|
mono /terraria/TerrariaServer.exe \
|
||||||
|
-configpath /terraria/config \
|
||||||
|
-logpath /terraria/logs \
|
||||||
|
-autocreate "$AUTOCREATE" \
|
||||||
|
-world /terraria/worlds/Main.wld
|
|
@ -0,0 +1,21 @@
|
||||||
|
version: '3.5'
|
||||||
|
services:
|
||||||
|
tshock:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
args:
|
||||||
|
- 'RELEASE_TAG=${RELEASE_TAG}'
|
||||||
|
image: 'terraria-tshock:${RELEASE_TAG}'
|
||||||
|
|
||||||
|
restart: 'unless-stopped'
|
||||||
|
stdin_open: true
|
||||||
|
tty: true
|
||||||
|
|
||||||
|
environment:
|
||||||
|
- AUTOCREATE
|
||||||
|
ports:
|
||||||
|
- '7777:7777'
|
||||||
|
volumes:
|
||||||
|
- '/data/tshock/config:/terraria/config'
|
||||||
|
- '/data/tshock/logs:/terraria/logs'
|
||||||
|
- '/data/tshock/worlds:/terraria/worlds'
|
Reference in New Issue