File size: 365 Bytes
15b92a1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#!/bin/bash
echo "π Deploying OrcaleSeek..."
# Build Docker image
docker build -t orcale-seek .
# Run with GPU support
docker run -d \
--gpus all \
-p 8000:8000 \
--name orcale-seek-container \
orcale-seek
echo "β
OrcaleSeek deployed successfully!"
echo "π API available at: http://localhost:8000"
echo "π Docs at: http://localhost:8000/docs" |