mirror of
https://github.com/hanxi/xiaomusic.git
synced 2025-12-06 14:52:50 +08:00
12 lines
295 B
Plaintext
12 lines
295 B
Plaintext
[supervisord]
|
|
nodaemon=true # 确保 supervisord 在前台运行,以便 Docker 容器不会退出
|
|
|
|
[program:xiaomusic]
|
|
command=/app/.venv/bin/python3 /app/xiaomusic.py
|
|
directory=/app
|
|
autostart=true
|
|
autorestart=true
|
|
stderr_logfile=/app/xiaomusic.log.txt
|
|
stdout_logfile=/app/xiaomusic.log.txt
|
|
|