This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # set your own logins! | |
| #QUAY_USER="****" | |
| #QUAY_TOKEN="****" | |
| #RRIO_USERNAME="****" | |
| #RRIO_PASSWORD="****" | |
| # login to quay.io | |
| REGISTRY="quay.io" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Importing this modules will configure the global undici agent, which is used to provide | |
| * global `fetch()` support, to use an http proxy if present during development. Unfortunately | |
| * undici doesn't come with this functionality so we implement a solution that is not fully | |
| * correct as to the way that proxy environment variables are supposed to be parsed. | |
| * | |
| * This only goes into effect during development, though, and it's functional enough for that | |
| * purpose. | |
| */ |
OlderNewer