Sign inSign up

cdnagroup/phpmyadmin

By cdnagroup

•Updated 11 months ago

Image
Web servers
Content management system
Databases & storage
0

117

cdnagroup/phpmyadmin repository overview

⁠phpMyAdmin Docker Image

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.

alt text

⁠Features

  • Based on official phpMyAdmin image
  • Includes DarkWolf theme for a modern dark interface
  • Easy integration with Docker Compose

⁠Configuration

Environment variables can be configured as per the official phpMyAdmin documentation⁠.

⁠Nginx Configuration

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;
    }
}

⁠Theme

The DarkWolf theme is automatically installed and available in the theme selector within phpMyAdmin. Themes using from phpMyAdmin Themes Repository⁠.

⁠Usage

Run for helm chart or use docker-compose to start the services:

Tag summary

Content type

Image

Digest

sha256:9155d22ca…

Size

54.9 MB

Last updated

11 months ago

docker pull cdnagroup/phpmyadmin:5.2.3-fpm