Spaces:
Runtime error
Runtime error
chore: add docker-compose.yml for easier deployment
Browse filesCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- docker-compose.yml +22 -0
docker-compose.yml
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Docker Compose for Conformal Protein Retrieval
|
| 2 |
+
#
|
| 3 |
+
# Usage:
|
| 4 |
+
# docker-compose up # Start the GUI
|
| 5 |
+
# docker-compose up -d # Start in background
|
| 6 |
+
# docker-compose down # Stop
|
| 7 |
+
|
| 8 |
+
version: '3.8'
|
| 9 |
+
|
| 10 |
+
services:
|
| 11 |
+
cpr:
|
| 12 |
+
build: .
|
| 13 |
+
ports:
|
| 14 |
+
- "7860:7860"
|
| 15 |
+
volumes:
|
| 16 |
+
- ./data:/workspace/data
|
| 17 |
+
- ./results:/workspace/results
|
| 18 |
+
- ./protein_vec_models:/workspace/protein_vec_models
|
| 19 |
+
environment:
|
| 20 |
+
- GRADIO_SERVER_NAME=0.0.0.0
|
| 21 |
+
- GRADIO_SERVER_PORT=7860
|
| 22 |
+
restart: unless-stopped
|