Last active
June 3, 2023 18:36
-
-
Save gunkim/0d07a5c38016848253437cd86ad74f77 to your computer and use it in GitHub Desktop.
로컬 디비 생성용
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
gift-db: | |
image: amd64/mysql | |
command: | |
- --character-set-server=utf8mb4 | |
- --collation-server=utf8mb4_unicode_ci | |
environment: | |
MYSQL_ROOT_PASSWORD: 1234 | |
TZ: Asia/Seoul | |
ports: | |
- "3306:3306" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment