Skip to content

Instantly share code, notes, and snippets.

@manakuro
Created January 17, 2020 01:43
Show Gist options
  • Save manakuro/25f4c6ddbc1c6d48d44c41968c830c00 to your computer and use it in GitHub Desktop.
Save manakuro/25f4c6ddbc1c6d48d44c41968c830c00 to your computer and use it in GitHub Desktop.
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