services: web: build: . container_name: demo-sites-builder command: ["bash", "/app/docker/entrypoint.sh"] ports: - "8014:8014" volumes: - .:/app environment: PORT: "8014" DJANGO_DEBUG: "1" DJANGO_SECRET_KEY: "dev-only-secret-key-change-me" OLLAMA_URL: "http://host.docker.internal:11434" OLLAMA_MODEL: "llama3.1" extra_hosts: - "host.docker.internal:host-gateway"