docker run \
--rm \
--interactive \
--tty \
--user $(id -u):$(id -g) \
--volume $PWD:/app \
composer sh -c '
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function FindProxyForURL(url, host) { | |
var ProxyConfig = "DIRECT"; | |
if (dnsDomainIs(host, "localhost.vps-3fda5bde.machine.catalincezarene.com")) { | |
ProxyConfig = "SOCKS5 127.0.0.1:9900; SOCKS 127.0.0.1:9900"; | |
} | |
return ProxyConfig; | |
} |