0

我希望 ddev Web 容器使用我的公司代理设置。否则,当我跑步时,我会composer diagnose得到这个:

uid_1000@d24b5fb17f37:/var/www/html$ composer diagnose
Checking platform settings: OK
Checking git settings: OK
Checking http connectivity to packagist: [Composer\Downloader\TransportException] The "http://repo.packagist.org/packages.json" file could not be downloaded: failed to open stream: Connection timed out
Checking https connectivity to packagist: [Composer\Downloader\TransportException] The "https://repo.packagist.org/packages.json" file could not be downloaded: failed to open stream: Connection timed out
Checking github.com rate limit: FAIL
[Composer\Downloader\TransportException] The "https://api.github.com/rate_limit" file could not be downloaded: failed to open stream: Connection timed out
Checking disk free space: OK
Checking pubkeys: 
Tags Public Key Fingerprint: 57815BA2 7E54DC31 7ECC7CC5 573090D0  87719BA6 8F3BB723 4E5D42D0 84A14642
Dev Public Key Fingerprint: 4AC45767 E5EC2265 2F0C1167 CBBB8A2B  0C708369 153E328C AD90147D AFE50952
OK
Checking composer version: 

  [Composer\Downloader\TransportException]                                                                          
  The "https://getcomposer.org/versions" file could not be downloaded: failed to open stream: Connection timed out  


diagnose

而且我无法正确使用作曲家。

我需要一种将环境变量传递给容器的方法HTTP_PROXY,我该如何实现呢?HTTPS_PROXYNO_PROXY

4

1 回答 1

1

更新 :

好吧,在阅读了一些docker文档之后,有一种正确定义代理的现有方法......请参阅https://docs.docker.com/network/proxy/

通过在主机上创建~/.docker/config.json文件

{
 "proxies":
 {
   "default":
   {
     "httpProxy": "http://ip:port",
     "httpsProxy": "http://user:password@ip:port,
     "noProxy": "*.test.example.com,.example2.com"
   }
 }
}

然后ddev restartdocker 会自动设置所需的 ENV 变量,小写和大写。

有了这个,composer工作,wget工作。apt仍然不能在容器内工作,因为它仍然需要/etc/apt/apt.conf.d/20proxyconf文件中的代理设置,但它可以从 a 工作.ddev/web-build/Dockerfile,我认为这就足够了:)

于 2019-06-25T14:40:36.583 回答