# Docker Client Proxy ## Metadata **Status**:: #x **Zettel**:: #zettel/fleeting **Created**:: [[2024-03-19]] **Similar**:: [[Docker Service Proxy]] ## Synopsis Client Proxy is used inside containers. Edit `$HOME/.docker/config.json` ```json { "proxies": { "default": { "httpProxy": "http://10.31.0.6:7890", "httpsProxy": "http://10.31.0.6:7890", "noProxy": "*.test.example.com,.example.org,127.0.0.0/8" } } } ```