Technical recipes for frequently and infrequently recurring problems
curl --user YOUR_USERNAME:YOUR_PASSWORD https://some-url-behind-a-vpn.library.institution.edu
then bash into your docker container
docker-compose exec YOUR_SERVICE_HERE bash
and run the same command as before, this time from inside your container
curl --user YOUR_USERNAME:YOUR_PASSWORD https://some-url-behind-a-vpn.library.institution.edu
{
"debug": true,
"default-address-pools": [
{
"base": "10.160.0.0/16",
"size": 24
}
],
"experimental": false
}
then click on “Apply & Restart” in the bottom right corner
docker-compose down
then remove the existing local Docker network
docker network prune
docker-compose up YOUR_SERVICE_HERE
then bash into your docker container
docker-compose exec YOUR_SERVICE_HERE bash
and run the same command as before, this time from inside your container, now running on a freshly minted private network
curl --user YOUR_USERNAME:YOUR_PASSWORD https://some-url-behind-a-vpn.library.institution.edu