Spaces:
Build error
Build error
Commit
·
077e0d6
1
Parent(s):
0cfbdb0
created docker-compose
Browse files- docker-compose.yaml +15 -0
docker-compose.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
version: '3'
|
2 |
+
|
3 |
+
services:
|
4 |
+
langchain-serve:
|
5 |
+
build:
|
6 |
+
context: .
|
7 |
+
target: langchain-serve-img
|
8 |
+
ports:
|
9 |
+
- '8080:8080'
|
10 |
+
pdf-gpt:
|
11 |
+
build:
|
12 |
+
context: .
|
13 |
+
target: pdf-gpt-img
|
14 |
+
ports:
|
15 |
+
- '7860:7860'
|