DrPsychick / docker-dnsmasq

dnsmasq docker image, fully configurable through ENV
GNU General Public License v3.0
30 stars 5 forks source link

CircleCI error: write /dev/stdout: broken pipe #19

Closed DrPsychick closed 1 year ago

DrPsychick commented 1 year ago

Something in this part of the pipeline code causes this, as it only happens on NOT "latest". I just can't figure out what it is.

          # get dnsmasq version
          if [ "$TAG" != "latest" ]; then 
            DNSMASQ_VERSION="$(docker run --rm -it $IMAGE:$TAG --version |head -n1 |sed -e 's/Dnsmasq version \([0-9.]*\) *Copyright.*/\1/')"
            export TAG="$DNSMASQ_VERSION"; 
          fi