Last active
February 11, 2020 22:54
-
-
Save destinmoulton/5c75aebd2a429808a70ca137e4004d09 to your computer and use it in GitHub Desktop.
Docker
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
| # docker-compose.yml | |
| # MySQL and PHPMyAdmin | |
| version: "3.2" | |
| services: | |
| db: | |
| image: mysql:5.7 | |
| command: "--innodb_use_native_aio=0" | |
| restart: always | |
| environment: | |
| MYSQL_ROOT_PASSWORD: toor | |
| phpmyadmin: | |
| links: | |
| - db | |
| depends_on: | |
| - db | |
| image: phpmyadmin/phpmyadmin | |
| restart: always | |
| ports: | |
| - 8181:80 | |
| environment: | |
| PMA_ARBITRARY: 1 | |
| MYSQL_ROOT_PASSWORD: toor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment