Skip to content

Instantly share code, notes, and snippets.

@httpmurilo
Created May 27, 2020 14:07
Show Gist options
  • Save httpmurilo/656688d8c76c845a894c563a53fcd5e1 to your computer and use it in GitHub Desktop.
Save httpmurilo/656688d8c76c845a894c563a53fcd5e1 to your computer and use it in GitHub Desktop.
mysql-phpmyadmin
version: '3.3'
volumes:
data:
services:
db:
image: mysql:latest
ports:
- "3306:3306"
volumes:
- data:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=development
- MYSQL_DATABASE=app_development
app:
image: phpmyadmin/phpmyadmin:latest
links:
- db
ports:
- 80:80
environment:
- PMA_ARBITRARY=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment