Created
November 5, 2019 07:12
-
-
Save rilwanfit/a12e8d3f0dcc2b3b0d7f21c5e836095c 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: | |
mysql: | |
image: mysql:5.7 | |
volumes: | |
- mysql-data:/var/lib/mysql | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: root | |
MYSQL_DATABASE: test | |
MYSQL_USER: rilwan | |
MYSQL_PASSWORD: rilwan | |
ports: | |
- "33100:3306" | |
volumes: | |
mysql-data: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment