mirror of
https://github.com/hamster1963/nezha-dash.git
synced 2025-04-24 21:10:45 +08:00
10 lines
152 B
Bash
10 lines
152 B
Bash
#!/bin/sh
|
|
|
|
# 如果 .env 文件不存在,则创建一个空的 .env 文件
|
|
if [ ! -f /app/.env ]; then
|
|
touch /app/.env
|
|
fi
|
|
|
|
# 启动服务
|
|
exec "$@"
|