docker run --name mysql \
-e MYSQL_ROOT_PASSWORD=rootpassword \
-e MYSQL_DATABASE=maple_db \
-e MYSQL_USER=maple_username \
-e MYSQL_PASSWORD=maple_password \
-p 3306:3306 \
-d mysql:8혹은
create database maple_db;
create user 'maple_username'@'%' IDENTIFIED BY 'maple_password';
grant all privileges on maple_db.* to 'maple_username'@'%';
flush privileges;$ ./gradlew bootRun$ ./gradlew bootRun --args='--spring.profiles.active=local'
$ ./gradlew bootRun --args='--spring.profiles.active=live'
http://localhost:8080/swagger-ui-maple/index.html