117
This directory contains the configuration for use helm chart a custom phpMyAdmin Docker image based on the official phpMyAdmin image with use fpm-apache and the DarkWolf theme added.

Environment variables can be configured as per the official phpMyAdmin documentation.
Nginx configuration documentation can be found Nginx documentation.
Here is a sample nginx.conf file to use with this setup:
server {
listen 80;
server_name localhost;
root /var/www/html;
index index.php index.html index.htm;
location ~ \.php$ {
fastcgi_pass phpmyadmin:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
}
The DarkWolf theme is automatically installed and available in the theme selector within phpMyAdmin. Themes using from phpMyAdmin Themes Repository.
Run for helm chart or use docker-compose to start the services:
Content type
Image
Digest
sha256:9155d22ca…
Size
54.9 MB
Last updated
11 months ago
docker pull cdnagroup/phpmyadmin:5.2.3-fpm