An open API service indexing awesome lists of open source software.

https://github.com/kento75/springboot-mysql-app

SpringBoot2とMySQL8.0を使用したMVCサンプルアプリ
https://github.com/kento75/springboot-mysql-app

bootstrap3 circleci docker-image mysql spring-boot springmvc thymeleaf

Last synced: 2 months ago
JSON representation

SpringBoot2とMySQL8.0を使用したMVCサンプルアプリ

Awesome Lists containing this project

README

          

# springboot-mysql-app

[![CircleCI](https://circleci.com/gh/Kento75/springboot-mysql-app.svg?style=svg)](https://circleci.com/gh/Kento75/springboot-mysql-app)
[![codecov](https://codecov.io/gh/Kento75/springboot-mysql-app/branch/master/graph/badge.svg)](https://codecov.io/gh/Kento75/springboot-mysql-app)

## MySQLコンテナセットアップ

```console
# dataディレクトリないの不要なファイルなデータを削除
$ rm -rf ./docker/db/data/*

# MySQL8.0 のコンテナ作成・起動
$ docker-compose up --build -d

# コンテナ起動確認
$ docker-compose ps

# DB初期設定shellの実行
$ bash ./init-mysql.sh
```