PHP Classes

File: docker/init.sh

Recommend this page to a friend!
  Classes of Ogbemudia Osayawe   Conway's Game of Life PHP   docker/init.sh   Download  
File: docker/init.sh
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Conway's Game of Life PHP
Implementation of the game of life simulation
Author: By
Last change:
Date: 10 months ago
Size: 250 bytes
 

Contents

Class file image Download
#!/usr/bin/env bash # Ensure /.composer exists and is writable if [ ! -d /.composer ]; then mkdir /.composer fi chmod -R ugo+rw /.composer # Run a command or start supervisord if [ $# -gt 0 ];then exec "$@" else /usr/bin/supervisord fi