An implementation of centralized SQL servers under Aznable Infra.
Install Aznable SQL
by cloning its Github repository:
git clone https://github.com/aznable/sql.git
cd sql
cp .env.example .env
Set up the MySQL root password using the MYSQL_PASSWORD
variable in the .env
file:
MYSQL_PASSWORD=helloworld
To run the containers, kindly execute the command below:
$ docker-compose up -d
Execute the command below to access the mysql
service:
$ docker exec -it mysql mysql -u root -p
NOTE: Use the value from MYSQL_PASSWORD
for its root
password.