Skip to content
Snippets Groups Projects
build-images.sh 178 B
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/bash
    
    Andrea Ceccanti's avatar
    Andrea Ceccanti committed
    set -e
    
    S2_IMAGES=${S2_IMAGES:-"base build clients ngx-voms-build ts"}
    
    for i in ${S2_IMAGES}; do
      cd $i
      build-docker-image.sh
      push-docker-image.sh
      cd ..
    done