PHP Classes

File: docker/build_all.sh

Recommend this page to a friend!
  Classes of Punto Waskito   PHP CRUD API   docker/build_all.sh   Download  
File: docker/build_all.sh
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP CRUD API
Provide API to manipulate database table records
Author: By
Last change:
Date: 3 years ago
Size: 111 bytes
 

Contents

Class file image Download
#!/bin/bash FILES=* for f in $FILES do if [[ -d "$f" ]] then docker build "$f" -t "php-crud-api:$f" fi done