Skip to content

Repository files navigation

Getting Started

Reference Documentation

For further reference, please consider the following sections:

Guides

The following guides illustrate how to use some features concretely:

Additional Links

These additional references should also help you:

Starting this instance

Run this command: ./gradlew bootRun

Spring Boot instance will boot up and bootRun will show as executing when it's ready

Setup Mysql container

  • For port forwarding: docker run -d --name test-mysql -e MYSQL_ROOT_PASSWORD=abc123 -p 3307:3306 mysql
  • For no port forwarding: docker run --name test-mysql -e MYSQL_ROOT_PASSWORD=[pick something, but remember it] -d mysql

Accessing Mysql container

docker exec -it container_name bash
mysql -uroot -p

Accessing Mysql instance directly from local

mysql --host=127.0.0.1 --port=3307 -u root -p

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages