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
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
123456789101112 |
- #!/bin/bash
- FILES=*
-
- for f in $FILES
- do
- if [[ -d "$f" ]]
- then
- dir=$(readlink -f ..)
- docker rm "php-crud-api_$f" > /dev/null 2>&1
- docker run -ti -v $dir:/php-crud-api --name "php-crud-api_$f" "php-crud-api:$f"
- fi
- done
|