AB_Testing_RAG_Agent / docker-compose.yml
kamkol's picture
Develop the streamlit app
9fa16f1
raw
history blame contribute delete
359 Bytes
version: '3'
services:
ab-testing-rag:
build:
context: .
dockerfile: Dockerfile
container_name: ab-testing-rag
ports:
- "8000:8000"
volumes:
- ./data:/app/data
- ./processed_data:/app/processed_data
- ./.env:/app/.env
environment:
- OPENAI_API_KEY=${OPENAI_API_KEY}
restart: unless-stopped