Skip to content

Instantly share code, notes, and snippets.

@rbreve
Created March 10, 2020 09:38
Show Gist options
  • Save rbreve/2f5741fc9c19d6d908448eb4f410ea8a to your computer and use it in GitHub Desktop.
Save rbreve/2f5741fc9c19d6d908448eb4f410ea8a to your computer and use it in GitHub Desktop.
Docker Tutorial: Adminer + Mysql (with root password hunter)
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