https://github.com/ddev/ddev-phpmyadmin
phpMyAdmin web-based database browser for DDEV
https://github.com/ddev/ddev-phpmyadmin
ddev-get
Last synced: 10 months ago
JSON representation
phpMyAdmin web-based database browser for DDEV
- Host: GitHub
- URL: https://github.com/ddev/ddev-phpmyadmin
- Owner: ddev
- License: apache-2.0
- Created: 2023-06-15T00:18:14.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-11T15:28:37.000Z (about 1 year ago)
- Last Synced: 2025-04-11T20:46:03.784Z (about 1 year ago)
- Topics: ddev-get
- Language: Shell
- Homepage:
- Size: 62.5 KB
- Stars: 13
- Watchers: 5
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://addons.ddev.com)
[](https://github.com/ddev/ddev-phpmyadmin/actions/workflows/tests.yml?query=branch%3Amain)
[](https://github.com/ddev/ddev-phpmyadmin/commits)
[](https://github.com/ddev/ddev-phpmyadmin/releases/latest)
# DDEV phpMyAdmin
## Overview
[phpMyAdmin](https://www.phpmyadmin.net/) is a free and open source administration tool for MySQL and MariaDB.
This add-on integrates phpMyAdmin into your [DDEV](https://ddev.com/) project.
## Installation
```bash
ddev add-on get ddev/ddev-phpmyadmin
ddev restart
```
After installation, make sure to commit the `.ddev` directory to version control.
## Usage
| Command | Description |
| ------- | ----------- |
| `ddev phpmyadmin` | Open phpMyAdmin in your browser (`https://.ddev.site:8037`) |
| `ddev describe` | View service status and used ports for phpMyAdmin |
| `ddev logs -s phpmyadmin` | Check phpMyAdmin logs |
## Advanced Customization
To change the Docker image:
```sh
ddev dotenv set .ddev/.env.phpmyadmin --phpmyadmin-docker-image=phpmyadmin:5
ddev add-on get ddev/ddev-phpmyadmin
ddev restart
```
Make sure to commit the `.ddev/.env.phpmyadmin` file to version control.
All customization options (use with caution):
| Variable | Flag | Default |
| -------- | ---- | ------- |
| `PHPMYADMIN_DOCKER_IMAGE` | `--phpmyadmin-docker-image` | `phpmyadmin:5` |
## Credits
**Contributed by [@rfay](https://github.com/rfay)**
**Maintained by the [DDEV team](https://ddev.com/support-ddev/)**