Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 837 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 837 Bytes

docker-nginx-php-mariadb

Requerimientos:

PHPMyAdmin

Se puede descargar PHPMyAdmin y colocarlo en ./www/html/pma/

Copiar config.sample.inc.php con el nombre de config.inc.php y usar la siguiente configuración

/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'mariadb'; // Nombre del servicio colocado en docker-compose.yml
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = true;