prelington commited on
Commit
15b92a1
ยท
verified ยท
1 Parent(s): f1a0c5f

Create deploy.sh

Browse files
Files changed (1) hide show
  1. deploy.sh +17 -0
deploy.sh ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ echo "๐Ÿš€ Deploying OrcaleSeek..."
4
+
5
+ # Build Docker image
6
+ docker build -t orcale-seek .
7
+
8
+ # Run with GPU support
9
+ docker run -d \
10
+ --gpus all \
11
+ -p 8000:8000 \
12
+ --name orcale-seek-container \
13
+ orcale-seek
14
+
15
+ echo "โœ… OrcaleSeek deployed successfully!"
16
+ echo "๐Ÿ“Š API available at: http://localhost:8000"
17
+ echo "๐Ÿ“š Docs at: http://localhost:8000/docs"