Created
July 31, 2018 19:51
-
-
Save kkonyshev/8db79f465c5a3c6ba166fdfaf8a11e32 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: | |
container_name: "mysql_db" | |
image: "mysql:latest" | |
environment: | |
MYSQL_DATABASE: "db" | |
MYSQL_USER: "dbuser" | |
MYSQL_PASSWORD: "password" | |
MYSQL_ROOT_PASSWORD: "random" | |
ports: | |
- "3306:3306" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment