chatbot / docker-compose.yml
julianubc's picture
change system prompt
88373ec
Raw
History Blame Contribute Delete
427 Bytes
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "8501:8501"
environment:
- GEMINI_API_KEY=${GEMINI_API_KEY:-}
env_file:
- .env
volumes:
- ./src:/app/src
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8501/_stcore/health"]
interval: 30s
timeout: 30s
retries: 3
start_period: 5s