bitnami/phpmyadminphpMyAdmin 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.
Overview of phpMyAdmin Trademarks: This software listing is packaged by Bitnami. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement.
consoledocker run --name phpmyadmin bitnami/phpmyadmin:latest
You can find the default credentials and available configuration options in the Environment Variables section.
Those are hardened, minimal CVE images built and maintained by Bitnami. Bitnami Secure Images are based on the cloud-optimized, security-hardened enterprise OS Photon Linux. Why choose BSI images?
Each image comes with valuable security metadata. You can view the metadata in our public catalog here. Note: Some data is only available with commercial subscriptions to BSI.
!Alt text !Alt text
If you are looking for our previous generation of images based on Debian Linux, please see the Bitnami Legacy registry.
Deploying Bitnami applications as Helm Charts is the easiest way to get started with our applications on Kubernetes. Read more about the installation in the Bitnami phpMyAdmin Chart GitHub repository.
Dockerfile linksLearn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags in our documentation page.
You can see the equivalence between the different tags by taking a look at the tags-info.yaml file present in the branch folder, i.e bitnami/ASSET/BRANCH/DISTRO/tags-info.yaml.
Subscribe to project updates by watching the bitnami/containers GitHub repo.
To run this application you need Docker Engine >= 1.10.0. Docker Compose is recommended with a version 1.6.0 or later.
phpMyAdmin requires access to a MySQL database or MariaDB database to work. We'll use our very own MariaDB image.
Create a network
consoledocker network create phpmyadmin-tier
Create a volume for MariaDB persistence and create a MariaDB container
consoledocker volume create --name mariadb_data docker run -d --name mariadb -e ALLOW_EMPTY_PASSWORD=yes \ --net phpmyadmin-tier \ --volume mariadb_data:/bitnami/mariadb \ bitnami/mariadb:latest
Launch the phpMyAdmin container
consoledocker run -d --name phpmyadmin -p 80:8080 -p 443:8443 \ --net phpmyadmin-tier \ bitnami/phpmyadmin:latest
Access your application at [***]
consolecurl -sSL [***] > docker-compose.yml docker-compose up -d
Please be aware this file has not undergone internal testing. Consequently, we advise its use exclusively for development or testing purposes. For production-ready deployments, we highly recommend utilizing its associated Bitnami Helm chart.
If you detect any issue in the docker-compose.yaml file, feel free to report it or contribute with a fix by following our Contributing Guidelines.
If you remove the container all your data and configurations will be lost, and the next time you run the image the database will be reinitialized. To avoid this loss of data, you should mount a volume that will persist even after the container is removed.
For persistence you should mount a volume at the /bitnami path. Additionally you should mount a volume for persistence of the MariaDB data.
The above examples define a Docker volume named mariadb_data. The application state will persist as long as this volume is not removed.
To avoid inadvertent removal of these volumes you can mount host directories as data volumes. Alternatively you can make use of volume plugins to host the volume data.
This requires a minor change to the docker-compose.yml file present in this repository:
yamlservices: mariadb: ... volumes: - /path/to/mariadb-persistence:/bitnami/mariadb ...
Create a network (if it does not exist)
consoledocker network create phpmyadmin-tier
Create a MariaDB container with host volume
consoledocker run -d --name mariadb -e ALLOW_EMPTY_PASSWORD=yes \ --net phpmyadmin-tier \ --volume /path/to/mariadb-persistence:/bitnami/mariadb \ bitnami/mariadb:latest
Launch the phpMyAdmin container
consoledocker run -d --name phpmyadmin -p 80:8080 -p 443:8443 \ --net phpmyadmin-tier \ bitnami/phpmyadmin:latest
Bitnami provides up-to-date versions of MariaDB and phpMyAdmin, including security patches, soon after they are made upstream. We recommend that you follow these steps to upgrade your container. We will cover here the upgrade of the phpMyAdmin container. For the MariaDB upgrade see <[***]>
The bitnami/phpmyadmin:latest tag always points to the most recent release. To get the most recent release you can simple repull the latest tag from the Docker Hub with docker pull bitnami/phpmyadmin:latest. However it is recommended to use tagged versions.
Get the updated images:
consoledocker pull bitnami/phpmyadmin:latest
Stop your container
$ docker-compose stop phpmyadmin$ docker stop phpmyadminRemove the currently running container
$ docker-compose rm -v phpmyadmin$ docker rm -v phpmyadminRun the new image
$ docker-compose up phpmyadmindocker run --name phpmyadmin bitnami/phpmyadmin:latest| Name | Description | Default Value |
|---|---|---|
PHPMYADMIN_ALLOW_ARBITRARY_SERVER | Whether to enable database server hostname. | nil |
PHPMYADMIN_ALLOW_REMOTE_CONNECTIONS | Whether to allow remote connections for phpMyAdmin, or force local connections by default. | $PHPMYADMIN_DEFAULT_ALLOW_REMOTE_CONNECTIONS |
PHPMYADMIN_ABSOLUTE_URI | If specified, absolute URL to phpMyAdmin when generating links. | nil |
PHPMYADMIN_EXEC_TIME_LIMIT | If specified, number of seconds a script is allowed to run | nil |
PHPMYADMIN_MEMORY_LIMIT | If specified, number of bytes a script is allowed to allocate. | nil |
DATABASE_HOST | Database server host. | nil |
DATABASE_USER | Database server user. | nil |
DATABASE_PASSWORD | Database server password. | nil |
DATABASE_PORT_NUMBER | Database server port. | nil |
DATABASE_ALLOW_NO_PASSWORD | Whether to allow logins without a password. | nil |
DATABASE_ENABLE_SSL | Whether to enable SSL for the connection between phpMyAdmin and the MySQL server to secure the connection. | nil |
DATABASE_SSL_KEY | Path to the client key file when using SSL. | ${DATABASE_CERTS_DIR}/server_key.pem |
DATABASE_SSL_CERT | Path to the client certificate file when using SSL. | ${DATABASE_CERTS_DIR}/server_certificate.pem |
DATABASE_SSL_CA | Path to the CA file when using SSL. | ${DATABASE_CERTS_DIR}/ca_certificate.pem |
DATABASE_SSL_CA_PATH | Directory containing trusted SSL CA certificates in PEM format. | nil |
DATABASE_SSL_CIPHERS | List of allowable ciphers for connections when using SSL. | nil |
DATABASE_SSL_VERIFY | Enable SSL certificate validation. | yes |
CONFIGURATION_STORAGE_ENABLE | Enable phpMyAdmin configuration storage. | no |
CONFIGURATION_STORAGE_DB_HOST | phpMyAdmin configuration storage database server hostname. | mariadb |
CONFIGURATION_STORAGE_DB_PORT_NUMBER | phpMyAdmin configuration storage database server port. | 3306 |
CONFIGURATION_STORAGE_DB_USER | phpMyAdmin configuration storage database user. | pma |
CONFIGURATION_STORAGE_DB_PASSWORD | phpMyAdmin configuration storage database password. | nil |
CONFIGURATION_STORAGE_DB_NAME | phpMyAdmin configuration storage database name. | phpmyadmin |
CONFIGURATION_ALLOWDENY_ORDER | Set the AllowDeny order. If your rule order is empty, then IP authorization is disabled. Available values are: deny,allow, allow,deny, explicit. | nil |
CONFIGURATION_ALLOWDENY_RULES | Array of strings to allow or deny hosts/user to connect to the database. The value must be literal, following the format allow | deny <username> [from] <ipmask>. | nil |
| Name | Description | Value |
|---|---|---|
PHPMYADMIN_BASE_DIR | phpMyAdmin installation directory. | ${BITNAMI_ROOT_DIR}/phpmyadmin |
PHPMYADMIN_VOLUME_DIR | phpMyAdmin directory for mounted configuration files. | ${BITNAMI_VOLUME_DIR}/phpmyadmin |
PHPMYADMIN_TMP_DIR | phpMyAdmin directory for temporary files. | ${PHPMYADMIN_BASE_DIR}/tmp |
PHPMYADMIN_CONF_FILE | Configuration file for phpMyAdmin. | ${PHPMYADMIN_BASE_DIR}/config.inc.php |
PHPMYADMIN_MOUNTED_CONF_FILE | Mounted configuration file for phpMyAdmin. It will be copied to the phpMyAdmin installation directory during the initialization process. | ${PHPMYADMIN_VOLUME_DIR}/config.inc.php |
PHPMYADMIN_DEFAULT_ALLOW_ARBITRARY_SERVER | Whether to enable database server hostname by default. | no |
PHPMYADMIN_DEFAULT_ALLOW_REMOTE_CONNECTIONS | Whether to allow remote connections for phpMyAdmin, or force local connections. | yes |
DATABASE_DEFAULT_HOST | Default database server host. | mariadb |
DATABASE_DEFAULT_PORT_NUMBER | Default database server port. | 3306 |
DATABASE_DEFAULT_ALLOW_NO_PASSWORD | Whether to allow logins without a password. | yes |
DATABASE_CERTS_DIR | phpMyAdmin directory for certificates. | ${PHPMYADMIN_BASE_DIR}/db_certs |
PHP_DEFAULT_UPLOAD_MAX_FILESIZE | Default max PHP upload file size. | 80M |
PHP_DEFAULT_POST_MAX_SIZE | Default max PHP POST size. | 80M |
PHP_DEFAULT_MEMORY_LIMIT | Default PHP memory limit. | 256M |
This requires a change to the docker-compose.yml file present in this repository:
yamlservices: mariadb: ... environment: - ALLOW_EMPTY_PASSWORD=yes ... phpmyadmin: ... environment: - DATABASE_ALLOW_NO_PASSWORD=false - PHPMYADMIN_ALLOW_ARBITRARY_SERVER=yes ...
consoledocker run -d --name phpmyadmin -p 80:8080 -p 443:8443 \ --net phpmyadmin-tier \ --env PHPMYADMIN_PASSWORD=my_password \ bitnami/phpmyadmin:latest
The Bitnami phpMyAdmin Docker image from the Bitnami Secure Images catalog includes extra features and settings to configure the container with FIPS capabilities. You can configure the next environment variables:
OPENSSL_FIPS: whether OpenSSL runs in FIPS mode or not. yes (default), no.The Bitnami phpMyAdmin Docker image is designed to be extended so it can be used as the base image for your custom web applications.
Before extending this image, please note there are certain configuration settings you can modify using the original image:
APACHE_HTTP_PORT_NUMBER and APACHE_HTTPS_PORT_NUMBER respectively.If your desired customizations cannot be covered using the methods mentioned above, extend the image. To do so, create your own image using a Dockerfile with the format below:
DockerfileFROM bitnami/phpmyadmin ### Put your customizations below ...
Here is an example of extending the image with the following modifications:
vim editorDockerfileFROM bitnami/phpmyadmin ### Change user to perform privileged actions USER 0 ### Install 'vim' RUN install_packages vim ### Revert to the original non-root user USER 1001 ### Enable mod_ratelimit module RUN sed -i -r 's/#LoadModule ratelimit_module/LoadModule ratelimit_module/' /opt/bitnami/apache/conf/httpd.conf ### Modify the ports used by Apache by default ## It is also possible to change these environment variables at runtime ENV APACHE_HTTP_PORT_NUMBER=8181 ENV APACHE_HTTPS_PORT_NUMBER=8143 EXPOSE 8181 8143 ### Modify the default container user USER 1002
Based on the extended image, you can use a Docker Compose file like the one below to add other features:
yamlversion: '2' services: mariadb: image: bitnami/mariadb:latest environment: - MARIADB_ROOT_PASSWORD=bitnami volumes: - mariadb_data:/bitnami/mariadb phpmyadmin: build: . ports: - 80:8181 - 443:8143 depends_on: - mariadb volumes: - phpmyadmin_data:/bitnami/mariadb volumes: mariadb_data: driver: local phpmyadmin_data: driver: local
rootfs/ folder.PHPMYADMIN_ALLOW_NO_PASSWORD environment variable has been deprecated in favor of DATABASE_ALLOW_NO_PASSWORD.PHP_UPLOAD_MAX_FILESIZE for upload_max_filesize, and PHP_POST_MAX_SIZE for post_max_size./bitnami/apache) has been deprecated, and support for this feature will be dropped in the near future. Until then, the container will enable the Apache configuration from that volume if it exists. By default, and if the configuration volume does not exist, the configuration files will be regenerated each time the container is created. Users wanting to apply custom Apache configuration files are advised to mount a volume for the configuration at /opt/bitnami/apache/conf, or mount specific configuration files individually./bitnami/php) has been deprecated, and support for this feature will be dropped in the near future. Until then, the container will enable the PHP configuration from that volume if it exists. By default, and if the configuration volume does not exist, the configuration files will be regenerated each time the container is created. Users wanting to apply custom PHP configuration files are advised to mount a volume for the configuration at /opt/bitnami/php/conf, or mount specific configuration files individually./opt/bitnami/apache/certs has been deprecated, and support for this functionality will be dropped in the near future. Users wanting to enable custom certificates are advised to mount their certificate files on top of the preconfigured ones at /certs.We'd love for you to contribute to this container. You can request new features by creating an issue or submitting a pull request with your c
_Note: the README for this container is longer than the DockerHub length limit of 25000, so it has been trimmed. The full README can be found at [***]
探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
在 Linux 系统配置镜像服务
在 Docker Desktop 配置镜像
Docker Compose 项目配置
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
VS Code Dev Containers 配置
MacOS OrbStack 容器配置
在宝塔面板一键配置镜像
Synology 群晖 NAS 配置
飞牛 fnOS 系统配置镜像
极空间 NAS 系统配置服务
爱快 iKuai 路由系统配置
绿联 NAS 系统配置镜像
QNAP 威联通 NAS 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
无需登录使用专属域名
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。
专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。
当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。
通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。
先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。
使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。
来自真实用户的反馈,见证轩辕镜像的优质服务