Skip to content

Commit

Permalink
add optional phpmyadmin instance
Browse files Browse the repository at this point in the history
  • Loading branch information
zaanposni committed Jan 22, 2024
1 parent 09a85bc commit 4b84b66
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docker-compose-pma.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
services:
phpmyadmin:
container_name: phpmyadmin
image: phpmyadmin
restart: unless-stopped
ports:
- 0.0.0.0:5651:80
environment:
- PMA_HOST=db
- PMA_PORT=3306
- PMA_USER=root
- PMA_PASSWORD=${MYSQL_ROOT_PASSWORD}
depends_on:
- db
networks:
- mysql

0 comments on commit 4b84b66

Please sign in to comment.