dolibarr 21.0.0-alpha
install.forced.docker.php
1<?php
2/* Copyright (C) 2016 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
3 * Copyright (C) 2024 Yann Le Doaré <services@linuxconsole.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
20$force_install_nophpinfo = true;
21
23$force_install_noedit = 3;
24
26$force_install_message = 'Welcome to your Dolibarr Docker install';
27
29$force_install_main_data_root = null;
30
32$force_install_mainforcehttps = true;
33
35$force_install_database = getenv('DOLI_DATABASE', true) ?: getenv('DOLI_DATABASE');
36
38$force_install_type = 'mysqli';
39
41$force_install_dbserver = getenv('DOLI_DB_SERVER', true) ?: getenv('DOLI_DB_SERVER');
42
44$force_install_port = 3306;
45
47$force_install_prefix = 'llx_';
48
50$force_install_createdatabase = false;
51
53$force_install_databaselogin = 'root';
54
56$force_install_databasepass = getenv('DOLI_ROOT_PASSWORD', true) ?: getenv('DOLI_ROOT_PASSWORD');
57
59$force_install_createuser = false;
60
62$force_install_databaserootlogin = 'root';
63
65$force_install_databaserootpass = getenv('DOLI_ROOT_PASSWORD', true) ?: getenv('DOLI_ROOT_PASSWORD');
66
68$force_install_dolibarrlogin = 'admin';
69
71$force_install_lockinstall = true;
72
74$force_install_module = '';