Created
March 10, 2020 09:38
-
-
Save rbreve/2f5741fc9c19d6d908448eb4f410ea8a to your computer and use it in GitHub Desktop.
Docker Tutorial: Adminer + Mysql (with root password hunter)
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.7' | |
services: | |
adminer: | |
image: adminer | |
ports: | |
- 8080:8080 | |
links: | |
- "mysql:db" | |
mysql: | |
image: mysql:5.7.25 | |
environment: | |
- MYSQL_ROOT_PASSWORD=hunter | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment