File size: 355 Bytes
4851501 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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
|