acoustic-refrigerator-10961
12/13/2022, 5:08 PMDOCKER_HOST=unix://$HOME/.rd/docker.sock
I am able to pull images and run containers. Port forwarding works. But the UI never even attempts to use the mitmproxy. I've set the self-signed certificate to be trusted both inside the VM and on my host machine. So no kubernetes since it can't even list possible versions.fast-garage-66093
12/14/2022, 12:14 AM~/Library/Application\ Support/rancher-desktop/lima/_config/override.yaml
with the settings:
env:
HTTPS_PROXY: <http://10.10.10.10:80>
HTTP_PROXY: http:/10.10.10.10:80
NO_PROXY
to avoid locations), you can also set the variable just for the docker
service by editing /etc/init.d/docker
:
supervise_daemon_args="--stderr \"${DOCKER_ERRFILE}\" --stdout \"${DOCKER_OUTFILE}\""
supervise_daemon_args="-e HTTPS_PROXY=<http://127.0.0.1:3128> $supervise_daemon_args"
override.yaml
approach first!127.0.0.1
or localhost
as the proxy address; you need the actual IP address because you are inside the VM and want to reach the host. You may be able to use host.rancher-desktop.internal
.acoustic-refrigerator-10961
12/14/2022, 3:25 AM