-
Notifications
You must be signed in to change notification settings - Fork 3
Description
Hi ,
I think there can be an error in your run.sh script.
if [[ ! -d $APPLICATION_HOME ]] condition doesn't work as you intended to. It is checking if the folder exists and it should be actually checking if the folder is empty.
which basically results in this after container launch:
And second thing is even if I manually copy the phpbb3 files it still ives me this during install:
although if I use cli it is all fine:
docker exec -ti phpbb mysql -u admin -p -pdrMPlCm71M2c
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.5.43-0ubuntu0.14.04.1 (Ubuntu)
Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
Can you please help me with this?

