Skip to content

Commit

Permalink
Create mysql-phphmyadmin.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kviksna authored Dec 24, 2022
1 parent c0e0e27 commit 8b8fe53
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions mysql-phphmyadmin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: '3.2'
services:
mysql:
image: mysql
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
volumes:
- /var/lib/mysql
phpmyadmin:
image: phpmyadmin/phpmyadmin
links:
- mysql
environment:
PMA_HOST: mysql
PMA_PORT: 3306
PMA_USER: root
ports:
- '8080:80'

0 comments on commit 8b8fe53

Please sign in to comment.