MySQL bind-address in a Docker container

11,652

sed is usually the weapon of choice for such tasks. Taken from the official mysql dockerfile:

RUN sed -Ei 's/^(bind-address|log)/#&/' /etc/mysql/my.cnf

The command comments out lines starting with bind-address or log in my.cnf or conf.d/*.

Share:
11,652
Admin
Author by

Admin

Updated on August 04, 2022

Comments

  • Admin
    Admin over 1 year

    I would like to build a container, which enables bind to multiple IP addresses. Bind address is stored in my.cnf, it is okay. How to define it or maybe comment out with use of a Dockerfile to grant remote access?