The Hoof & Paw
DocsCategoriesTagsView the current conditions from the WolfspyreLabs WeatherstationToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeBack to homepage

Wolfspyre Labs Docker Configuration

Some stuff we do for docker setups to make things moar awesome local env config in the vm THIS IS WRONG!!! /etc/docker/config.json: 1 2 3 4 5 6 7 8 9 10 11 { "proxies": { "default": { "httpProxy": "http://skwirreltrap.wolfspyre.io:3128", "httpsProxy": "https://skwirreltrap.wolfspyre.io:3143", "noProxy": "*.wolfspyre.io,*.wolfspyre.com,127.0.0.0/8,10.0.0.0/8,198.18.0.0/15,192.0.2.0/24" } } } /etc/docker/daemon.json: 1 { "log-driver": "journald"} the way to set this information with systemd is: /etc/systemd/system/docker.service.d/wolfspyre-settings.conf 1 2 3 4 [Service] Environment="HTTP_PROXY=http://skwirreltrap.wolfspyre.io:3128" Environment="HTTPS_PROXY=http://skwirreltrap.wolfspyre.io:3128" Environment="NO_PROXY=localhost,127.0.0.1,*.wolfspyre.io,*.wolfspyre.com,127.0.0.0/8,10.0.0.0/8,198.18.0.0/15,192.0.2.0/24" This is how you properly set it up now ( 5/6/2022) 1 2 3 4 5 6 7 8 9 cat << EOF >> /etc/systemd/system/docker.
Read full post gdoc_arrow_right_alt