aboutsummaryrefslogtreecommitdiff
path: root/docker/readme-php5.sh
blob: 7ec58b1063c9780d807cc219139bc6560c4c66e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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 -e "create database hnode;"
# and populate the schema/initial data with:
#	mysql -uadmin -pXXX -h127.0.0.1 hnode < ../h-source/tables.sql

docker-compose up --build lamp-php5