Skip to content

Commit

Permalink
chore: MySQL 8로 업그레이드
Browse files Browse the repository at this point in the history
  • Loading branch information
JHyeok committed Mar 30, 2024
1 parent b967e61 commit dae0e21
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.8"
services:
db:
image: "mariadb:10.5.6"
image: mysql:8.0.36
container_name: nest-db
volumes:
- dbdata:/var/lib/mysql
Expand Down Expand Up @@ -34,6 +34,8 @@ services:
- |
/wait-for-it.sh db:3306 -t 15
yarn start:dev
env_file:
- .env
networks:
- app

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.8"
services:
db:
image: "mysql:5.7"
image: mysql:8.0.36
container_name: nestjs-test-db
ports:
- "3306:3306"
Expand Down

0 comments on commit dae0e21

Please sign in to comment.