redesign
This commit is contained in:
parent
0d88131648
commit
97aa8fabe2
24
docker/Dockerfile
Normal file
24
docker/Dockerfile
Normal file
@ -0,0 +1,24 @@
|
||||
FROM mono:latest
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y wget unzip xvfb x11vnc xterm i3
|
||||
|
||||
# Game + ModLoader
|
||||
RUN mkdir -p /data/Stardew && \
|
||||
mkdir -p /data/nexus && \
|
||||
wget https://eris.cc/Stardew_latest_1.4.tar -qO /data/latest.tar && \
|
||||
tar xvf /data/latest.tar -C /data/Stardew && \
|
||||
wget https://github.com/Pathoschild/SMAPI/releases/download/3.4.1/SMAPI-3.4.1-installer.zip -qO /data/nexus.zip && \
|
||||
unzip /data/nexus.zip -d /data/nexus/ && \
|
||||
/bin/bash -c "echo -e \"2\n/data/Stardew/Stardew\ Valley\n1\n\" | /usr/bin/mono /data/nexus/SMAPI\ 3.4.1\ installer/internal/unix-install.exe"
|
||||
|
||||
#mods
|
||||
COPY mods/alwayson.zip /data/alwayson.tar
|
||||
COPY mods/unlimitedplayers.zip /data/unlimitedplayers.tar
|
||||
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
||||
|
||||
RUN unzip /data/alwayson.zip -d /data/Stardew/Stardew\ Valley/Mods && \
|
||||
unzip /data/unlimitedplayers.zip -d /data/Stardew/Stardew\ Valley/Mods
|
||||
|
||||
|
||||
ENTRYPOINT ["/docker-entrypoint.sh"]
|
10
docker/docker-entrypoint.sh
Executable file
10
docker/docker-entrypoint.sh
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
Xvfb :10 -screen 0 1000x1000x24 -ac &
|
||||
export DISPLAY=:10.0
|
||||
x11vnc -display :10 -rfbport 5900 -rfbportv6 -1 -no6 -noipv6 -httpportv6 -1 -forever -desktop StardewValley -cursor arrow -shared -passwd 23eris42 &
|
||||
sleep 10
|
||||
i3 &
|
||||
|
||||
TERM=xterm
|
||||
/data/Stardew/Stardew\ Valley/StardewValley
|
BIN
docker/mods/alwayson.zip
Normal file
BIN
docker/mods/alwayson.zip
Normal file
Binary file not shown.
BIN
docker/mods/unlimitedplayers.zip
Normal file
BIN
docker/mods/unlimitedplayers.zip
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user