Compare commits
11
Commits
47d8368998
...
40d7767451
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
40d7767451 | ||
|
|
969cff7202 | ||
|
|
e486a92ced | ||
|
|
08fbb9eafe | ||
|
|
65be6ada1d | ||
|
|
8d0c6f14e2 | ||
|
|
bbc275c4be | ||
|
|
af8cec2453 | ||
|
|
226352c379 | ||
|
|
8b9151a579 | ||
|
|
a5d54f4e3e |
+3
-3
@@ -1,5 +1,5 @@
|
||||
## 2026-07-28T17:48:26Z
|
||||
## 2026-07-28T17:56:43Z
|
||||
|
||||
- Update base digest to gitea.fithwum.tech/fithwum/debian-base@sha256:4023732c1234033dd440901f801b44288d6acd1c2d9db5918b104028dbfbc31a (fithwum)
|
||||
- update (fithwum)
|
||||
- update (fithwum)
|
||||
- Merge build-info updates (fithwum)
|
||||
- Update build-info on 2026-07-28T17:53:30Z [skip ci] (fithwum)
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"version": "latest",
|
||||
"commit": "287554c8db9350677f235506c1e8ad45fed9f867",
|
||||
"build_time": "2026-07-28T17:18:45Z",
|
||||
"commit": "969cff7202be3e06def81b544f13329dc7fbd115",
|
||||
"build_time": "2026-07-28T17:56:55Z",
|
||||
"image_tag": "gitea.fithwum.tech/fithwum/vintage-story:latest",
|
||||
"digest": "gitea.fithwum.tech/fithwum/vintage-story@sha256:1219e7ce8bc2db852f7e9cd317210961375583103ae636f86098d1a0b36fe34e",
|
||||
"digest": "gitea.fithwum.tech/fithwum/vintage-story@sha256:b7143eeca154aa969de7a1ec6130b981234b362587e40a9d8c95c2f88aef0c94",
|
||||
"image_size": "410MB",
|
||||
"image_size_bytes": 430957844
|
||||
"image_size_bytes": 430943722
|
||||
}
|
||||
|
||||
@@ -6,6 +6,7 @@ MARKER_FILE=$VS_SERVER_DIR/.setup_done
|
||||
VS_SERVER_DIR=/vs_server/server
|
||||
VS_DATA_DIR=/vs_server/server/data
|
||||
START_FILE=$VS_SERVER_DIR/server-$VS_VERSION.sh
|
||||
LOG_FILE=$VS_DATA_DIR/Logs/server-main.log
|
||||
VS_SERVER_FILE=https://cdn.vintagestory.at/gamefiles/$VS_CHANNEL/vs_server_linux-x64_$VS_VERSION.tar.gz
|
||||
MS_REPO_URL=https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb
|
||||
USERNAME=adduser vintagestory
|
||||
@@ -100,7 +101,16 @@ fi
|
||||
# Run vintage-story server.
|
||||
echo " "
|
||||
echo "INFO ! Starting vintage-story Server $VS_VERSION"
|
||||
echo "Tailing server log to keep container active..."
|
||||
exec $VS_SERVER_DIR/server-$VS_VERSION.sh start && exec tail -F $VS_DATA_DIR/Logs/server-main.log
|
||||
.$VS_SERVER_DIR/server-$VS_VERSION.sh start
|
||||
|
||||
echo "Waiting for the server log file to be created..."
|
||||
# Loop indefinitely until the log file actually exists on disk
|
||||
until [ -f "$LOG_FILE" ]; do
|
||||
sleep 1
|
||||
done
|
||||
|
||||
echo "Log file found! Streaming server console now..."
|
||||
# Hand off PID 1 to tail, keeping the container active permanently
|
||||
exec tail -f "$LOG_FILE"
|
||||
|
||||
exit
|
||||
Reference in New Issue
Block a user