We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47c047d commit 223154cCopy full SHA for 223154c
scripts/docker-entrypoint.sh
@@ -80,7 +80,7 @@ install_phpbb() {
80
# Configure phpBB if not already configured
81
configure_phpbb() {
82
# Check if config.php exists and is not empty
83
- if [ ! -f "${PHPBB_ROOT:-/opt/phpbb}/phpbb/config/config.php" ] || [ ! -s "${PHPBB_ROOT:-/opt/phpbb}/phpbb/config/config.php" ]; then
+ if [ ! -f "${PHPBB_ROOT:-/opt/phpbb}/phpbb/config.php" ] || [ ! -s "${PHPBB_ROOT:-/opt/phpbb}/phpbb/config.php" ]; then
84
log "Configuration file not found or is empty, running YML-based installer..."
85
if ! /opt/.docker/install-from-yml.sh; then
86
log "ERROR: Failed to configure phpBB. Exiting container."
0 commit comments