mirror of
https://github.com/bitnami/containers.git
synced 2026-03-11 16:07:50 +08:00
4.9.0-1-debian-9-r12 release
This commit is contained in:
@@ -6,7 +6,7 @@ RUN install_packages libbz2-1.0 libc6 libcomerr2 libcurl3 libexpat1 libffi6 libf
|
||||
RUN bitnami-pkg unpack apache-2.4.39-2 --checksum ff55ee9cccf484bac61fa91558fc7f8445e91ea00bb104aca216f08aea003c6b
|
||||
RUN bitnami-pkg unpack php-7.3.6-0 --checksum 42338902021f2a52bfc02b29487caaa73138b39d5f0e7188e6879cc9dfee2e52
|
||||
RUN bitnami-pkg install libphp-7.3.6-0 --checksum 980e81874c99c09286ec595bcb8dad62eab605ee5f22b686a561e5740795908b
|
||||
RUN bitnami-pkg unpack phpmyadmin-4.9.0-1-0 --checksum 453961fb108d5de6784af9d0bfd7702be0589e676ccc0d4216393110a4af7ec7
|
||||
RUN bitnami-pkg unpack phpmyadmin-4.9.0-1-1 --checksum f4b69d7702612f2b0cbcb13c62aa0b0b2cde9082fc7cd35126969cd491212980
|
||||
RUN ln -sf /dev/stdout /opt/bitnami/apache/logs/access_log
|
||||
RUN ln -sf /dev/stderr /opt/bitnami/apache/logs/error_log
|
||||
|
||||
@@ -16,13 +16,20 @@ ENV APACHE_HTTPS_PORT_NUMBER="" \
|
||||
APACHE_SET_HTTPS_PORT="no" \
|
||||
APACHE_SET_HTTP_PORT="no" \
|
||||
BITNAMI_APP_NAME="phpmyadmin" \
|
||||
BITNAMI_IMAGE_VERSION="4.9.0-1-debian-9-r11" \
|
||||
BITNAMI_IMAGE_VERSION="4.9.0-1-debian-9-r12" \
|
||||
DATABASE_ENABLE_SSL="no" \
|
||||
DATABASE_HOST="mariadb" \
|
||||
DATABASE_PORT_NUMBER="3306" \
|
||||
DATABASE_SSL_CA="" \
|
||||
DATABASE_SSL_CA_PATH="" \
|
||||
DATABASE_SSL_CERT="" \
|
||||
DATABASE_SSL_CIPHERS="" \
|
||||
DATABASE_SSL_KEY="" \
|
||||
DATABASE_SSL_VERIFY="yes" \
|
||||
PATH="/opt/bitnami/apache/bin:/opt/bitnami/php/bin:/opt/bitnami/php/sbin:$PATH" \
|
||||
PHPMYADMIN_ALLOW_ARBITRARY_SERVER="" \
|
||||
PHPMYADMIN_ALLOW_NO_PASSWORD="true" \
|
||||
REQUIRE_LOCAL="0"
|
||||
REQUIRE_LOCAL="no"
|
||||
|
||||
VOLUME [ "/certs" ]
|
||||
|
||||
|
||||
@@ -3,5 +3,12 @@
|
||||
"allowNoPassword": "{{$global.env.PHPMYADMIN_ALLOW_NO_PASSWORD}}",
|
||||
"databaseServerHost": "{{$global.env.DATABASE_HOST}}",
|
||||
"databaseServerPort": "{{$global.env.DATABASE_PORT_NUMBER}}",
|
||||
"databaseServerSsl": "{{$global.env.DATABASE_ENABLE_SSL}}",
|
||||
"databaseServerSslCa": "{{$global.env.DATABASE_SSL_CA}}",
|
||||
"databaseServerSslCaPath": "{{$global.env.DATABASE_SSL_CA_PATH}}",
|
||||
"databaseServerSslCert": "{{$global.env.DATABASE_SSL_CERT}}",
|
||||
"databaseServerSslCiphers": "{{$global.env.DATABASE_SSL_CIPHERS}}",
|
||||
"databaseServerSslKey": "{{$global.env.DATABASE_SSL_KEY}}",
|
||||
"databaseServerSslVerify": "{{$global.env.DATABASE_SSL_VERIFY}}",
|
||||
"requireLocal": "{{$global.env.REQUIRE_LOCAL}}"
|
||||
}
|
||||
@@ -39,7 +39,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
||||
|
||||
|
||||
* [`4-ol-7`, `4.9.0-1-ol-7-r10` (4/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-phpmyadmin/blob/4.9.0-1-ol-7-r10/4/ol-7/Dockerfile)
|
||||
* [`4-debian-9`, `4.9.0-1-debian-9-r11`, `4`, `4.9.0-1`, `4.9.0-1-r11`, `latest` (4/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-phpmyadmin/blob/4.9.0-1-debian-9-r11/4/debian-9/Dockerfile)
|
||||
* [`4-debian-9`, `4.9.0-1-debian-9-r12`, `4`, `4.9.0-1`, `4.9.0-1-r12`, `latest` (4/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-phpmyadmin/blob/4.9.0-1-debian-9-r12/4/debian-9/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/phpmyadmin GitHub repo](https://github.com/bitnami/bitnami-docker-phpmyadmin).
|
||||
|
||||
@@ -228,7 +228,13 @@ The phpMyAdmin instance can be customized by specifying environment variables on
|
||||
- `PHPMYADMIN_ALLOW_NO_PASSWORD`: Whether to allow logins without a password. Default: **true**
|
||||
- `DATABASE_HOST`: Database server host. Default: **mariadb**
|
||||
- `DATABASE_PORT_NUMBER`: Database server port. Default: **3306**
|
||||
- `WEBSERVER_REQUIRE`: Tests whether an authenticated user is authorized by an authorization provider. Default: **all granted**
|
||||
- `DATABASE_ENABLE_SSL`: Whether to enable SSL for the connection between phpMyAdmin and the MySQL server to secure the connection. Default: **no**
|
||||
- `DATABASE_SSL_KEY`: Path to the client key file when using SSL. Default: **no**
|
||||
- `DATABASE_SSL_CERT`: Path to the client certificate file when using SSL.
|
||||
- `DATABASE_SSL_CA`: Path to the CA file when using SSL.
|
||||
- `DATABASE_SSL_CA_PATH`: Directory containing trusted SSL CA certificates in PEM format.
|
||||
- `DATABASE_SSL_CIPHERS`: List of allowable ciphers for connections when using SSL.
|
||||
- `DATABASE_SSL_VERIFY`: Enable SSL certificate validation. Default: **yes**
|
||||
|
||||
### Specifying Environment variables using Docker Compose
|
||||
|
||||
|
||||
Reference in New Issue
Block a user