CircleCI commited on
Commit
3b55b54
·
0 Parent(s):

Deploy from CircleCI

Browse files
Files changed (2) hide show
  1. README.md +4 -0
  2. docker-compose.yaml +23 -0
README.md ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ # LLMopsapp
2
+
3
+ This Hugging Face Space deploys Docker containers from Docker Hub.
4
+ The application consists of a backend service and a Streamlit frontend.
docker-compose.yaml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: '3.8'
2
+ services:
3
+ backend:
4
+ image: asaporta69/app-backend:latest
5
+ ports:
6
+ - 8000:8000
7
+ restart: always
8
+ networks:
9
+ - app
10
+ container_name: backend
11
+ frontend:
12
+ image: asaporta69/app-frontend:latest
13
+ ports:
14
+ - 8501:8501
15
+ depends_on:
16
+ - backend
17
+ restart: always
18
+ networks:
19
+ - app
20
+ container_name: frontend
21
+ networks:
22
+ app:
23
+ driver: bridge