Spaces:
Sleeping
Sleeping
Darwin commited on
Commit ·
f3fa633
1
Parent(s): 095ab63
Add docker-compose.yaml for HF Spaces
Browse files- docker-compose.yaml +9 -0
docker-compose.yaml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version: "3"
|
| 2 |
+
services:
|
| 3 |
+
app:
|
| 4 |
+
build: .
|
| 5 |
+
ports:
|
| 6 |
+
- "7860:7860"
|
| 7 |
+
environment:
|
| 8 |
+
- PORT=7860
|
| 9 |
+
restart: unless-stopped
|