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"