5.7.25-debian-9-r47 release

This commit is contained in:
Bitnami Bot
2019-03-21 07:38:04 +00:00
parent 58e07dbc21
commit 0d71344c4d
4 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
FROM bitnami/minideb-extras-base:stretch-r195
FROM bitnami/minideb-extras-base:stretch-r196
LABEL maintainer "Bitnami <containers@bitnami.com>"
ENV BITNAMI_PKG_CHMOD="-R g+rwX" \
@@ -16,7 +16,7 @@ COPY rootfs /
RUN /prepare.sh
ENV ALLOW_EMPTY_PASSWORD="no" \
BITNAMI_APP_NAME="mysql" \
BITNAMI_IMAGE_VERSION="5.7.25-debian-9-r46" \
BITNAMI_IMAGE_VERSION="5.7.25-debian-9-r47" \
MYSQL_DATABASE="" \
MYSQL_MASTER_HOST="" \
MYSQL_MASTER_PORT_NUMBER="" \

View File

@@ -46,9 +46,9 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
* [`8.0-ol-7`, `8.0.15-ol-7-r40` (8.0/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mysql/blob/8.0.15-ol-7-r40/8.0/ol-7/Dockerfile)
* [`8.0-debian-9`, `8.0.15-debian-9-r40`, `8.0`, `8.0.15`, `8.0.15-r40` (8.0/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-mysql/blob/8.0.15-debian-9-r40/8.0/debian-9/Dockerfile)
* [`8.0-debian-9`, `8.0.15-debian-9-r39`, `8.0`, `8.0.15`, `8.0.15-r39` (8.0/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-mysql/blob/8.0.15-debian-9-r39/8.0/debian-9/Dockerfile)
* [`5.7-ol-7`, `5.7.25-ol-7-r52` (5.7/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mysql/blob/5.7.25-ol-7-r52/5.7/ol-7/Dockerfile)
* [`5.7-debian-9`, `5.7.25-debian-9-r46`, `5.7`, `5.7.25`, `5.7.25-r46`, `latest` (5.7/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-mysql/blob/5.7.25-debian-9-r46/5.7/debian-9/Dockerfile)
* [`5.7-debian-9`, `5.7.25-debian-9-r47`, `5.7`, `5.7.25`, `5.7.25-r47`, `latest` (5.7/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-mysql/blob/5.7.25-debian-9-r47/5.7/debian-9/Dockerfile)
Subscribe to project updates by watching the [bitnami/mysql GitHub repo](https://github.com/bitnami/bitnami-docker-mysql).

View File

@@ -6,7 +6,7 @@ services:
ports:
- '3306'
volumes:
- 'mysql_master_data:/bitnami'
- 'mysql_master_data:/bitnami/mysql/data'
environment:
- MYSQL_REPLICATION_MODE=master
- MYSQL_REPLICATION_USER=repl_user
@@ -14,6 +14,7 @@ services:
- MYSQL_DATABASE=my_database
# ALLOW_EMPTY_PASSWORD is recommended only for development.
- ALLOW_EMPTY_PASSWORD=yes
- MYSQL_ROOT_PASSWORD=my_root_password
mysql-slave:
image: 'bitnami/mysql:latest'
ports:
@@ -27,6 +28,7 @@ services:
- MYSQL_DATABASE=my_database
- MYSQL_MASTER_HOST=mysql-master
- MYSQL_MASTER_PORT_NUMBER=3306
- MYSQL_MASTER_ROOT_PASSWORD=my_root_password
# ALLOW_EMPTY_PASSWORD is recommended only for development.
- ALLOW_EMPTY_PASSWORD=yes

View File

@@ -2,13 +2,11 @@ version: '2'
services:
mysql:
image: 'bitnami/mysql:latest'
labels:
kompose.service.type: nodeport
image: 'bitnami/mysql:5.7'
ports:
- '3306:3306'
volumes:
- 'mysql_data:/bitnami'
- 'mysql_data:/bitnami/mysql/data'
environment:
# ALLOW_EMPTY_PASSWORD is recommended only for development.
- ALLOW_EMPTY_PASSWORD=yes