Created
January 17, 2020 01:43
-
-
Save manakuro/25f4c6ddbc1c6d48d44c41968c830c00 to your computer and use it in GitHub Desktop.
This file contains hidden or 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: | |
mysql: | |
image: mysql:8.0 | |
volumes: | |
- mysqldata:/var/lib/mysql | |
command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_0900_as_ci --default-authentication-plugin=mysql_native_password | |
environment: | |
MYSQL_USER: root | |
MYSQL_ROOT_PASSWORD: root | |
ports: | |
- 3306:3306 | |
volumes: | |
mysqldata: | |
driver: local |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment