PHP Classes

File: docker-compose.yml

Recommend this page to a friend!
  Classes of Kacper Rowinski   PHP MySQL Replication   docker-compose.yml   Download  
File: docker-compose.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP MySQL Replication
Client to get MySQL replication events in pure PHP
Author: By
Last change:
Date: 1 month ago
Size: 730 bytes
 

Contents

Class file image Download
services: replication-test-mysql-percona: container_name: replication-test-mysql-percona hostname: replication-test-mysql-percona image: mysql:8.0 platform: linux/amd64 command: [ '--character-set-server=utf8mb4', '--collation-server=utf8mb4_unicode_ci', # '--default-authentication-plugin=caching_sha2_password', #'--default-authentication-plugin=mysql_native_password', '--log_bin=binlog', '--max_binlog_size=8M', '--binlog_format=row', '--server-id=1', '--binlog_rows_query_log_events=ON' ] environment: - MYSQL_ROOT_PASSWORD=root - MYSQL_DATABASE=mysqlreplication_test ports: - "3306:3306/tcp" restart: unless-stopped