phpMyAdmin
https://www.phpmyadmin.net/
phpMyAdmin is a free software tool written in PHP, intended to handle the administration of MySQL over the Web. phpMyAdmin supports a wide range of operations on MySQL and MariaDB. Frequently used operations (managing databases, tables, columns, relations, indexes, users, permissions, etc) can be performed via the user interface, while you still have the ability to directly execute any SQL statement.
docker run
https://github.com/fanqingsong/pma-docker
https://github.com/linuxserver/docker-phpmyadmin
---
services:
phpmyadmin:
image: lscr.io/linuxserver/phpmyadmin:latest
container_name: phpmyadmin
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- PMA_ARBITRARY=1 #optional
- PMA_ABSOLUTE_URI=https://phpmyadmin.example.com #optional
volumes:
- /path/to/phpmyadmin/config:/config
ports:
- 80:80
restart: unless-stopped
标签:phpMyAdmin,phpmyadmin,PMA,https,docker,80 From: https://www.cnblogs.com/lightsong/p/18305109docker run --name myadmin -d -e PMA_ARBITRARY=1 -p 8080:80 phpmyadmin/phpmyadmin