aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuchen Pei <hi@ypei.me>2021-08-26 11:56:07 +1000
committerYuchen Pei <hi@ypei.me>2021-09-06 10:46:35 +1000
commit6995bcca056862e52d1167d6ee7e67d73a2bdd95 (patch)
treeba86a976e9d14efcf49fff709cf637aaa6d05aef
parentefa352a6de4de467e645c50503257e17254f436e (diff)
updating the database creation command to be more "batchy"
-rwxr-xr-xdocker/readme-php5.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/docker/readme-php5.sh b/docker/readme-php5.sh
index fb62a4d..7ec58b1 100755
--- a/docker/readme-php5.sh
+++ b/docker/readme-php5.sh
@@ -8,9 +8,7 @@
# - Apache on port 80
#
# Don't forget to create the database:
-# mysql -uadmin -pXXX -h127.0.0.1
-# > create database hnode;
-# > ^D
+# 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