185bb5a
1
2
3
4
5
6
7
8
#!/bin/bash # Start sshx in detached mode to avoid container shutdown nohup sshx > /dev/null 2>&1 & # Start the FastAPI server exec uvicorn main:app --host 0.0.0.0 --port 7860