Redesign UI and add first-party Docker runtime support

This commit is contained in:
2026-02-11 11:04:39 +11:00
parent 0e999b85b9
commit 8cb9e43a72
22 changed files with 1730 additions and 811 deletions

9
docker/entrypoint.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
set -eu
CONFIG_DIR="${XTEVE_CONFIG:-/xteve/config}"
PORT="${XTEVE_PORT:-34400}"
mkdir -p "${CONFIG_DIR}"
exec /usr/local/bin/xteve -config "${CONFIG_DIR}" -port "${PORT}" "$@"