services: app: build: . env_file: .env environment: SQLITE_PATH: /data/neuralhunt.db ARTIFACT_DIR: /data/artifacts ports: - "8080:8080" # Lets the optional ComfyUI/A1111 providers reach a UI running on the Docker host. extra_hosts: - "host.docker.internal:host-gateway" volumes: - neuralhunt_data:/data restart: unless-stopped volumes: neuralhunt_data: {}