| version: '3.8' | |
| services: | |
| app: | |
| build: . | |
| image: geoquery:latest | |
| ports: | |
| - "8000:8000" | |
| environment: | |
| - GEMINI_API_KEY=${GEMINI_API_KEY} | |
| volumes: | |
| # Optional: Mount data directory if you want to persist changes or add data | |
| # - ./backend/data:/app/backend/data | |
| - ./backend/data/custom:/app/backend/data/custom | |