version: "3.9" services: tor: image: dperson/torproxy:latest command: -n restart: unless-stopped ollama: image: ollama/ollama:latest volumes: - ollama:/root/.ollama restart: unless-stopped runner: build: context: .. dockerfile: docker/runner/Dockerfile environment: XDG_STATE_HOME: /state XDG_CONFIG_HOME: /config XDG_CACHE_HOME: /cache OLLAMA_BASE_URL: http://ollama:11434 ALL_PROXY: socks5h://tor:9050 NO_PROXY: localhost,127.0.0.1,ollama volumes: - /home/kompanion/.local/state/kompanion:/state - /home/kompanion/.config/kompanion:/config - /home/kompanion/.cache/kompanion:/cache depends_on: [ollama, tor] restart: unless-stopped volumes: ollama: