#!/bin/bash # # INSTRUCTIONS for testing with docker-lamp-php5: # # 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 # > create database hnode; # > ^D # and populate the schema/initial data with: # mysql -uadmin -pXXX -h127.0.0.1 hnode < h-source/tables.sql # mysql -uadmin -pXXX -h127.0.0.1 hnode < h-source/admin/tables.sql patch -p1 < config-docker.patch docker-compose up --build lamp-php5