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サンプルアプリ
- Host: GitHub
- URL: https://github.com/kento75/springboot-mysql-app
- Owner: Kento75
- Created: 2019-10-10T23:09:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-13T11:34:50.000Z (over 6 years ago)
- Last Synced: 2025-02-11T14:39:54.851Z (over 1 year ago)
- Topics: bootstrap3, circleci, docker-image, mysql, spring-boot, springmvc, thymeleaf
- Language: Java
- Homepage:
- Size: 12.1 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# springboot-mysql-app
[](https://circleci.com/gh/Kento75/springboot-mysql-app)
[](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
```