Unomaly uses Docker containers for backend services, and the Docker engine can be configured to use a HTTP proxy like this:
mkdir -p /root/.docker/
nano /root/.docker/config.json
Paste the following configuration, replacing the URLs for your local proxy:
{
"proxies":
{
"default":
{
"httpProxy": "http://127.0.0.1:3001",
"httpsProxy": "http://127.0.0.1:3001",
"noProxy": "localhost,0.0.0.0"
}
}
}
Note that the "noProxy" setting needs to contain the options set in the example above.
Finally, restart Unomaly to have the settings applied:
unomaly restart