Agent_Calendar / docker-compose.yml
atharv-16's picture
Upload 9 files
02c13f1 verified
raw
history blame contribute delete
535 Bytes
version: '3.8'
services:
calendar-agent:
build: .
ports:
# Map container's 8501 port to host's 8501 port
- "8501:8501"
volumes:
- ./credentials:/app/credentials
environment:
- TZ=Asia/Kolkata
# Add a healthcheck to verify the service is running
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8501"]
interval: 30s
timeout: 10s
retries: 3
# Add clear container name for easier reference
container_name: calendar-assistant