aboutsummaryrefslogtreecommitdiff
path: root/readme-php5.sh
blob: 4bad3aabc014f5b2dc760e5a67e92f42a86c3fc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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

patch -p1 < config-docker.patch

docker-compose up --build lamp-php5