sshx / start.sh
xdragxt's picture
Create start.sh
185bb5a verified
raw
history blame
178 Bytes
#!/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