PHP Classes

File: docker/run_all.sh

Recommend this page to a friend!
  Classes of Punto Waskito   PHP CRUD API   docker/run_all.sh   Download  
File: docker/run_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: 223 bytes
 

Contents

Class file image Download
#!/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