To save on bandwidth and to improve everyone's downloading speed and development experience we are asking everyone to update their Docker and NPM config to prioritize using a cache setup on our local network. If you have questions how a pull through cache works you can read more here.
Below are instructions, NPM is the same on all environments but docker will be different per OS.
To use the local registry just run the below command.
npm set registry http://172.23.0.79:4873
To remove the registry after the hackathon run this.
npm config delete registry http://172.23.0.79:4873
C:\Users\<YourName>\.docker\daemon.json
~/.docker/config.json
sudo nano /etc/docker/daemon.json
{
"registry-mirrors": ["http://172.23.0.79:5000"]
}
End the process and close the program, then start it back up.
sudo systemctl restart docker