#!/bin/bash # # Spin up a docker lamp image. # # Usage: # ./readme-lamp.sh [php-version] # # php-version: 5 or 7 (default) # # INSTRUCTIONS for testing with docker-lamp-php{5,7}: # # After the docker container spins up, # the mysql password will be displayed. # - MySQL on port 3306 # - Apache on port 80 # # Don't forget to create the database: # mysql -uadmin -pXXX -h127.0.0.1 -e "create database hnode;" # and populate the schema/initial data with: # mysql -uadmin -pXXX -h127.0.0.1 hnode < ../h-source/tables.sql if [ -z "$1" ]; then docker-compose up --build lamp-php7 else docker-compose up --build lamp-php"$1" fi