From 7b2c76f23be47a8753cfe6d197843a82c6ebf26d Mon Sep 17 00:00:00 2001 From: Yuchen Pei Date: Thu, 26 Aug 2021 11:24:58 +1000 Subject: Moving docker files to its own directory. Also applied the docker patch and removed some commented code. --- docker/readme-php5.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 docker/readme-php5.sh (limited to 'docker/readme-php5.sh') diff --git a/docker/readme-php5.sh b/docker/readme-php5.sh new file mode 100755 index 0000000..fb62a4d --- /dev/null +++ b/docker/readme-php5.sh @@ -0,0 +1,18 @@ +#!/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 + +docker-compose up --build lamp-php5 + -- cgit v1.2.3