chore: sync local updates

This commit is contained in:
2026-05-16 19:03:34 +08:00
parent acba445550
commit 42100c2d0a
102 changed files with 4007 additions and 1477 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/sh
set -e
# 宿主机挂载 /app/data 时会遮住镜像内 logo首次或空目录时从镜像内副本灌入
mkdir -p /app/data/logo /app/data/background
if [ ! "$(ls -A /app/data/logo 2>/dev/null)" ]; then
cp -a /app/logo-dist/. /app/data/logo/
fi
exec "$@"