api de gestion de ticket, basé sur php-crud-api. Le but est de décorrélé les outils de gestion des données, afin
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build_all.sh 111B

12345678910
  1. #!/bin/bash
  2. FILES=*
  3. for f in $FILES
  4. do
  5. if [[ -d "$f" ]]
  6. then
  7. docker build "$f" -t "php-crud-api:$f"
  8. fi
  9. done