Skip to content

Commit

Permalink
Update "Dockerfile"
Browse files Browse the repository at this point in the history
  • Loading branch information
bboggo committed Jan 11, 2024
1 parent 9a1631c commit 73216c0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
Binary file removed TaskWeaver-0.0.1-SNAPSHOT.jar
Binary file not shown.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-web'
runtimeOnly 'com.mysql:mysql-connector-j'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
Expand Down
7 changes: 0 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,14 @@
version: '3'
services:
# 서비스 명
mysql:
# 사용할 이미지
image: mysql:8.0
# 컨테이너 실행 시 재시작
restart: always
# 컨테이너명 설정
container_name: mysql
# 접근 포트 설정 (컨테이너 외부:컨테이너 내부)
ports:
- "3306:3306"
# 환경 변수 설정
environment:
MYSQL_ROOT_PASSWORD: passowrd
TZ: Asia/Seoul
# 명렬어 설정
command:
- —character-set-server=utf8mb4
- —collation-server=utf8mb4_unicode_ci
Expand Down
Empty file.

0 comments on commit 73216c0

Please sign in to comment.