Nick Schenone

Results 4 comments of Nick Schenone

The following resolves the issue: ```python serving_fn.set_env("MLRUN_DBPATH", "http://host.docker.internal:8080/") serving_fn.spec.volumes = [{'name': 'mlrun-data-mount', 'hostPath': {'path': '/Users/nick/mlrun-data'}}] serving_fn.spec.volume_mounts = [{'name': 'mlrun-data-mount', 'mountPath': '/home/jovyan/data'}] ``` This is assuming running in Jupyter and on...

I ran into the same thing. Looks like the program hits an error and exits without displaying anything. Check the output of `activity.log`. In my case, the issue was that...

Getting similar memory leak issues here on version 0.7.0

Yes absolutely here's my compose ```yaml version: "3.3" services: uptime-kuma: restart: unless-stopped image: louislam/uptime-kuma:1 container_name: uptime_kuma ports: - "3003:3001" volumes: - ./config:/app/data - /var/run/docker.sock:/var/run/docker.sock autokuma: container_name: autokuma image: ghcr.io/bigboot/autokuma:latest restart:...