Docker mysql volume very large

@rkaussow i’ve got the same issue with bin logs over 60gb.
you’re totally right, disabling binary logs helps to solve it.

@gygabyte017 read the manual for mysql/maria (depends on what are you using). also there’s a command to clear them after disabling.

if you’re using docker-compose, you can simply add

      - MARIADB_LOG_BIN=0

as an environment option of db service into your yaml file and restart containers.