-
Notifications
You must be signed in to change notification settings - Fork 379
Add phpMyAdmin Container
ucan-lab edited this page Nov 6, 2020
·
3 revisions
volumes:
# Append
pma-session-store:
services:
# Append
pma:
image: phpmyadmin/phpmyadmin:5.0.2
environment:
- PMA_HOST=db
- PMA_USER=root
- PMA_PASSWORD=secret
ports:
- 8080:80
volumes:
- pma-session-store:/sessions
$ docker-compose up -d