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