Compare commits

..

No commits in common. "d1eebc9714a4de947146050d5a580d07b4542ac2" and "e0cf8396215c7d00a389a72fe2471c6cd32146b6" have entirely different histories.

4 changed files with 7 additions and 7 deletions

View File

@ -7,7 +7,7 @@ Services deployed on [matthewtran.com](https://matthewtran.com).
- monerod - monerod
- p2pool (`xmrig -o matthewtran.com`) - p2pool (`xmrig -o matthewtran.com`)
- minecraft - minecraft
- ~~minecraft bedrock~~ - minecraft bedrock
- terraria - terraria
- nas (`<server>/<name>` on LAN) - nas (`<server>/<name>` on LAN)
- wireguard - wireguard

View File

@ -17,7 +17,7 @@ IMAGES = {
], ],
"game": [ "game": [
"minecraft", "minecraft",
# "minecraft_bedrock", "minecraft_bedrock",
"terraria", "terraria",
], ],
"nas": [ "nas": [

View File

@ -5,8 +5,8 @@ RUN apt-get install -y wget unzip curl tmux
WORKDIR /root WORKDIR /root
# from https://www.minecraft.net/en-us/download/server/bedrock (currently 1.21.82.1) # from https://www.minecraft.net/en-us/download/server/bedrock (currently 1.21.73.01)
RUN wget -O server.zip --user-agent "Mozilla/5.0" https://www.minecraft.net/bedrockdedicatedserver/bin-linux/bedrock-server-1.21.82.1.zip RUN wget -O server.zip --user-agent "Mozilla/5.0" https://www.minecraft.net/bedrockdedicatedserver/bin-linux/bedrock-server-1.21.73.01.zip
RUN unzip server.zip && rm server.zip RUN unzip server.zip && rm server.zip
COPY entry.sh ./ COPY entry.sh ./

View File

@ -5,10 +5,10 @@ RUN apt-get install -y wget
WORKDIR /root WORKDIR /root
# currently v4.6 # currently v4.5
RUN wget -O p2pool.tar.gz https://github.com/SChernykh/p2pool/releases/download/v4.6/p2pool-v4.6-linux-x64.tar.gz RUN wget -O p2pool.tar.gz https://github.com/SChernykh/p2pool/releases/download/v4.5/p2pool-v4.5-linux-x64.tar.gz
RUN tar xvf p2pool.tar.gz && rm p2pool.tar.gz RUN tar xvf p2pool.tar.gz && rm p2pool.tar.gz
RUN mv p2pool-v4.6-linux-x64/p2pool ./p2pool RUN mv p2pool-v4.5-linux-x64/p2pool ./p2pool
COPY entry.sh ./ COPY entry.sh ./