Spaces:
No application file
No application file
File size: 392 Bytes
ca767c0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
version: '3.8'
services:
backend:
build:
context: .
dockerfile: backend.Dockerfile
ports:
- "2000:2000"
environment:
- GROQ_API_KEY=${GROQ_API_KEY}
restart: always
frontend:
build:
context: .
dockerfile: frontend.Dockerfile
ports:
- "8501:8501"
depends_on:
- backend
restart: always |