skip to Main Content

How to disable MySQL binlog on docker-compose

On a server where is running a software which performs many database-queries (update/delete/insert), the MySQL-Server is running in a docker-compose setup. version: '3.7' services: database: image: registry.var-lab.com/mysql/mysql:8.0.27 command: - '--default-authentication-plugin=mysql_native_password' - '--sql_mode=' - '--max_allowed_packet=1073741824' ports: - '3306:3306' environment: MYSQL_ROOT_PASSWORD: root…

VIEW QUESTION
Back To Top
Search