Spaces:
Runtime error
Runtime error
Create docker-compose.yml
Browse files- docker-compose.yml +9 -0
docker-compose.yml
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
version: '3.8'
|
2 |
+
|
3 |
+
services:
|
4 |
+
app:
|
5 |
+
image: your_image_name # Replace with your actual image name
|
6 |
+
environment:
|
7 |
+
- HUGGING_FACE_TOKEN=${HUGGING_FACE_TOKEN}
|
8 |
+
ports:
|
9 |
+
- "5000:5000" # Adjust the port if necessary
|