Skip to content

Instantly share code, notes, and snippets.

@ore-public
Created March 10, 2017 23:10
Show Gist options
  • Save ore-public/d884cc75cd0034aec9989425927dc222 to your computer and use it in GitHub Desktop.
Save ore-public/d884cc75cd0034aec9989425927dc222 to your computer and use it in GitHub Desktop.
MySQL Docker Compose
[mysqld]
character-set-server=utf8
mysql55:
restart: always
image: mysql:5.5
ports:
- "3306:3306"
environment:
- MYSQL_DATABASE=XXX
- MYSQL_USER=hoge
- MYSQL_PASSWORD=hogehoge
- MYSQL_ROOT_PASSWORD=fugafuga
volumes:
- /Users/xxxxx/docker/mysql55/conf.d:/etc/mysql/conf.d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment